|
""" |
|
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) |
|
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: |
|
|
|
|
|
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: |
|
|
|
|
|
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 = {} |
|
|
|
|
|
if self.has_higher_quota(): |
|
repo_config['quota'] = settings.get('per_repo_quota_higher') |
|
else: |
|
repo_config['quota'] = settings.get('per_repo_quota') |
|
|
|
|
|
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)) |
|
|
|
|
|
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() |
|
|
|
|
|
|
|
|
|
resolved_spec = self.spec.split("zenodo")[0] + "zenodo." + self.record_id |
|
return resolved_spec |
|
|
|
def get_repo_url(self): |
|
|
|
|
|
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() |
|
|
|
|
|
|
|
|
|
resolved_spec = self.spec.split("figshare")[0] + "figshare." + self.record_id |
|
return resolved_spec |
|
|
|
def get_repo_url(self): |
|
|
|
|
|
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"], |
|
) |
|
|
|
|
|
|
|
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): |
|
|
|
|
|
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"] |
|
|
|
date = date.split(".")[0] |
|
parsed_date = datetime.strptime(date, "%Y-%m-%dT%H:%M:%S") |
|
epoch = parsed_date.replace(tzinfo=timezone(timedelta(0))).timestamp() |
|
|
|
return str(int(epoch)) |
|
|
|
self.record_id = "{}.v{}".format(self.resource_id, parse_date(r.body)) |
|
return self.record_id |
|
|
|
async def get_resolved_spec(self): |
|
|
|
return self.get_repo_url() |
|
|
|
async def get_resolved_ref_url(self): |
|
|
|
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: |
|
|
|
self.sha1_validate(self.unresolved_ref) |
|
except ValueError: |
|
|
|
|
|
|
|
|
|
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: |
|
|
|
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): |
|
|
|
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: |
|
|
|
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): |
|
|
|
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' |
|
|
|
|
|
cache = Cache(1024) |
|
|
|
|
|
|
|
|
|
|
|
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: |
|
|
|
|
|
|
|
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 = {} |
|
|
|
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), |
|
) |
|
) |
|
|
|
minutes_until_reset = 5 * (1 + (reset_seconds // 60 // 5)) |
|
|
|
raise ValueError("GitHub rate limit exceeded. Try again in %i minutes." |
|
% minutes_until_reset |
|
) |
|
|
|
|
|
elif e.code in (404, 422): |
|
return None |
|
else: |
|
raise |
|
|
|
if 'x-ratelimit-remaining' in resp.headers: |
|
|
|
remaining = int(resp.headers['x-ratelimit-remaining']) |
|
rate_limit = int(resp.headers['x-ratelimit-limit']) |
|
reset_timestamp = int(resp.headers['x-ratelimit-reset']) |
|
|
|
|
|
GITHUB_RATE_LIMIT.set(remaining) |
|
|
|
|
|
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 |
|
|
|
|
|
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'] |
|
|
|
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: |
|
|
|
self.log.warning("No sha for %s in %s", api_url, ref_info) |
|
self.resolved_ref = None |
|
return None |
|
|
|
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): |
|
|
|
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 |
|
|