forked from mozilla-releng/simple-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.py
More file actions
378 lines (297 loc) · 12.4 KB
/
client.py
File metadata and controls
378 lines (297 loc) · 12.4 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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
import asyncio
import json
from abc import abstractmethod
from collections.abc import Coroutine
from typing import TYPE_CHECKING, Any
from aiohttp import ClientResponse, ClientSession
from gql import Client as GqlClient
from gql import gql
from gql.client import ReconnectingAsyncClientSession, SyncClientSession
from gql.transport.aiohttp import AIOHTTPTransport
from gql.transport.requests import RequestsHTTPTransport
from requests import Response as RequestsResponse
from requests import Session
if TYPE_CHECKING:
from simple_github.auth import Auth
GITHUB_API_ENDPOINT = "https://api.github.com"
GITHUB_GRAPHQL_ENDPOINT = "https://api.github.com/graphql"
Response = RequestsResponse | ClientResponse
RequestData = dict[str, Any] | None
# Implementations of the base class can be either sync or async.
BaseDict = dict[str, Any] | Coroutine[None, None, dict[str, Any]]
BaseNone = None | Coroutine[None, None, None]
BaseResponse = Response | Coroutine[None, None, Response]
class Client:
def __init__(self, auth: "Auth"):
"""A Github client.
It can make GET and POST requests to the Github v3 API, as well
as execute queries against the GraphQL API.
Args:
auth (Auth): An `Auth` instance for creating an authentication
token.
"""
self.auth = auth
self._prev_token = None
self._gql_client: GqlClient | None = None
self._gql_session: (
Any[ReconnectingAsyncClientSession, SyncClientSession] | None
) = None
@abstractmethod
def close(self) -> BaseNone: ...
@abstractmethod
def request(self, method: str, query: str, **kwargs: Any) -> BaseResponse: ...
@abstractmethod
def get(self, query: str, **kwargs: Any) -> BaseResponse: ...
@abstractmethod
def post(
self, query: str, data: RequestData = None, **kwargs: Any
) -> BaseResponse: ...
@abstractmethod
def put(
self, query: str, data: RequestData = None, **kwargs: Any
) -> BaseResponse: ...
@abstractmethod
def patch(
self, query: str, data: RequestData = None, **kwargs: Any
) -> BaseResponse: ...
@abstractmethod
def delete(
self, query: str, data: RequestData = None, **kwargs: Any
) -> BaseNone: ...
@abstractmethod
def execute(self, query: str, variables: RequestData = None) -> BaseDict: ...
class SyncClient(Client):
def __enter__(self):
return self
def __exit__(self, *excinfo: Any):
self.close()
def close(self) -> None:
asyncio.run(self.auth.close())
if self._gql_client:
self._gql_client.close_sync()
def _get_gql_session(self) -> SyncClientSession:
"""Return an AIOHTTP session.
The session will be automatically re-created anytime the auth's
token changes.
Returns:
aiohttp.ClientSession: An AIOHTTP session object.
"""
token = asyncio.run(self.auth.get_token())
if token == self._prev_token:
assert isinstance(self._gql_session, SyncClientSession)
return self._gql_session
# Create a new session with updated token.
self._prev_token = token
if self._gql_client:
self._gql_client.close_sync()
headers = {
"Accept": "application/vnd.github+json",
}
if token:
headers["Authorization"] = f"Bearer {token}"
transport = RequestsHTTPTransport(url=GITHUB_GRAPHQL_ENDPOINT, headers=headers)
self._gql_client = GqlClient(
transport=transport, fetch_schema_from_transport=False
)
self._gql_session = self._gql_client.connect_sync()
assert isinstance(self._gql_session, SyncClientSession)
return self._gql_session
def _get_requests_session(self) -> Session:
session = self._get_gql_session()
assert isinstance(session.transport, RequestsHTTPTransport)
assert session.transport.session
return session.transport.session
def request(self, method: str, query: str, **kwargs) -> RequestsResponse:
"""Make a request to Github's REST API.
Args:
method (str): The HTTP method, either 'GET' or 'POST'.
query (str): The path segment of the request, e.g `/octocat`.
kwargs (Dict): Extra args to pass to
`aiohttp.ClientSession.request`.
Returns:
Dict: The JSON result of the request.
"""
url = f"{GITHUB_API_ENDPOINT}/{query.lstrip('/')}"
session = self._get_requests_session()
with session.request(method, url, **kwargs) as resp:
return resp
def get(self, query: str, **kwargs: Any) -> RequestsResponse:
"""Make a GET request to Github's REST API.
Args:
query (str): The path segment of the request, e.g `/octocat`.
Returns:
Dict: The JSON result of the request.
"""
return self.request("GET", query, **kwargs)
def post(
self, query: str, data: RequestData = None, **kwargs: Any
) -> RequestsResponse:
"""Make a POST request to Github's REST API.
Args:
query (str): The path segment of the request, e.g `/octocat`.
data (Dict): The data to send in the request (optional).
Returns:
Dict: The JSON result of the request.
"""
return self.request("POST", query, data=json.dumps(data), **kwargs)
def put(
self, query: str, data: RequestData = None, **kwargs: Any
) -> RequestsResponse:
"""Make a PUT request to Github's REST API.
Args:
query (str): The path segment of the request, e.g `/octocat`.
data (Dict): The data to send in the request (optional).
Returns:
Dict: The JSON result of the request.
"""
return self.request("PUT", query, data=json.dumps(data), **kwargs)
def patch(
self, query: str, data: RequestData = None, **kwargs: Any
) -> RequestsResponse:
"""Make a PATCH request to Github's REST API.
Args:
query (str): The path segment of the request, e.g `/octocat`.
data (Dict): The data to send in the request (optional).
Returns:
Dict: The JSON result of the request.
"""
return self.request("PATCH", query, data=json.dumps(data), **kwargs)
def delete(self, query: str, data: RequestData = None, **kwargs: Any) -> None:
"""Make a DELETE request to Github's REST API.
Args:
query (str): The path segment of the request, e.g `/octocat`.
data (Dict): The data to send in the request (optional).
"""
self.request("DELETE", query, data=json.dumps(data), **kwargs)
def execute(self, query: str, variables: RequestData = None) -> dict[str, Any]:
"""Execute a query against Github's GraphQL endpoint.
Args:
query (str): The GraphQL query to execute.
variables (Dict): The GraphQL variables associated with the query
(optional).
Returns:
Dict: The result of the executed query.
"""
session = self._get_gql_session()
gql_query = gql(query)
gql_query.variable_values = variables
return session.execute(gql_query)
class AsyncClient(Client):
async def __aenter__(self):
return self
async def __aexit__(self, *excinfo: Any):
await self.close()
async def close(self) -> None:
await self.auth.close()
if self._gql_client:
await self._gql_client.close_async()
async def _get_gql_session(self) -> ReconnectingAsyncClientSession:
"""Return an AIOHTTP session.
The session will be automatically re-created anytime the auth's
token changes.
Returns:
aiohttp.ClientSession: An AIOHTTP session object.
"""
token = await self.auth.get_token()
if token == self._prev_token:
assert isinstance(self._gql_session, ReconnectingAsyncClientSession)
return self._gql_session
# Create a new session with updated token.
self._prev_token = token
if self._gql_client:
await self._gql_client.close_async()
headers = {
"Accept": "application/vnd.github+json",
}
if token:
headers["Authorization"] = f"Bearer {token}"
transport = AIOHTTPTransport(
url=GITHUB_GRAPHQL_ENDPOINT, headers=headers, ssl=True
)
self._gql_client = GqlClient(
transport=transport, fetch_schema_from_transport=False
)
self._gql_session = await self._gql_client.connect_async(reconnecting=True)
assert isinstance(self._gql_session, ReconnectingAsyncClientSession)
return self._gql_session
async def _get_aiohttp_session(self) -> ClientSession:
session = await self._get_gql_session()
assert isinstance(session.transport, AIOHTTPTransport)
assert session.transport.session
return session.transport.session
async def request(self, method: str, query: str, **kwargs: Any) -> ClientResponse:
"""Make a request to Github's REST API.
Args:
method (str): The HTTP method, either 'GET' or 'POST'.
query (str): The path segment of the request, e.g `/octocat`.
kwargs (Dict): Extra args to pass to
`aiohttp.ClientSession.request`.
Returns:
Dict: The JSON result of the request.
"""
url = f"{GITHUB_API_ENDPOINT}/{query.lstrip('/')}"
session = await self._get_aiohttp_session()
return await session.request(method, url, **kwargs)
async def get(self, query: str, **kwargs: Any) -> ClientResponse:
"""Make a GET request to Github's REST API.
Args:
query (str): The path segment of the request, e.g `/octocat`.
Returns:
Dict: The JSON result of the request.
"""
return await self.request("GET", query, **kwargs)
async def post(
self, query: str, data: RequestData = None, **kwargs: Any
) -> ClientResponse:
"""Make a POST request to Github's REST API.
Args:
query (str): The path segment of the request, e.g `/octocat`.
data (Dict): The data to send in the request (optional).
Returns:
Dict: The JSON result of the request.
"""
return await self.request("POST", query, data=json.dumps(data), **kwargs)
async def put(
self, query: str, data: RequestData = None, **kwargs: Any
) -> ClientResponse:
"""Make a PUT request to Github's REST API.
Args:
query (str): The path segment of the request, e.g `/octocat`.
data (Dict): The data to send in the request (optional).
Returns:
Dict: The JSON result of the request.
"""
return await self.request("PUT", query, data=json.dumps(data), **kwargs)
async def patch(
self, query: str, data: RequestData = None, **kwargs: Any
) -> ClientResponse:
"""Make a PATCH request to Github's REST API.
Args:
query (str): The path segment of the request, e.g `/octocat`.
data (Dict): The data to send in the request (optional).
Returns:
Dict: The JSON result of the request.
"""
return await self.request("PATCH", query, data=json.dumps(data), **kwargs)
async def delete(self, query: str, data: RequestData = None, **kwargs: Any) -> None:
"""Make a DELETE request to Github's REST API.
Args:
query (str): The path segment of the request, e.g `/octocat`.
data (Dict): The data to send in the request (optional).
"""
await self.request("DELETE", query, data=json.dumps(data), **kwargs)
async def execute(
self, query: str, variables: RequestData = None
) -> dict[str, Any]:
"""Execute a query against Github's GraphQL endpoint.
Args:
query (str): The GraphQL query to execute.
variables (Dict): The GraphQL variables associated with the query
(optional).
Returns:
Dict: The result of the executed query.
"""
session = await self._get_gql_session()
gql_query = gql(query)
gql_query.variable_values = variables
return await session.execute(gql_query)