forked from ask/python-github2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest.py
More file actions
180 lines (154 loc) · 6.44 KB
/
request.py
File metadata and controls
180 lines (154 loc) · 6.44 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
import datetime
import logging
import re
import time
import httplib2
from httplib import responses
try:
import json as simplejson # For Python 2.6
except ImportError:
import simplejson
from os import path
from urlparse import (urlsplit, urlunsplit)
try:
from urlparse import parse_qs
except ImportError:
from cgi import parse_qs
from urllib import urlencode, quote
#: Hostname for API access
GITHUB_URL = "https://github.com"
#: Logger for requests module
LOGGER = logging.getLogger('github2.request')
def charset_from_headers(headers):
"""Parse charset from headers
:param httplib2.Response headers: Request headers
:return: Defined encoding, or default to ASCII
"""
match = re.search("charset=([^ ;]+)", headers.get('content-type', ""))
if match:
charset = match.groups()[0]
else:
charset = "ascii"
return charset
class GithubError(Exception):
"""An error occured when making a request to the Github API."""
class HttpError(RuntimeError):
"""A HTTP error occured when making a request to the Github API."""
def __init__(self, message, content, code):
"""Create a HttpError exception
:param str message: Exception string
:param str content: Full content of HTTP request
:param int code: HTTP status code
"""
self.args = (message, content, code)
self.message = message
self.content = content
self.code = code
if code:
self.code_reason = responses[code]
else:
self.code_reason = ""
class GithubRequest(object):
github_url = GITHUB_URL
url_format = "%(github_url)s/api/%(api_version)s/%(api_format)s"
api_version = "v2"
api_format = "json"
GithubError = GithubError
def __init__(self, username=None, api_token=None, url_prefix=None,
requests_per_second=None, access_token=None,
cache=None, proxy_host=None, proxy_port=None):
"""Make an API request.
:see: :class:`github2.client.Github`
"""
self.username = username
self.api_token = api_token
self.access_token = access_token
self.url_prefix = url_prefix
if requests_per_second is None:
self.delay = 0
else:
self.delay = 1.0 / requests_per_second
self.last_request = datetime.datetime(1900, 1, 1)
if not self.url_prefix:
self.url_prefix = self.url_format % {
"github_url": self.github_url,
"api_version": self.api_version,
"api_format": self.api_format,
}
digicert_ha_cert = path.join(path.dirname(path.abspath(__file__ )),
"DigiCert_High_Assurance_EV_Root_CA.crt")
if proxy_host is None:
self._http = httplib2.Http(cache=cache, ca_certs=digicert_ha_cert)
else:
proxy_info = httplib2.ProxyInfo(httplib2.socks.PROXY_TYPE_HTTP,
proxy_host, proxy_port)
self._http = httplib2.Http(proxy_info=proxy_info, cache=cache,
ca_certs=digicert_ha_cert)
def encode_authentication_data(self, extra_post_data):
if self.access_token:
post_data = {"access_token": self.access_token}
elif self.username and self.api_token:
post_data = {"login": self.username,
"token": self.api_token}
else:
post_data = {}
post_data.update(extra_post_data)
return urlencode(post_data)
def get(self, *path_components):
path_components = filter(None, path_components)
return self.make_request("/".join(path_components))
def post(self, *path_components, **extra_post_data):
path_components = filter(None, path_components)
return self.make_request("/".join(path_components), extra_post_data,
method="POST")
def put(self, *path_components, **extra_post_data):
path_components = filter(None, path_components)
return self.make_request("/".join(path_components), extra_post_data,
method="PUT")
def delete(self, *path_components, **extra_post_data):
path_components = filter(None, path_components)
return self.make_request("/".join(path_components), extra_post_data,
method="DELETE")
def make_request(self, path, extra_post_data=None, method="GET"):
if self.delay:
since_last = (datetime.datetime.now() - self.last_request)
since_last_in_seconds = (since_last.days * 24 * 60 * 60) + since_last.seconds + (since_last.microseconds/1000000.0)
if since_last_in_seconds < self.delay:
duration = self.delay - since_last_in_seconds
LOGGER.warning("delaying API call %s second(s)", duration)
time.sleep(duration)
extra_post_data = extra_post_data or {}
url = "/".join([self.url_prefix, quote(path)])
result = self.raw_request(url, extra_post_data, method=method)
if self.delay:
self.last_request = datetime.datetime.now()
return result
def raw_request(self, url, extra_post_data, method="GET"):
scheme, netloc, path, query, fragment = urlsplit(url)
post_data = None
headers = self.http_headers
method = method.upper()
if extra_post_data or method == "POST":
post_data = self.encode_authentication_data(extra_post_data)
headers["Content-Length"] = str(len(post_data))
else:
query = self.encode_authentication_data(parse_qs(query))
url = urlunsplit((scheme, netloc, path, query, fragment))
response, content = self._http.request(url, method, post_data, headers)
if LOGGER.isEnabledFor(logging.DEBUG):
logging.debug("URL: %r POST_DATA: %r RESPONSE_TEXT: %r", url,
post_data, content)
if response.status >= 400:
raise HttpError("Unexpected response from github.com %d: %r"
% (response.status, content), content,
response.status)
json = simplejson.loads(content.decode(charset_from_headers(response)))
if json.get("error"):
raise self.GithubError(json["error"][0]["error"])
return json
@property
def http_headers(self):
return {
"User-Agent": "pygithub2 v1",
"Accept": "application/json",
}