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
187 lines (144 loc) · 5.18 KB
/
events.py
File metadata and controls
187 lines (144 loc) · 5.18 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# -*- coding: utf-8 -*-
"""
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.
Two events can be compared like so::
e1 == e2
e1 != e2
And that is equivalent to::
e1.id == e2.id
e1.id != e2.id
"""
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 http://developer.github.com/v3/activity/events/types/
self.type = event.get('type')
handler = _payload_handlers.get(self.type, identity)
#: 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('/'))
#: Indicates whether the Event is public or not.
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.
.. warning:: This will be deprecated in 0.6
:returns: bool -- True if event is pubic, False otherwise
"""
return self.public
def _commitcomment(payload):
from github3.repos.comment import RepoComment
if payload.get('comment'):
payload['comment'] = RepoComment(payload['comment'], 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
from github3.issues.comment import 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 _release(payload):
from github3.repos.release import Release
release = payload.get('release')
if release:
payload['release'] = Release(release)
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
def identity(x):
return x
_payload_handlers = {
'CommitCommentEvent': _commitcomment,
'CreateEvent': identity,
'DeleteEvent': identity,
'FollowEvent': _follow,
'ForkEvent': _forkev,
'ForkApplyEvent': identity,
'GistEvent': _gist,
'GollumEvent': identity,
'IssueCommentEvent': _issuecomm,
'IssuesEvent': _issueevent,
'MemberEvent': _member,
'PublicEvent': lambda x: '',
'PullRequestEvent': _pullreqev,
'PullRequestReviewCommentEvent': _pullreqcomm,
'PushEvent': identity,
'ReleaseEvent': _release,
'StatusEvent': identity,
'TeamAddEvent': _team,
'WatchEvent': identity,
}