forked from sigmavirus24/github3.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.py
More file actions
163 lines (130 loc) · 4.74 KB
/
Copy pathevents.py
File metadata and controls
163 lines (130 loc) · 4.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
"""
github3.events
==============
This module contains the class(es) related to Events
"""
from github3.models import GitHubObject
class Event(GitHubObject):
"""The :class:`Event <Event>` object. It structures and handles the data
returned by via the `Events <http://developer.github.com/v3/events>`_
section of the GitHub API.
"""
def __init__(self, event):
super(Event, self).__init__(event)
from github3.users import User
from github3.orgs import Organization
#: :class:`User <github3.users.User>` object representing the actor.
self.actor = User(event.get('actor')) if event.get('actor') else None
#: datetime object representing when the event was created.
self.created_at = self._strptime(event.get('created_at'))
#: Unique id of the event
self.id = event.get('id')
#: List all possible types of Events
self.org = None
if event.get('org'):
self.org = Organization(event.get('org'))
#: Event type
self.type = event.get('type')
handler = _payload_handlers[self.type]
#: Dictionary with the payload. Payload structure is defined by type_.
# _type: http://developer.github.com/v3/events/types
self.payload = handler(event.get('payload'))
#: Return ``tuple(owner, repository_name)``
self.repo = event.get('repo')
if self.repo is not None:
self.repo = tuple(self.repo['name'].split('/'))
self._public = event.get('public')
def __repr__(self):
return '<Event [{0}]>'.format(self.type[:-5])
@staticmethod
def list_types():
"""List available payload types"""
return sorted(_payload_handlers.keys())
def is_public(self):
"""Indicates whether the Event is public or not.
:returns: bool -- True if event is pubic, False otherwise
"""
return self._public
def _commitcomment(payload):
from github3.repos import RepoComment
if payload.get('comment'):
payload['comment'] = RepoComment(payload['comment'], None)
return payload
def _download(payload):
from github3.repos import Download
if payload.get('download'):
payload['download'] = Download(payload['download'], None)
return payload
def _follow(payload):
from github3.users import User
if payload.get('target'):
payload['target'] = User(payload['target'], None)
return payload
def _forkev(payload):
from github3.repos import Repository
if payload.get('forkee'):
payload['forkee'] = Repository(payload['forkee'], None)
return payload
def _gist(payload):
from github3.gists import Gist
if payload.get('gist'):
payload['gist'] = Gist(payload['gist'], None)
return payload
def _issuecomm(payload):
from github3.issues import Issue, IssueComment
if payload.get('issue'):
payload['issue'] = Issue(payload['issue'], None)
if payload.get('comment'):
payload['comment'] = IssueComment(payload['comment'], None)
return payload
def _issueevent(payload):
from github3.issues import Issue
if payload.get('issue'):
payload['issue'] = Issue(payload['issue'], None)
return payload
def _member(payload):
from github3.users import User
if payload.get('member'):
payload['member'] = User(payload['member'], None)
return payload
def _pullreqev(payload):
from github3.pulls import PullRequest
if payload.get('pull_request'):
payload['pull_request'] = PullRequest(payload['pull_request'], None)
return payload
def _pullreqcomm(payload):
from github3.pulls import ReviewComment
if payload.get('comment'):
payload['comment'] = ReviewComment(payload['comment'], None)
return payload
def _team(payload):
from github3.orgs import Team
from github3.repos import Repository
from github3.users import User
if payload.get('team'):
payload['team'] = Team(payload['team'], None)
if payload.get('repo'):
payload['repo'] = Repository(payload['repo'], None)
if payload.get('user'):
payload['user'] = User(payload['user'], None)
return payload
_payload_handlers = {
'CommitCommentEvent': _commitcomment,
'CreateEvent': lambda x: x,
'DeleteEvent': lambda x: x,
'DownloadEvent': _download,
'FollowEvent': _follow,
'ForkEvent': _forkev,
'ForkApplyEvent': lambda x: x,
'GistEvent': _gist,
'GollumEvent': lambda x: x,
'IssueCommentEvent': _issuecomm,
'IssuesEvent': _issueevent,
'MemberEvent': _member,
'PublicEvent': lambda x: '',
'PullRequestEvent': _pullreqev,
'PullRequestReviewCommentEvent': _pullreqcomm,
'PushEvent': lambda x: x,
'TeamAddEvent': _team,
'WatchEvent': lambda x: x,
}