Skip to content

Commit 49d07d1

Browse files
CheshirezEnricoMi
andauthored
Add parent_team_id, maintainers and notification_setting for creating and updating teams. (PyGithub#2863)
Signed-off-by: Andrii Kezikov <[email protected]> Co-authored-by: Enrico Minack <[email protected]>
1 parent cc4c526 commit 49d07d1

6 files changed

+87
-6
lines changed

github/Organization.py

+18-1
Original file line numberDiff line numberDiff line change
@@ -651,6 +651,9 @@ def create_team(
651651
permission: Opt[str] = NotSet,
652652
privacy: Opt[str] = NotSet,
653653
description: Opt[str] = NotSet,
654+
parent_team_id: Opt[int] = NotSet,
655+
maintainers: Opt[list[int]] = NotSet,
656+
notification_setting: Opt[str] = NotSet,
654657
) -> Team:
655658
"""
656659
:calls: `POST /orgs/{org}/teams <https://docs.github.com/en/rest/reference/teams#list-teams>`_
@@ -659,15 +662,29 @@ def create_team(
659662
:param permission: string
660663
:param privacy: string
661664
:param description: string
665+
:param parent_team_id: integer
666+
:param maintainers: list of: integer
667+
:param notification_setting: string
662668
:rtype: :class:`github.Team.Team`
663669
"""
664670
assert isinstance(name, str), name
665671
assert is_optional_list(repo_names, github.Repository.Repository), repo_names
672+
assert is_optional_list(maintainers, int), maintainers
673+
assert is_optional(parent_team_id, int), parent_team_id
666674
assert is_optional(permission, str), permission
667675
assert is_optional(privacy, str), privacy
668676
assert is_optional(description, str), description
677+
assert notification_setting in ["notifications_enabled", "notifications_disabled", NotSet], notification_setting
669678
post_parameters: dict[str, Any] = NotSet.remove_unset_items(
670-
{"name": name, "permission": permission, "privacy": privacy, "description": description}
679+
{
680+
"name": name,
681+
"permission": permission,
682+
"privacy": privacy,
683+
"description": description,
684+
"parent_team_id": parent_team_id,
685+
"maintainers": maintainers,
686+
"notification_setting": notification_setting,
687+
}
671688
)
672689
if is_defined(repo_names):
673690
post_parameters["repo_names"] = [element._identity for element in repo_names]

github/Team.py

+20-1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ def _initAttributes(self) -> None:
9494
self._members_url: Attribute[str] = NotSet
9595
self._name: Attribute[str] = NotSet
9696
self._description: Attribute[str] = NotSet
97+
self._notification_setting: Attribute[str] = NotSet
9798
self._permission: Attribute[str] = NotSet
9899
self._repos_count: Attribute[int] = NotSet
99100
self._repositories_url: Attribute[str] = NotSet
@@ -132,6 +133,11 @@ def description(self) -> str:
132133
self._completeIfNotSet(self._description)
133134
return self._description.value
134135

136+
@property
137+
def notification_setting(self) -> str:
138+
self._completeIfNotSet(self._notification_setting)
139+
return self._notification_setting.value
140+
135141
@property
136142
def permission(self) -> str:
137143
self._completeIfNotSet(self._permission)
@@ -297,6 +303,8 @@ def edit(
297303
description: Opt[str] = NotSet,
298304
permission: Opt[str] = NotSet,
299305
privacy: Opt[str] = NotSet,
306+
parent_team_id: Opt[int] = NotSet,
307+
notification_setting: Opt[str] = NotSet,
300308
) -> None:
301309
"""
302310
:calls: `PATCH /teams/{id} <https://docs.github.com/en/rest/reference/teams#update-a-team>`_
@@ -305,8 +313,17 @@ def edit(
305313
assert description is NotSet or isinstance(description, str), description
306314
assert permission is NotSet or isinstance(permission, str), permission
307315
assert privacy is NotSet or isinstance(privacy, str), privacy
316+
assert parent_team_id is NotSet or isinstance(parent_team_id, (int, type(None))), parent_team_id
317+
assert notification_setting in ["notifications_enabled", "notifications_disabled", NotSet], notification_setting
308318
post_parameters = NotSet.remove_unset_items(
309-
{"name": name, "description": description, "permission": permission, "privacy": privacy}
319+
{
320+
"name": name,
321+
"description": description,
322+
"permission": permission,
323+
"privacy": privacy,
324+
"parent_team_id": parent_team_id,
325+
"notification_setting": notification_setting,
326+
}
310327
)
311328

312329
headers, data = self._requester.requestJsonAndCheck("PATCH", self.url, input=post_parameters)
@@ -426,6 +443,8 @@ def _useAttributes(self, attributes: dict[str, Any]) -> None:
426443
self._name = self._makeStringAttribute(attributes["name"])
427444
if "description" in attributes: # pragma no branch
428445
self._description = self._makeStringAttribute(attributes["description"])
446+
if "notification_setting" in attributes: # pragma no branch
447+
self._notification_setting = self._makeStringAttribute(attributes["notification_setting"])
429448
if "permission" in attributes: # pragma no branch
430449
self._permission = self._makeStringAttribute(attributes["permission"])
431450
if "repos_count" in attributes: # pragma no branch

tests/Organization.py

+7
Original file line numberDiff line numberDiff line change
@@ -167,15 +167,22 @@ def testCreateTeam(self):
167167

168168
def testCreateTeamWithAllArguments(self):
169169
repo = self.org.get_repo("FatherBeaver")
170+
parent_team = self.org.get_team(141496)
171+
maintainer = self.g.get_user("jacquev6")
170172
team = self.org.create_team(
171173
"Team also created by PyGithub",
172174
[repo],
173175
"push",
174176
"secret",
175177
"Description also created by PyGithub",
178+
parent_team.id,
179+
[maintainer.id],
180+
"notifications_disabled",
176181
)
177182
self.assertEqual(team.id, 189852)
178183
self.assertEqual(team.description, "Description also created by PyGithub")
184+
self.assertEqual(team.parent, parent_team)
185+
self.assertEqual(team.notification_setting, "notifications_disabled")
179186

180187
def testDeleteHook(self):
181188
hook = self.org.create_hook("web", {"url": "http://foobar.com"})

tests/ReplayData/Organization.testCreateTeamWithAllArguments.txt

+24-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,35 @@ None
99
[('status', '200 OK'), ('x-ratelimit-remaining', '4992'), ('content-length', '1431'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"4ecd2c151a469cfa6cd45e6beff1269b"'), ('date', 'Fri, 01 Jun 2012 19:40:56 GMT'), ('content-type', 'application/json; charset=utf-8')]
1010
{"has_downloads":true,"watchers":2,"mirror_url":null,"language":null,"description":"","ssh_url":"[email protected]:BeaverSoftware/FatherBeaver.git","created_at":"2012-02-09T19:32:21Z","url":"https://api.github.com/repos/BeaverSoftware/FatherBeaver","fork":false,"full_name":"BeaverSoftware/FatherBeaver","organization":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"permissions":{"admin":true,"pull":true,"push":true},"has_wiki":true,"has_issues":true,"forks":1,"size":0,"svn_url":"https://github.com/BeaverSoftware/FatherBeaver","git_url":"git://github.com/BeaverSoftware/FatherBeaver.git","private":false,"visibility":"public","updated_at":"2012-02-16T21:51:15Z","homepage":"","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"name":"FatherBeaver","open_issues":0,"html_url":"https://github.com/BeaverSoftware/FatherBeaver","id":3400397,"clone_url":"https://github.com/BeaverSoftware/FatherBeaver.git","pushed_at":null}
1111

12+
https
13+
GET
14+
api.github.com
15+
None
16+
/teams/141496
17+
{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}
18+
None
19+
200
20+
[('status', '200 OK'), ('x-ratelimit-remaining', '4994'), ('x-ratelimit-limit', '5000'), ('content-length', '128'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('etag', '"b93241eaf4384574f38b352b25595e28"'), ('date', 'Fri, 01 Jun 2012 19:35:59 GMT'), ('content-type', 'application/json; charset=utf-8')]
21+
{"repos_count":1,"permission":"push","url":"https://api.github.com/teams/141496","name":"Members","id":141496,"members_count":1}
22+
23+
https
24+
GET
25+
api.github.com
26+
None
27+
/users/jacquev6
28+
{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}
29+
None
30+
200
31+
[('status', '200 OK'), ('x-ratelimit-remaining', '4962'), ('content-length', '801'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"fc78d67f262cad756e42354c78ecea4e"'), ('date', 'Tue, 28 Aug 2018 00:16:42 GMT'), ('content-type', 'application/json; charset=utf-8')]
32+
{"public_repos":11,"type":"User","disk_usage":17080,"hireable":false,"blog":"http://vincent-jacques.net","url":"https://api.github.com/users/jacquev6","bio":"","plan":{"collaborators":1,"private_repos":5,"name":"micro","space":614400},"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","total_private_repos":5,"public_gists":2,"company":"Criteo","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","owned_private_repos":5,"private_gists":5,"collaborators":0,"email":"[email protected]","followers":13,"name":"Vincent Jacques","created_at":"2010-07-09T06:10:06Z","location":"Paris, France","id":327146,"following":24,"html_url":"https://github.com/jacquev6"}
33+
1234
https
1335
POST
1436
api.github.com
1537
None
1638
/orgs/BeaverSoftware/teams
1739
{'Content-Type': 'application/json', 'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}
18-
{"repo_names": ["BeaverSoftware/FatherBeaver"], "name": "Team also created by PyGithub", "permission": "push", "privacy": "secret", "description":"Description also created by PyGithub"}
40+
{"repo_names": ["BeaverSoftware/FatherBeaver"], "name": "Team also created by PyGithub", "permission": "push", "privacy": "secret", "description":"Description also created by PyGithub", "parent_team_id":141496, "maintainers": [327146], "notification_setting": "notifications_disabled"}
1941
201
2042
[('status', '201 Created'), ('x-ratelimit-remaining', '4982'), ('content-length', '150'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"6e3fb00de6ca4c112feee3a1438d6f0e"'), ('date', 'Sat, 26 May 2012 21:00:26 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/teams/189852')]
21-
{"repos_count":1,"url":"https://api.github.com/teams/189852","members_count":0,"name":"Team also created by PyGithub","permission":"push","description":"Description also created by PyGithub","id":189852}
43+
{"repos_count":1,"url":"https://api.github.com/teams/189852","members_count":0,"name":"Team also created by PyGithub","permission":"push","description":"Description also created by PyGithub","id":189852, "notification_setting": "notifications_disabled", "parent":{"repos_count":1,"permission":"push","url":"https://api.github.com/teams/141496","name":"Members","id":141496,"members_count":1}}
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
1+
https
2+
GET
3+
api.github.com
4+
None
5+
/teams/141496
6+
{'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}
7+
None
8+
200
9+
[('status', '200 OK'), ('x-ratelimit-remaining', '4994'), ('x-ratelimit-limit', '5000'), ('content-length', '128'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('etag', '"b93241eaf4384574f38b352b25595e28"'), ('date', 'Fri, 01 Jun 2012 19:35:59 GMT'), ('content-type', 'application/json; charset=utf-8')]
10+
{"repos_count":1,"permission":"push","url":"https://api.github.com/teams/141496","name":"Members","id":141496,"members_count":1}
11+
112
https
213
PATCH
314
api.github.com
415
None
516
/teams/189850
617
{'Content-Type': 'application/json', 'Authorization': 'Basic login_and_password_removed', 'User-Agent': 'PyGithub/Python'}
7-
{"name": "Name edited twice by PyGithub", "permission": "admin", "privacy": "secret", "description": "Description edited by PyGithub"}
18+
{"name": "Name edited twice by PyGithub", "permission": "admin", "privacy": "secret", "description": "Description edited by PyGithub", "parent_team_id": 141496, "notification_setting": "notifications_disabled"}
819
200
920
[('status', '200 OK'), ('x-ratelimit-remaining', '4949'), ('content-length', '170'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"8856425cedbdf3075576e823f39fc3d6"'), ('date', 'Sat, 26 May 2012 21:14:46 GMT'), ('content-type', 'application/json; charset=utf-8')]
10-
{"permission":"admin","members_count":0,"url":"https://api.github.com/teams/189850","repos_count":0,"privacy":"secret","name":"Name edited twice by PyGithub","id":189850, "description": "Description edited by PyGithub"}
21+
{"permission":"admin","members_count":0,"url":"https://api.github.com/teams/189850","repos_count":0,"privacy":"secret","name":"Name edited twice by PyGithub","id":189850, "description": "Description edited by PyGithub", "notification_setting": "notifications_disabled", "parent": {"repos_count":1,"permission":"push","url":"https://api.github.com/teams/141496","name":"Members","id":141496,"members_count":1}}

tests/Team.py

+5
Original file line numberDiff line numberDiff line change
@@ -154,16 +154,21 @@ def testEditWithoutArguments(self):
154154
self.assertEqual(self.team.name, "Name edited by PyGithub")
155155

156156
def testEditWithAllArguments(self):
157+
parent = self.org.get_team(141496)
157158
self.team.edit(
158159
"Name edited twice by PyGithub",
159160
"Description edited by PyGithub",
160161
"admin",
161162
"secret",
163+
parent.id,
164+
"notifications_disabled",
162165
)
163166
self.assertEqual(self.team.name, "Name edited twice by PyGithub")
164167
self.assertEqual(self.team.description, "Description edited by PyGithub")
165168
self.assertEqual(self.team.permission, "admin")
166169
self.assertEqual(self.team.privacy, "secret")
170+
self.assertEqual(self.team.parent, parent)
171+
self.assertEqual(self.team.notification_setting, "notifications_disabled")
167172

168173
def testGetTeams(self):
169174
nested_teams = self.team.get_teams()

0 commit comments

Comments
 (0)