forked from ask/python-github2
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathissues.py
More file actions
61 lines (49 loc) · 2.59 KB
/
issues.py
File metadata and controls
61 lines (49 loc) · 2.59 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
from github2.core import GithubCommand, BaseData, Attribute, DateAttribute
class Issue(BaseData):
position = Attribute("The position of this issue in a list.")
number = Attribute("The issue number (unique for project).")
votes = Attribute("Number of votes for this issue.")
body = Attribute("The full description for this issue.")
title = Attribute("Issue title.")
user = Attribute("The username of the user that created this issue.")
state = Attribute("State of this issue. Can be ``open`` or ``closed``.")
labels = Attribute("Labels associated with this issue.")
created_at = DateAttribute("The date this issue was created.")
closed_at = DateAttribute("The date this issue was closed.")
updated_at = DateAttribute("The date when this issue was last updated.")
def __repr__(self):
return "<Issue: %s>" % self.title
class Issues(GithubCommand):
domain = "issues"
def list(self, project, state="open"):
"""Get all issues for project' with state'.
``project`` is a string with the project owner username and repository
name separated by ``/`` (e.g. ``ask/pygithub2``).
``state`` can be either ``open`` or ``closed``.
"""
return self.get_values("list", project, state, filter="issues",
datatype=Issue)
def show(self, project, number):
"""Get all the data for issue by issue-number."""
return self.get_value("show", project, str(number),
filter="issue", datatype=Issue)
def open(self, project, title, body):
"""Open up a new issue."""
issue_data = {"title": title, "body": body}
return self.get_value("open", project, post_data=issue_data,
filter="issue", datatype=Issue)
def close(self, project, number):
return self.get_value("close", project, str(number), filter="issue",
datatype=Issue)
def add_label(self, project, number, label):
return self.make_request("label/add", project, label, str(number),
filter="labels")
def remove_label(self, project, number, label):
return self.make_request("label/remove", project, label, str(number),
filter="labels")
def comment(self, project, number, comment):
"""Comment on an issue."""
comment_data = {'comment': comment}
return self.make_request("comment", project, str(number),
post_data=comment_data,
filter='comment')