File size: 33,684 Bytes
eb67da4 |
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 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 |
"""
Classes for Repo providers.
Subclass the base class, ``RepoProvider``, to support different version
control services and providers.
.. note:: When adding a new repo provider, add it to the allowed values for
repo providers in event-schemas/launch.json.
"""
from datetime import timedelta, datetime, timezone
import json
import os
import time
import urllib.parse
import re
import subprocess
import escapism
from prometheus_client import Gauge
from tornado.httpclient import AsyncHTTPClient, HTTPError, HTTPRequest
from tornado.httputil import url_concat
from traitlets import Dict, Unicode, Bool, default, List
from traitlets.config import LoggingConfigurable
from .utils import Cache
GITHUB_RATE_LIMIT = Gauge('binderhub_github_rate_limit_remaining', 'GitHub rate limit remaining')
SHA1_PATTERN = re.compile(r'[0-9a-f]{40}')
def tokenize_spec(spec):
"""Tokenize a GitHub-style spec into parts, error if spec invalid."""
spec_parts = spec.split('/', 2) # allow ref to contain "/"
if len(spec_parts) != 3:
msg = 'Spec is not of the form "user/repo/ref", provided: "{spec}".'.format(spec=spec)
if len(spec_parts) == 2 and spec_parts[-1] != 'master':
msg += ' Did you mean "{spec}/master"?'.format(spec=spec)
raise ValueError(msg)
return spec_parts
def strip_suffix(text, suffix):
if text.endswith(suffix):
text = text[:-(len(suffix))]
return text
class RepoProvider(LoggingConfigurable):
"""Base class for a repo provider"""
name = Unicode(
help="""
Descriptive human readable name of this repo provider.
"""
)
spec = Unicode(
help="""
The spec for this builder to parse
"""
)
banned_specs = List(
help="""
List of specs to blacklist building.
Should be a list of regexes (not regex objects) that match specs which should be blacklisted
""",
config=True
)
high_quota_specs = List(
help="""
List of specs to assign a higher quota limit.
Should be a list of regexes (not regex objects) that match specs which should have a higher quota
""",
config=True
)
spec_config = List(
help="""
List of dictionaries that define per-repository configuration.
Each item in the list is a dictionary with two keys:
pattern : string
defines a regex pattern (not a regex object) that matches specs.
config : dict
a dictionary of "config_name: config_value" pairs that will be
applied to any repository that matches `pattern`
""",
config=True
)
unresolved_ref = Unicode()
git_credentials = Unicode(
"",
help="""
Credentials (if any) to pass to git when cloning.
""",
config=True
)
def is_banned(self):
"""
Return true if the given spec has been banned
"""
for banned in self.banned_specs:
# Ignore case, because most git providers do not
# count DS-100/textbook as different from ds-100/textbook
if re.match(banned, self.spec, re.IGNORECASE):
return True
return False
def has_higher_quota(self):
"""
Return true if the given spec has a higher quota
"""
for higher_quota in self.high_quota_specs:
# Ignore case, because most git providers do not
# count DS-100/textbook as different from ds-100/textbook
if re.match(higher_quota, self.spec, re.IGNORECASE):
return True
return False
def repo_config(self, settings):
"""
Return configuration for this repository.
"""
repo_config = {}
# Defaults and simple overrides
if self.has_higher_quota():
repo_config['quota'] = settings.get('per_repo_quota_higher')
else:
repo_config['quota'] = settings.get('per_repo_quota')
# Spec regex-based configuration
for item in self.spec_config:
pattern = item.get('pattern', None)
config = item.get('config', None)
if not isinstance(pattern, str):
raise ValueError(
"Spec-pattern configuration expected "
"a regex pattern string, not "
"type %s" % type(pattern))
if not isinstance(config, dict):
raise ValueError(
"Spec-pattern configuration expected "
"a specification configuration dict, not "
"type %s" % type(config))
# Ignore case, because most git providers do not
# count DS-100/textbook as different from ds-100/textbook
if re.match(pattern, self.spec, re.IGNORECASE):
repo_config.update(config)
return repo_config
async def get_resolved_ref(self):
raise NotImplementedError("Must be overridden in child class")
async def get_resolved_spec(self):
"""Return the spec with resolved ref."""
raise NotImplementedError("Must be overridden in child class")
def get_repo_url(self):
"""Return the git clone-able repo URL"""
raise NotImplementedError("Must be overridden in the child class")
async def get_resolved_ref_url(self):
"""Return the URL of repository at this commit in history"""
raise NotImplementedError("Must be overridden in child class")
def get_build_slug(self):
"""Return a unique build slug"""
raise NotImplementedError("Must be overriden in the child class")
@staticmethod
def sha1_validate(sha1):
if not SHA1_PATTERN.match(sha1):
raise ValueError("resolved_ref is not a valid sha1 hexadecimal hash")
class FakeProvider(RepoProvider):
"""Fake provider for local testing of the UI
"""
labels = {
"text": "Fake Provider",
"tag_text": "Fake Ref",
"ref_prop_disabled": True,
"label_prop_disabled": True,
}
async def get_resolved_ref(self):
return "1a2b3c4d5e6f"
async def get_resolved_spec(self):
return "fake/repo/1a2b3c4d5e6f"
def get_repo_url(self):
return "https://example.com/fake/repo.git"
async def get_resolved_ref_url(self):
return "https://example.com/fake/repo/tree/1a2b3c4d5e6f"
def get_build_slug(self):
return '{user}-{repo}'.format(user='Rick', repo='Morty')
class ZenodoProvider(RepoProvider):
"""Provide contents of a Zenodo record
Users must provide a spec consisting of the Zenodo DOI.
"""
name = Unicode("Zenodo")
display_name = "Zenodo DOI"
labels = {
"text": "Zenodo DOI (10.5281/zenodo.3242074)",
"tag_text": "Git ref (branch, tag, or commit)",
"ref_prop_disabled": True,
"label_prop_disabled": True,
}
async def get_resolved_ref(self):
client = AsyncHTTPClient()
req = HTTPRequest("https://doi.org/{}".format(self.spec),
user_agent="BinderHub")
r = await client.fetch(req)
self.record_id = r.effective_url.rsplit("/", maxsplit=1)[1]
return self.record_id
async def get_resolved_spec(self):
if not hasattr(self, 'record_id'):
self.record_id = await self.get_resolved_ref()
# zenodo registers a DOI which represents all versions of a software package
# and it always resolves to latest version
# for that case, we have to replace the version number in DOIs with
# the specific (resolved) version (record_id)
resolved_spec = self.spec.split("zenodo")[0] + "zenodo." + self.record_id
return resolved_spec
def get_repo_url(self):
# While called repo URL, the return value of this function is passed
# as argument to repo2docker, hence we return the spec as is.
return self.spec
async def get_resolved_ref_url(self):
resolved_spec = await self.get_resolved_spec()
return f"https://doi.org/{resolved_spec}"
def get_build_slug(self):
return "zenodo-{}".format(self.record_id)
class FigshareProvider(RepoProvider):
"""Provide contents of a Figshare article
Users must provide a spec consisting of the Figshare DOI.
"""
name = Unicode("Figshare")
display_name = "Figshare DOI"
url_regex = re.compile(r"(.*)/articles/([^/]+)/([^/]+)/(\d+)(/)?(\d+)?")
labels = {
"text": "Figshare DOI (10.6084/m9.figshare.9782777.v1)",
"tag_text": "Git ref (branch, tag, or commit)",
"ref_prop_disabled": True,
"label_prop_disabled": True,
}
async def get_resolved_ref(self):
client = AsyncHTTPClient()
req = HTTPRequest("https://doi.org/{}".format(self.spec),
user_agent="BinderHub")
r = await client.fetch(req)
match = self.url_regex.match(r.effective_url)
article_id = match.groups()[3]
article_version = match.groups()[5]
if not article_version:
article_version = "1"
self.record_id = "{}.v{}".format(article_id, article_version)
return self.record_id
async def get_resolved_spec(self):
if not hasattr(self, 'record_id'):
self.record_id = await self.get_resolved_ref()
# spec without version is accepted as version 1 - check get_resolved_ref method
# for that case, we have to replace the version number in DOIs with
# the specific (resolved) version (record_id)
resolved_spec = self.spec.split("figshare")[0] + "figshare." + self.record_id
return resolved_spec
def get_repo_url(self):
# While called repo URL, the return value of this function is passed
# as argument to repo2docker, hence we return the spec as is.
return self.spec
async def get_resolved_ref_url(self):
resolved_spec = await self.get_resolved_spec()
return f"https://doi.org/{resolved_spec}"
def get_build_slug(self):
return "figshare-{}".format(self.record_id)
class DataverseProvider(RepoProvider):
name = Unicode("Dataverse")
display_name = "Dataverse DOI"
labels = {
"text": "Dataverse DOI (10.7910/DVN/TJCLKP)",
"tag_text": "Git ref (branch, tag, or commit)",
"ref_prop_disabled": True,
"label_prop_disabled": True,
}
async def get_resolved_ref(self):
client = AsyncHTTPClient()
req = HTTPRequest("https://doi.org/{}".format(self.spec),
user_agent="BinderHub")
r = await client.fetch(req)
search_url = urllib.parse.urlunparse(
urllib.parse.urlparse(r.effective_url)._replace(
path="/api/datasets/:persistentId"
)
)
req = HTTPRequest(search_url, user_agent="BinderHub")
r = await client.fetch(req)
resp = json.loads(r.body)
assert resp["status"] == "OK"
self.identifier = resp["data"]["identifier"]
self.record_id = "{datasetId}.v{major}.{minor}".format(
datasetId=resp["data"]["id"],
major=resp["data"]["latestVersion"]["versionNumber"],
minor=resp["data"]["latestVersion"]["versionMinorNumber"],
)
# NOTE: data.protocol should be potentially prepended here
# {protocol}:{authority}/{identifier}
self.resolved_spec = "{authority}/{identifier}".format(
authority=resp["data"]["authority"],
identifier=resp["data"]["identifier"],
)
self.resolved_ref_url = resp["data"]["persistentUrl"]
return self.record_id
async def get_resolved_spec(self):
if not hasattr(self, 'resolved_spec'):
await self.get_resolved_ref()
return self.resolved_spec
async def get_resolved_ref_url(self):
if not hasattr(self, 'resolved_ref_url'):
await self.get_resolved_ref()
return self.resolved_ref_url
def get_repo_url(self):
# While called repo URL, the return value of this function is passed
# as argument to repo2docker, hence we return the spec as is.
return self.spec
def get_build_slug(self):
return "dataverse-" + escapism.escape(self.identifier, escape_char="-").lower()
class HydroshareProvider(RepoProvider):
"""Provide contents of a Hydroshare resource
Users must provide a spec consisting of the Hydroshare resource id.
"""
name = Unicode("Hydroshare")
display_name = "Hydroshare resource"
url_regex = re.compile(r".*([0-9a-f]{32}).*")
labels = {
"text": "Hydroshare resource id or URL",
"tag_text": "Git ref (branch, tag, or commit)",
"ref_prop_disabled": True,
"label_prop_disabled": True,
}
def _parse_resource_id(self, spec):
match = self.url_regex.match(spec)
if not match:
raise ValueError("The specified Hydroshare resource id was not recognized.")
resource_id = match.groups()[0]
return resource_id
async def get_resolved_ref(self):
client = AsyncHTTPClient()
self.resource_id = self._parse_resource_id(self.spec)
req = HTTPRequest("https://www.hydroshare.org/hsapi/resource/{}/scimeta/elements".format(self.resource_id),
user_agent="BinderHub")
r = await client.fetch(req)
def parse_date(json_body):
json_response = json.loads(json_body)
date = next(
item for item in json_response["dates"] if item["type"] == "modified"
)["start_date"]
# Hydroshare timestamp always returns the same timezone, so strip it
date = date.split(".")[0]
parsed_date = datetime.strptime(date, "%Y-%m-%dT%H:%M:%S")
epoch = parsed_date.replace(tzinfo=timezone(timedelta(0))).timestamp()
# truncate the timestamp
return str(int(epoch))
# date last updated is only good for the day... probably need something finer eventually
self.record_id = "{}.v{}".format(self.resource_id, parse_date(r.body))
return self.record_id
async def get_resolved_spec(self):
# Hydroshare does not provide a history, resolves to repo url
return self.get_repo_url()
async def get_resolved_ref_url(self):
# Hydroshare does not provide a history, resolves to repo url
return self.get_repo_url()
def get_repo_url(self):
self.resource_id = self._parse_resource_id(self.spec)
return "https://www.hydroshare.org/resource/{}".format(self.resource_id)
def get_build_slug(self):
return "hydroshare-{}".format(self.record_id)
class GitRepoProvider(RepoProvider):
"""Bare bones git repo provider.
Users must provide a spec of the following form.
<url-escaped-namespace>/<unresolved_ref>
<url-escaped-namespace>/<resolved_ref>
eg:
https%3A%2F%2Fgithub.com%2Fjupyterhub%2Fzero-to-jupyterhub-k8s/master
https%3A%2F%2Fgithub.com%2Fjupyterhub%2Fzero-to-jupyterhub-k8s/f7f3ff6d1bf708bdc12e5f10e18b2a90a4795603
This provider is typically used if you are deploying binderhub yourself and you require access to repositories that
are not in one of the supported providers.
"""
name = Unicode("Git")
display_name = "Git repository"
labels = {
"text": "Arbitrary git repository URL (http://git.example.com/repo)",
"tag_text": "Git ref (branch, tag, or commit)",
"ref_prop_disabled": False,
"label_prop_disabled": False,
}
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.url, unresolved_ref = self.spec.split('/', 1)
self.repo = urllib.parse.unquote(self.url)
self.unresolved_ref = urllib.parse.unquote(unresolved_ref)
if not self.unresolved_ref:
raise ValueError("`unresolved_ref` must be specified as a query parameter for the basic git provider")
async def get_resolved_ref(self):
if hasattr(self, 'resolved_ref'):
return self.resolved_ref
try:
# Check if the reference is a valid SHA hash
self.sha1_validate(self.unresolved_ref)
except ValueError:
# The ref is a head/tag and we resolve it using `git ls-remote`
# BUG: CWE-94 Improper Control of Generation of Code ('Code Injection')
# command = ["git", "ls-remote", self.repo, self.unresolved_ref]
# FIXED:
command = ["git", "ls-remote", "--", self.repo, self.unresolved_ref]
result = subprocess.run(command, universal_newlines=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
if result.returncode:
raise RuntimeError("Unable to run git ls-remote to get the `resolved_ref`: {}".format(result.stderr))
if not result.stdout:
return None
resolved_ref = result.stdout.split(None, 1)[0]
self.sha1_validate(resolved_ref)
self.resolved_ref = resolved_ref
else:
# The ref already was a valid SHA hash
self.resolved_ref = self.unresolved_ref
return self.resolved_ref
async def get_resolved_spec(self):
if not hasattr(self, 'resolved_ref'):
self.resolved_ref = await self.get_resolved_ref()
return f"{self.url}/{self.resolved_ref}"
def get_repo_url(self):
return self.repo
async def get_resolved_ref_url(self):
# not possible to construct ref url of unknown git provider
return self.get_repo_url()
def get_build_slug(self):
return self.repo
class GitLabRepoProvider(RepoProvider):
"""GitLab provider.
GitLab allows nested namespaces (eg. root/project/component/repo) thus we need to urlescape the namespace of this
repo. Users must provide a spec that matches the following form.
<url-escaped-namespace>/<unresolved_ref>
eg:
group%2Fproject%2Frepo/master
"""
name = Unicode('GitLab')
display_name = "GitLab.com"
hostname = Unicode('gitlab.com', config=True,
help="""The host of the GitLab instance
For personal GitLab servers.
"""
)
access_token = Unicode(config=True,
help="""GitLab OAuth2 access token for authentication with the GitLab API
For use with client_secret.
Loaded from GITLAB_ACCESS_TOKEN env by default.
"""
)
@default('access_token')
def _access_token_default(self):
return os.getenv('GITLAB_ACCESS_TOKEN', '')
private_token = Unicode(config=True,
help="""GitLab private token for authentication with the GitLab API
Loaded from GITLAB_PRIVATE_TOKEN env by default.
"""
)
@default('private_token')
def _private_token_default(self):
return os.getenv('GITLAB_PRIVATE_TOKEN', '')
auth = Dict(
help="""Auth parameters for the GitLab API access
Populated from access_token, private_token
"""
)
@default('auth')
def _default_auth(self):
auth = {}
for key in ('access_token', 'private_token'):
value = getattr(self, key)
if value:
auth[key] = value
return auth
@default('git_credentials')
def _default_git_credentials(self):
if self.private_token:
return r'username=binderhub\npassword={token}'.format(token=self.private_token)
return ""
labels = {
"text": "GitLab.com repository or URL",
"tag_text": "Git ref (branch, tag, or commit)",
"ref_prop_disabled": False,
"label_prop_disabled": False,
}
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.quoted_namespace, unresolved_ref = self.spec.split('/', 1)
self.namespace = urllib.parse.unquote(self.quoted_namespace)
self.unresolved_ref = urllib.parse.unquote(unresolved_ref)
if not self.unresolved_ref:
raise ValueError("An unresolved ref is required")
async def get_resolved_ref(self):
if hasattr(self, 'resolved_ref'):
return self.resolved_ref
namespace = urllib.parse.quote(self.namespace, safe='')
client = AsyncHTTPClient()
api_url = "https://{hostname}/api/v4/projects/{namespace}/repository/commits/{ref}".format(
hostname=self.hostname,
namespace=namespace,
ref=urllib.parse.quote(self.unresolved_ref, safe=''),
)
self.log.debug("Fetching %s", api_url)
if self.auth:
# Add auth params. After logging!
api_url = url_concat(api_url, self.auth)
try:
resp = await client.fetch(api_url, user_agent="BinderHub")
except HTTPError as e:
if e.code == 404:
return None
else:
raise
ref_info = json.loads(resp.body.decode('utf-8'))
self.resolved_ref = ref_info['id']
return self.resolved_ref
async def get_resolved_spec(self):
if not hasattr(self, 'resolved_ref'):
self.resolved_ref = await self.get_resolved_ref()
return f"{self.quoted_namespace}/{self.resolved_ref}"
def get_build_slug(self):
# escape the name and replace dashes with something else.
return '-'.join(p.replace('-', '_-') for p in self.namespace.split('/'))
def get_repo_url(self):
return f"https://{self.hostname}/{self.namespace}.git"
async def get_resolved_ref_url(self):
if not hasattr(self, 'resolved_ref'):
self.resolved_ref = await self.get_resolved_ref()
return f"https://{self.hostname}/{self.namespace}/tree/{self.resolved_ref}"
class GitHubRepoProvider(RepoProvider):
"""Repo provider for the GitHub service"""
name = Unicode('GitHub')
display_name = 'GitHub'
# shared cache for resolved refs
cache = Cache(1024)
# separate cache with max age for 404 results
# 404s don't have ETags, so we want them to expire at some point
# to avoid caching a 404 forever since e.g. a missing repo or branch
# may be created later
cache_404 = Cache(1024, max_age=300)
hostname = Unicode('github.com',
config=True,
help="""The GitHub hostname to use
Only necessary if not github.com,
e.g. GitHub Enterprise.
""")
api_base_path = Unicode('https://api.{hostname}',
config=True,
help="""The base path of the GitHub API
Only necessary if not github.com,
e.g. GitHub Enterprise.
Can use {hostname} for substitution,
e.g. 'https://{hostname}/api/v3'
""")
client_id = Unicode(config=True,
help="""GitHub client id for authentication with the GitHub API
For use with client_secret.
Loaded from GITHUB_CLIENT_ID env by default.
"""
)
@default('client_id')
def _client_id_default(self):
return os.getenv('GITHUB_CLIENT_ID', '')
client_secret = Unicode(config=True,
help="""GitHub client secret for authentication with the GitHub API
For use with client_id.
Loaded from GITHUB_CLIENT_SECRET env by default.
"""
)
@default('client_secret')
def _client_secret_default(self):
return os.getenv('GITHUB_CLIENT_SECRET', '')
access_token = Unicode(config=True,
help="""GitHub access token for authentication with the GitHub API
Loaded from GITHUB_ACCESS_TOKEN env by default.
"""
)
@default('access_token')
def _access_token_default(self):
return os.getenv('GITHUB_ACCESS_TOKEN', '')
@default('git_credentials')
def _default_git_credentials(self):
if self.access_token:
# Based on https://github.com/blog/1270-easier-builds-and-deployments-using-git-over-https-and-oauth
# If client_id is specified, assuming access_token is personal access token. Otherwise,
# assume oauth basic token.
if self.client_id:
return r'username={client_id}\npassword={token}'.format(
client_id=self.client_id, token=self.access_token)
else:
return r'username={token}\npassword=x-oauth-basic'.format(token=self.access_token)
return ""
labels = {
"text": "GitHub repository name or URL",
"tag_text": "Git ref (branch, tag, or commit)",
"ref_prop_disabled": False,
"label_prop_disabled": False,
}
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.user, self.repo, self.unresolved_ref = tokenize_spec(self.spec)
self.repo = strip_suffix(self.repo, ".git")
def get_repo_url(self):
return f"https://{self.hostname}/{self.user}/{self.repo}"
async def get_resolved_ref_url(self):
if not hasattr(self, 'resolved_ref'):
self.resolved_ref = await self.get_resolved_ref()
return f"https://{self.hostname}/{self.user}/{self.repo}/tree/{self.resolved_ref}"
async def github_api_request(self, api_url, etag=None):
client = AsyncHTTPClient()
request_kwargs = {}
if self.client_id and self.client_secret:
request_kwargs.update(
dict(auth_username=self.client_id, auth_password=self.client_secret)
)
headers = {}
# based on: https://developer.github.com/v3/#oauth2-token-sent-in-a-header
if self.access_token:
headers['Authorization'] = "token {token}".format(token=self.access_token)
if etag:
headers['If-None-Match'] = etag
req = HTTPRequest(
api_url, headers=headers, user_agent="BinderHub", **request_kwargs
)
try:
resp = await client.fetch(req)
except HTTPError as e:
if e.code == 304:
resp = e.response
elif (
e.code == 403
and e.response
and 'x-ratelimit-remaining' in e.response.headers
and e.response.headers.get('x-ratelimit-remaining') == '0'
):
rate_limit = e.response.headers['x-ratelimit-limit']
reset_timestamp = int(e.response.headers['x-ratelimit-reset'])
reset_seconds = int(reset_timestamp - time.time())
self.log.error(
"GitHub Rate limit ({limit}) exceeded. Reset in {delta}.".format(
limit=rate_limit,
delta=timedelta(seconds=reset_seconds),
)
)
# round expiry up to nearest 5 minutes
minutes_until_reset = 5 * (1 + (reset_seconds // 60 // 5))
raise ValueError("GitHub rate limit exceeded. Try again in %i minutes."
% minutes_until_reset
)
# Status 422 is returned by the API when we try and resolve a non
# existent reference
elif e.code in (404, 422):
return None
else:
raise
if 'x-ratelimit-remaining' in resp.headers:
# record and log github rate limit
remaining = int(resp.headers['x-ratelimit-remaining'])
rate_limit = int(resp.headers['x-ratelimit-limit'])
reset_timestamp = int(resp.headers['x-ratelimit-reset'])
# record with prometheus
GITHUB_RATE_LIMIT.set(remaining)
# log at different levels, depending on remaining fraction
fraction = remaining / rate_limit
if fraction < 0.2:
log = self.log.warning
elif fraction < 0.5:
log = self.log.info
else:
log = self.log.debug
# str(timedelta) looks like '00:32'
delta = timedelta(seconds=int(reset_timestamp - time.time()))
log("GitHub rate limit remaining {remaining}/{limit}. Reset in {delta}.".format(
remaining=remaining, limit=rate_limit, delta=delta,
))
return resp
async def get_resolved_ref(self):
if hasattr(self, 'resolved_ref'):
return self.resolved_ref
api_url = "{api_base_path}/repos/{user}/{repo}/commits/{ref}".format(
api_base_path=self.api_base_path.format(hostname=self.hostname),
user=self.user, repo=self.repo, ref=self.unresolved_ref
)
self.log.debug("Fetching %s", api_url)
cached = self.cache.get(api_url)
if cached:
etag = cached['etag']
self.log.debug("Cache hit for %s: %s", api_url, etag)
else:
cache_404 = self.cache_404.get(api_url)
if cache_404:
self.log.debug("Cache hit for 404 on %s", api_url)
return None
etag = None
resp = await self.github_api_request(api_url, etag=etag)
if resp is None:
self.log.debug("Caching 404 on %s", api_url)
self.cache_404.set(api_url, True)
return None
if resp.code == 304:
self.log.info("Using cached ref for %s: %s", api_url, cached['sha'])
self.resolved_ref = cached['sha']
# refresh cache entry
self.cache.move_to_end(api_url)
return self.resolved_ref
elif cached:
self.log.debug("Cache outdated for %s", api_url)
ref_info = json.loads(resp.body.decode('utf-8'))
if 'sha' not in ref_info:
# TODO: Figure out if we should raise an exception instead?
self.log.warning("No sha for %s in %s", api_url, ref_info)
self.resolved_ref = None
return None
# store resolved ref and cache for later
self.resolved_ref = ref_info['sha']
self.cache.set(
api_url,
{
'etag': resp.headers.get('ETag'),
'sha': self.resolved_ref,
},
)
return self.resolved_ref
async def get_resolved_spec(self):
if not hasattr(self, 'resolved_ref'):
self.resolved_ref = await self.get_resolved_ref()
return f"{self.user}/{self.repo}/{self.resolved_ref}"
def get_build_slug(self):
return '{user}-{repo}'.format(user=self.user, repo=self.repo)
class GistRepoProvider(GitHubRepoProvider):
"""GitHub gist provider.
Users must provide a spec that matches the following form (similar to github)
[https://gist.github.com/]<username>/<gist-id>[/<ref>]
The ref is optional, valid values are
- a full sha1 of a ref in the history
- master
If master or no ref is specified the latest revision will be used.
"""
name = Unicode("Gist")
display_name = "Gist"
hostname = Unicode("gist.github.com")
allow_secret_gist = Bool(
default_value=False,
config=True,
help="Flag for allowing usages of secret Gists. The default behavior is to disallow secret gists.",
)
labels = {
"text": "Gist ID (username/gistId) or URL",
"tag_text": "Git commit SHA",
"ref_prop_disabled": False,
"label_prop_disabled": False,
}
def __init__(self, *args, **kwargs):
# We dont need to initialize entirely the same as github
super(RepoProvider, self).__init__(*args, **kwargs)
parts = self.spec.split('/')
self.user, self.gist_id, *_ = parts
if len(parts) > 2:
self.unresolved_ref = parts[2]
else:
self.unresolved_ref = ''
def get_repo_url(self):
return f'https://{self.hostname}/{self.user}/{self.gist_id}.git'
async def get_resolved_ref_url(self):
if not hasattr(self, 'resolved_ref'):
self.resolved_ref = await self.get_resolved_ref()
return f'https://{self.hostname}/{self.user}/{self.gist_id}/{self.resolved_ref}'
async def get_resolved_ref(self):
if hasattr(self, 'resolved_ref'):
return self.resolved_ref
api_url = f"https://api.github.com/gists/{self.gist_id}"
self.log.debug("Fetching %s", api_url)
resp = await self.github_api_request(api_url)
if resp is None:
return None
ref_info = json.loads(resp.body.decode('utf-8'))
if (not self.allow_secret_gist) and (not ref_info['public']):
raise ValueError("You seem to want to use a secret Gist, but do not have permission to do so. "
"To enable secret Gist support, set (or have an administrator set) "
"'GistRepoProvider.allow_secret_gist = True'")
all_versions = [e['version'] for e in ref_info['history']]
if self.unresolved_ref in {"", "HEAD", "master"}:
self.resolved_ref = all_versions[0]
else:
if self.unresolved_ref not in all_versions:
return None
else:
self.resolved_ref = self.unresolved_ref
return self.resolved_ref
async def get_resolved_spec(self):
if not hasattr(self, 'resolved_ref'):
self.resolved_ref = await self.get_resolved_ref()
return f'{self.user}/{self.gist_id}/{self.resolved_ref}'
def get_build_slug(self):
return self.gist_id
|