-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandlers.py
More file actions
467 lines (397 loc) · 18 KB
/
handlers.py
File metadata and controls
467 lines (397 loc) · 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
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
#-----------------------------------------------------------------------------
# Copyright (C) Jupyter Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-----------------------------------------------------------------------------
import os
import json
import mimetypes
import re
from tornado import (
web,
)
from tornado.escape import url_unescape
from ..base import (
AddSlashHandler,
BaseHandler,
cached,
RemoveSlashHandler,
RenderingHandler,
)
from ...utils import (
base64_decode,
quote,
response_text,
url_path_join,
)
from .client import AsyncGitHubClient
from .. import _load_handler_from_location
class GithubClientMixin(object):
# PROVIDER_CTX is a dictionary whose entries are passed as keyword arguments
# to the render_template method of the GistHandler. The following describe
# the information contained in each of these keyword arguments:
# provider_label: str
# Text to to apply to the navbar icon linking to the provider
# provider_icon: str
# CSS classname to apply to the navbar icon linking to the provider
# executor_label: str, optional
# Text to apply to the navbar icon linking to the execution service
# executor_icon: str, optional
# CSS classname to apply to the navbar icon linking to the execution service
PROVIDER_CTX = {
'provider_label': 'GitHub',
'provider_icon': 'github',
'executor_label': 'Binder',
'executor_icon': 'icon-binder',
}
BINDER_TMPL = '{binder_base_url}/gh/{org}/{repo}/{ref}'
BINDER_PATH_TMPL = BINDER_TMPL+'?filepath={path}'
@property
def github_url(self):
if getattr(self, "_github_url", None) is None:
if os.environ.get('GITHUB_URL', ''):
self._github_url = os.environ.get('GITHUB_URL')
elif self.github_client.github_api_url == 'https://api.github.com/':
self._github_url = "https://github.com/"
else:
# Github Enterprise
# https://developer.github.com/enterprise/2.18/v3/enterprise-admin/#endpoint-urls
self._github_url = re.sub(r'api/v3/$', '', self.github_client.github_api_url)
return self._github_url
@property
def github_client(self):
"""Create an upgraded github API client from the HTTP client"""
if getattr(self, "_github_client", None) is None:
self._github_client = AsyncGitHubClient(self.log, self.client)
return self._github_client
def client_error_message(self, exc, url, body, msg=None):
if exc.code == 403 and 'rate limit' in body.lower():
return 503, "GitHub API rate limit exceeded. Try again soon."
return super().client_error_message(
exc, url, body, msg
)
class RawGitHubURLHandler(BaseHandler):
"""redirect old /urls/raw.github urls to /github/ API urls"""
def get(self, user, repo, path):
new_url = u'{format}/github/{user}/{repo}/blob/{path}'.format(
format=self.format_prefix, user=user, repo=repo, path=path,
)
self.log.info("Redirecting %s to %s", self.request.uri, new_url)
self.redirect(self.from_base(new_url))
class GitHubRedirectHandler(GithubClientMixin, BaseHandler):
"""redirect github urls to /github/ API urls"""
def get(self, url):
new_url = u'{format}/github/{url}'.format(
format=self.format_prefix, url=url)
self.log.info("Redirecting %s to %s", self.request.uri, new_url)
self.redirect(self.from_base(new_url))
class GitHubUserHandler(GithubClientMixin, BaseHandler):
"""list a user's github repos"""
def render_github_user_template(self, entries, provider_url, next_url, prev_url, **namespace):
return self.render_template("userview.html", entries=entries, provider_url=provider_url,
next_url=next_url, prev_url=prev_url, **self.PROVIDER_CTX, **namespace)
@cached
async def get(self, user):
page = self.get_argument("page", None)
params = {'sort' : 'updated'}
if page:
params['page'] = page
with self.catch_client_error():
response = await self.github_client.get_repos(user, params=params)
prev_url, next_url = self.get_page_links(response)
repos = json.loads(response_text(response))
entries = []
for repo in repos:
entries.append(dict(
url=repo['name'],
name=repo['name'],
))
provider_url = u"{github_url}{user}".format(user=user, github_url=self.github_url)
html = self.render_github_user_template(
entries=entries, provider_url=provider_url,
next_url=next_url, prev_url=prev_url,
)
await self.cache_and_finish(html)
class GitHubRepoHandler(BaseHandler):
"""redirect /github/user/repo to .../tree/master"""
def get(self, user, repo):
new_url = self.from_base('/', self.format_prefix, 'github', user, repo, 'tree', 'master')
self.log.info("Redirecting %s to %s", self.request.uri, new_url)
self.redirect(new_url)
class GitHubTreeHandler(GithubClientMixin, BaseHandler):
"""list files in a github repo (like github tree)"""
def render_treelist_template(self, entries, breadcrumbs, provider_url, user, repo, ref, path,
branches, tags, executor_url, **namespace):
"""
breadcrumbs: list of dict
Breadcrumb 'name' and 'url' to render as links at the top of the notebook page
provider_url: str
URL to the notebook document upstream at the provider (e.g., GitHub)
executor_url: str, optional
URL to execute the notebook document (e.g., Binder)
"""
return self.render_template("treelist.html", entries=entries, breadcrumbs=breadcrumbs,
provider_url=provider_url, user=user, repo=repo, ref=ref,
path=path, branches=branches, tags=tags, tree_type="github",
tree_label="repositories", executor_url=executor_url,
**self.PROVIDER_CTX, **namespace)
@cached
async def get(self, user, repo, ref, path):
if not self.request.uri.endswith('/'):
self.redirect(self.request.uri + '/')
return
path = path.rstrip('/')
with self.catch_client_error():
response = await self.github_client.get_contents(user, repo, path, ref=ref)
contents = json.loads(response_text(response))
branches, tags = await self.refs(user, repo)
for nav_ref in branches + tags:
nav_ref["url"] = (u"/github/{user}/{repo}/tree/{ref}/{path}"
.format(
ref=nav_ref["name"], user=user, repo=repo, path=path
))
if not isinstance(contents, list):
self.log.info(
"{format}/{user}/{repo}/{ref}/{path} not tree, redirecting to blob",
extra=dict(format=self.format_prefix, user=user, repo=repo, ref=ref, path=path)
)
self.redirect(
u"{format}/github/{user}/{repo}/blob/{ref}/{path}".format(
format=self.format_prefix, user=user, repo=repo, ref=ref, path=path,
)
)
return
# Account for possibility that GitHub API redirects us to get more accurate breadcrumbs
# See: https://github.com/jupyter/nbviewer/issues/324
example_file_url = contents[0]['html_url']
user, repo = re.match(r"^" + self.github_url + "(?P<user>[^\/]+)/(?P<repo>[^\/]+)/.*", example_file_url).group('user', 'repo')
base_url = u"/github/{user}/{repo}/tree/{ref}".format(
user=user, repo=repo, ref=ref,
)
provider_url = u"{github_url}{user}/{repo}/tree/{ref}/{path}".format(
user=user, repo=repo, ref=ref, path=path, github_url=self.github_url
)
breadcrumbs = [{
'url' : base_url,
'name' : repo,
}]
breadcrumbs.extend(self.breadcrumbs(path, base_url))
entries = []
dirs = []
ipynbs = []
others = []
for file in contents:
e = {}
e['name'] = file['name']
if file['type'] == 'dir':
e['url'] = u'/github/{user}/{repo}/tree/{ref}/{path}'.format(
user=user, repo=repo, ref=ref, path=file['path']
)
e['url'] = quote(e['url'])
e['class'] = 'fa-folder-open'
dirs.append(e)
elif file['name'].endswith('.ipynb'):
e['url'] = u'/github/{user}/{repo}/blob/{ref}/{path}'.format(
user=user, repo=repo, ref=ref, path=file['path']
)
e['url'] = quote(e['url'])
e['class'] = 'fa-book'
ipynbs.append(e)
elif file['html_url']:
e['url'] = file['html_url']
e['class'] = 'fa-share'
others.append(e)
else:
# submodules don't have html_url
e['url'] = ''
e['class'] = 'fa-folder-close'
others.append(e)
entries.extend(dirs)
entries.extend(ipynbs)
entries.extend(others)
# Enable a binder navbar icon if a binder base URL is configured
executor_url = self.BINDER_TMPL.format(
binder_base_url=self.binder_base_url,
org=user,
repo=repo,
ref=ref,
) if self.binder_base_url else None
html = self.render_treelist_template(
entries=entries, breadcrumbs=breadcrumbs, provider_url=provider_url,
user=user, repo=repo, ref=ref, path=path, branches=branches, tags=tags,
executor_url=executor_url)
await self.cache_and_finish(html)
async def refs(self, user, repo):
"""get branches and tags for this user/repo"""
ref_types = ("branches", "tags")
ref_data = [None, None]
for i, ref_type in enumerate(ref_types):
with self.catch_client_error():
response = await getattr(self.github_client, "get_%s" % ref_type)(user, repo)
ref_data[i] = json.loads(response_text(response))
return ref_data
class GitHubBlobHandler(GithubClientMixin, RenderingHandler):
"""handler for files on github
If it's a...
- notebook, render it
- non-notebook file, serve file unmodified
- directory, redirect to tree
"""
async def get_notebook_data(self, user, repo, ref, path):
if os.environ.get('GITHUB_API_URL', '') == '':
raw_url = u"https://raw.githubusercontent.com/{user}/{repo}/{ref}/{path}".format(
user=user, repo=repo, ref=ref, path=quote(path)
)
else: #Github Enterprise has a different URL pattern for accessing raw files
raw_url = url_path_join(
self.github_url, user, repo, 'raw', ref, quote(path)
)
blob_url = u"{github_url}{user}/{repo}/blob/{ref}/{path}".format(
user=user, repo=repo, ref=ref, path=quote(path), github_url=self.github_url
)
with self.catch_client_error():
tree = await self.github_client.get_tree(
user, repo, path=url_unescape(path), ref=ref
)
tree_entry = self.github_client.extract_tree_entry(path=url_unescape(path), tree_response=tree)
if tree_entry['type'] == 'tree':
tree_url = "/github/{user}/{repo}/tree/{ref}/{path}/".format(
user=user, repo=repo, ref=ref, path=quote(path),
)
self.log.info("%s is a directory, redirecting to %s", self.request.path, tree_url)
self.redirect(tree_url)
return
return raw_url, blob_url, tree_entry
async def deliver_notebook(self, user, repo, ref, path, raw_url, blob_url, tree_entry):
# fetch file data from the blobs API
with self.catch_client_error():
response = await self.github_client.fetch(tree_entry['url'])
data = json.loads(response_text(response))
contents = data['content']
if data['encoding'] == 'base64':
# filedata will be bytes
filedata = base64_decode(contents)
else:
# filedata will be unicode
filedata = contents
if path.endswith('.ipynb'):
dir_path = path.rsplit('/', 1)[0]
base_url = "/github/{user}/{repo}/tree/{ref}".format(
user=user, repo=repo, ref=ref,
)
breadcrumbs = [{
'url' : base_url,
'name' : repo,
}]
breadcrumbs.extend(self.breadcrumbs(dir_path, base_url))
# Enable a binder navbar icon if a binder base URL is configured
executor_url = self.BINDER_PATH_TMPL.format(
binder_base_url=self.binder_base_url,
org=user,
repo=repo,
ref=ref,
path=quote(path)
) if self.binder_base_url else None
try:
# filedata may be bytes, but we need text
if isinstance(filedata, bytes):
nbjson = filedata.decode('utf-8')
else:
nbjson = filedata
except Exception as e:
self.log.error("Failed to decode notebook: %s", raw_url, exc_info=True)
raise web.HTTPError(400)
# Explanation of some kwargs passed into `finish_notebook`:
# provider_url:
# URL to the notebook document upstream at the provider (e.g., GitHub)
# breadcrumbs: list of dict
# Breadcrumb 'name' and 'url' to render as links at the top of the notebook page
# executor_url: str, optional
# URL to execute the notebook document (e.g., Binder)
await self.finish_notebook(nbjson, raw_url,
provider_url=blob_url,
executor_url=executor_url,
breadcrumbs=breadcrumbs,
msg="file from GitHub: %s" % raw_url,
public=True,
**self.PROVIDER_CTX
)
else:
mime, enc = mimetypes.guess_type(path)
self.set_header("Content-Type", mime or 'text/plain')
await self.cache_and_finish(filedata)
@cached
async def get(self, user, repo, ref, path):
notebook_data = await self.get_notebook_data(user, repo, ref, path)
if notebook_data is not None:
raw_url, blob_url, tree_entry = notebook_data
else:
return
await self.deliver_notebook(user, repo, ref, path, raw_url, blob_url, tree_entry)
def default_handlers(handlers=[], **handler_names):
"""Tornado handlers"""
blob_handler = _load_handler_from_location(handler_names['github_blob_handler'])
tree_handler = _load_handler_from_location(handler_names['github_tree_handler'])
user_handler = _load_handler_from_location(handler_names['github_user_handler'])
return [
# ideally these URIs should have been caught by an appropriate
# uri_rewrite rather than letting the url provider catch them and then
# fixing it here.
# There are probably links in the wild that depend on these, so keep
# these handlers for backwards compatibility.
(r'/url[s]?/github\.com/(?P<url>.*)', GitHubRedirectHandler, {}),
(r'/url[s]?/raw\.?github\.com/(?P<user>[^\/]+)/(?P<repo>[^\/]+)/(?P<path>.*)', RawGitHubURLHandler, {}),
(r'/url[s]?/raw\.?githubusercontent\.com/(?P<user>[^\/]+)/(?P<repo>[^\/]+)/(?P<path>.*)', RawGitHubURLHandler, {}),
] + handlers + [
(r'/github/([^\/]+)', AddSlashHandler, {}),
(r'/github/(?P<user>[^\/]+)/', user_handler, {}),
(r'/github/([^\/]+)/([^\/]+)', AddSlashHandler, {}),
(r'/github/(?P<user>[^\/]+)/(?P<repo>[^\/]+)/', GitHubRepoHandler, {}),
(r'/github/([^\/]+)/([^\/]+)/(?:blob|raw)/([^\/]+)/(.*)/', RemoveSlashHandler, {}),
(r'/github/([^\/]+)/([^\/]+)/tree/([^\/]+)', AddSlashHandler, {}),
] + [
(r'/github/(?P<user>[^\/]+)/(?P<repo>[^\/]+)/tree/(?P<ref>[^\/]+)/(?P<path>.*)', tree_handler, {}),
(r'/github/(?P<user>[^\/]+)/(?P<repo>[^\/]+)/(?:blob|raw)/(?P<ref>[^\/]+)/(?P<path>.*)', blob_handler, {}),
]
def uri_rewrites(rewrites=[]):
github_rewrites = [
# three different uris for a raw view
(r'^https?://github\.com/([^\/]+)/([^\/]+)/raw/([^\/]+)/(.*)',
u'/github/{0}/{1}/blob/{2}/{3}'),
(r'^https?://raw\.github\.com/([^\/]+)/([^\/]+)/(.*)',
u'/github/{0}/{1}/blob/{2}'),
(r'^https?://raw\.githubusercontent\.com/([^\/]+)/([^\/]+)/(.*)',
u'/github/{0}/{1}/blob/{2}'),
# trees & blobs
(r'^https?://github.com/([\w\-]+)/([^\/]+)/(blob|tree)/(.*)$',
u'/github/{0}/{1}/{2}/{3}'),
# user/repo
(r'^([\w\-]+)/([^\/]+)$',
u'/github/{0}/{1}/tree/master/'),
# user
(r'^([\w\-]+)$',
u'/github/{0}/'),
]
# github enterprise
if os.environ.get('GITHUB_API_URL', '') != '':
github_base_url = os.environ.get('GITHUB_API_URL').split('api/v3')[0]
github_rewrites.extend([
# raw view
(r'^' + github_base_url
+ r'([^\/]+)/([^\/]+)/raw/([^\/]+)/(.*)',
u'/github/{0}/{1}/blob/{2}/{3}'),
# trees & blobs
(r'^' + github_base_url
+ r'([\w\-]+)/([^\/]+)/(blob|tree)/(.*)$',
u'/github/{0}/{1}/{2}/{3}'),
# user/repo
(r'^' + github_base_url
+ r'([\w\-]+)/([^\/]+)/?$',
u'/github/{0}/{1}/tree/master'),
# user
(r'^' + github_base_url
+ r'([\w\-]+)/?$',
u'/github/{0}/'),
])
return rewrites + github_rewrites