2014-12-31 16:33:56 +00:00
|
|
|
import json
|
|
|
|
|
|
|
|
from cachetools import lru_cache
|
|
|
|
|
2014-11-12 19:03:07 +00:00
|
|
|
from data import model
|
|
|
|
|
|
|
|
|
|
|
|
class BuildJobLoadException(Exception):
|
|
|
|
""" Exception raised if a build job could not be instantiated for some reason. """
|
|
|
|
pass
|
|
|
|
|
|
|
|
class BuildJob(object):
|
|
|
|
""" Represents a single in-progress build job. """
|
|
|
|
def __init__(self, job_item):
|
2014-12-16 18:41:30 +00:00
|
|
|
self.job_item = job_item
|
2014-11-12 19:03:07 +00:00
|
|
|
|
|
|
|
try:
|
2014-12-16 18:41:30 +00:00
|
|
|
self.job_details = json.loads(job_item.body)
|
2014-11-12 19:03:07 +00:00
|
|
|
except ValueError:
|
|
|
|
raise BuildJobLoadException(
|
2014-12-16 18:41:30 +00:00
|
|
|
'Could not parse build queue item config with ID %s' % self.job_details['build_uuid']
|
2014-11-18 20:45:56 +00:00
|
|
|
)
|
2014-11-12 19:03:07 +00:00
|
|
|
|
2014-12-31 16:33:56 +00:00
|
|
|
@lru_cache(maxsize=1)
|
|
|
|
def _load_repo_build(self):
|
2014-11-12 19:03:07 +00:00
|
|
|
try:
|
2014-12-31 16:33:56 +00:00
|
|
|
return model.get_repository_build(self.job_details['build_uuid'])
|
2014-11-12 19:03:07 +00:00
|
|
|
except model.InvalidRepositoryBuildException:
|
|
|
|
raise BuildJobLoadException(
|
2014-12-16 18:41:30 +00:00
|
|
|
'Could not load repository build with ID %s' % self.job_details['build_uuid'])
|
2014-11-12 19:03:07 +00:00
|
|
|
|
2014-12-31 16:33:56 +00:00
|
|
|
@property
|
|
|
|
def repo_build(self):
|
|
|
|
return self._load_repo_build()
|
|
|
|
|
2015-01-29 23:01:42 +00:00
|
|
|
@property
|
|
|
|
def pull_credentials(self):
|
|
|
|
""" Returns the pull credentials for this job, or None if none. """
|
|
|
|
return self.job_details.get('pull_credentials')
|
|
|
|
|
2014-12-31 16:33:56 +00:00
|
|
|
@property
|
|
|
|
def build_config(self):
|
2014-11-12 19:03:07 +00:00
|
|
|
try:
|
2014-12-31 16:33:56 +00:00
|
|
|
return json.loads(self.repo_build.job_config)
|
2014-11-12 19:03:07 +00:00
|
|
|
except ValueError:
|
|
|
|
raise BuildJobLoadException(
|
2014-12-16 18:41:30 +00:00
|
|
|
'Could not parse repository build job config with ID %s' % self.job_details['build_uuid']
|
2014-11-18 20:45:56 +00:00
|
|
|
)
|
2014-11-12 19:03:07 +00:00
|
|
|
|
|
|
|
def determine_cached_tag(self):
|
|
|
|
""" Returns the tag to pull to prime the cache or None if none. """
|
|
|
|
# TODO(jschorr): Change this to use the more complicated caching rules, once we have caching
|
|
|
|
# be a pull of things besides the constructed tags.
|
2014-12-16 18:41:30 +00:00
|
|
|
tags = self.build_config.get('docker_tags', ['latest'])
|
|
|
|
existing_tags = model.list_repository_tags(self.repo_build.repository.namespace_user.username,
|
|
|
|
self.repo_build.repository.name)
|
2014-11-12 19:03:07 +00:00
|
|
|
|
|
|
|
cached_tags = set(tags) & set([tag.name for tag in existing_tags])
|
|
|
|
if cached_tags:
|
2014-11-14 00:41:17 +00:00
|
|
|
return list(cached_tags)[0]
|
2014-11-12 19:03:07 +00:00
|
|
|
|
|
|
|
return None
|