2017-03-16 17:36:59 +00:00
|
|
|
from datetime import datetime
|
2015-07-15 21:25:41 +00:00
|
|
|
from uuid import uuid4
|
2015-07-06 19:00:07 +00:00
|
|
|
|
2015-12-03 21:19:22 +00:00
|
|
|
from data.model import (tag, _basequery, BlobDoesNotExist, InvalidBlobUpload, db_transaction,
|
|
|
|
storage as storage_model, InvalidImageException)
|
2016-06-02 19:57:59 +00:00
|
|
|
from data.database import (Repository, Namespace, ImageStorage, Image, ImageStoragePlacement,
|
2017-03-16 17:36:59 +00:00
|
|
|
BlobUpload, ImageStorageLocation, db_random_func)
|
2015-07-06 19:00:07 +00:00
|
|
|
|
|
|
|
|
2015-07-15 21:25:41 +00:00
|
|
|
def get_repo_blob_by_digest(namespace, repo_name, blob_digest):
|
|
|
|
""" Find the content-addressable blob linked to the specified repository.
|
|
|
|
"""
|
2015-12-03 21:19:22 +00:00
|
|
|
try:
|
|
|
|
storage_id_query = (ImageStorage
|
2015-12-30 22:20:40 +00:00
|
|
|
.select(ImageStorage.id)
|
|
|
|
.join(Image)
|
|
|
|
.join(Repository)
|
|
|
|
.join(Namespace, on=(Namespace.id == Repository.namespace_user))
|
|
|
|
.where(Repository.name == repo_name, Namespace.username == namespace,
|
|
|
|
ImageStorage.content_checksum == blob_digest,
|
|
|
|
ImageStorage.uploading == False)
|
|
|
|
.limit(1))
|
2015-07-06 19:00:07 +00:00
|
|
|
|
2015-12-03 21:19:22 +00:00
|
|
|
return storage_model.get_storage_by_subquery(storage_id_query)
|
|
|
|
except InvalidImageException:
|
|
|
|
raise BlobDoesNotExist('Blob does not exist with digest: {0}'.format(blob_digest))
|
2015-07-15 21:25:41 +00:00
|
|
|
|
2015-08-12 20:39:32 +00:00
|
|
|
|
2015-08-14 16:51:04 +00:00
|
|
|
def store_blob_record_and_temp_link(namespace, repo_name, blob_digest, location_obj, byte_count,
|
2015-11-30 19:25:01 +00:00
|
|
|
link_expiration_s, uncompressed_byte_count=None):
|
2015-07-15 21:25:41 +00:00
|
|
|
""" Store a record of the blob and temporarily link it to the specified repository.
|
|
|
|
"""
|
|
|
|
random_image_name = str(uuid4())
|
2015-08-12 20:39:32 +00:00
|
|
|
with db_transaction():
|
2015-07-15 21:25:41 +00:00
|
|
|
repo = _basequery.get_existing_repository(namespace, repo_name)
|
|
|
|
try:
|
2015-11-04 21:18:53 +00:00
|
|
|
storage = ImageStorage.get(content_checksum=blob_digest)
|
2015-08-14 16:51:04 +00:00
|
|
|
storage.image_size = byte_count
|
2016-03-29 18:16:56 +00:00
|
|
|
|
|
|
|
if uncompressed_byte_count is not None:
|
|
|
|
storage.uncompressed_size = uncompressed_byte_count
|
|
|
|
|
2015-08-14 16:51:04 +00:00
|
|
|
storage.save()
|
|
|
|
|
2015-08-12 20:39:32 +00:00
|
|
|
ImageStoragePlacement.get(storage=storage, location=location_obj)
|
2015-07-15 21:25:41 +00:00
|
|
|
except ImageStorage.DoesNotExist:
|
2015-11-06 23:18:29 +00:00
|
|
|
storage = ImageStorage.create(content_checksum=blob_digest, uploading=False,
|
2016-03-29 18:16:56 +00:00
|
|
|
image_size=byte_count,
|
|
|
|
uncompressed_size=uncompressed_byte_count)
|
2015-08-12 20:39:32 +00:00
|
|
|
ImageStoragePlacement.create(storage=storage, location=location_obj)
|
2015-07-15 21:25:41 +00:00
|
|
|
except ImageStoragePlacement.DoesNotExist:
|
2015-08-12 20:39:32 +00:00
|
|
|
ImageStoragePlacement.create(storage=storage, location=location_obj)
|
2015-07-06 19:00:07 +00:00
|
|
|
|
2015-07-15 21:25:41 +00:00
|
|
|
# Create a temporary link into the repository, to be replaced by the v1 metadata later
|
|
|
|
# and create a temporary tag to reference it
|
|
|
|
image = Image.create(storage=storage, docker_image_id=random_image_name, repository=repo)
|
|
|
|
tag.create_temporary_hidden_tag(repo, image, link_expiration_s)
|
2015-08-12 20:39:32 +00:00
|
|
|
|
2015-12-30 22:19:19 +00:00
|
|
|
return storage
|
|
|
|
|
2015-08-12 20:39:32 +00:00
|
|
|
|
2017-03-16 17:36:59 +00:00
|
|
|
def get_stale_blob_upload(stale_timespan):
|
|
|
|
""" Returns a random blob upload which was created before the stale timespan. """
|
|
|
|
stale_threshold = datetime.now() - stale_timespan
|
|
|
|
|
|
|
|
try:
|
|
|
|
candidates = (BlobUpload
|
|
|
|
.select()
|
|
|
|
.where(BlobUpload.created <= stale_threshold)
|
|
|
|
.limit(500)
|
|
|
|
.distinct()
|
|
|
|
.alias('candidates'))
|
|
|
|
|
|
|
|
found = (BlobUpload
|
|
|
|
.select(candidates.c.id)
|
|
|
|
.from_(candidates)
|
|
|
|
.order_by(db_random_func())
|
|
|
|
.get())
|
|
|
|
if not found:
|
|
|
|
return None
|
|
|
|
|
|
|
|
return (BlobUpload
|
|
|
|
.select(BlobUpload, ImageStorageLocation)
|
|
|
|
.join(ImageStorageLocation)
|
|
|
|
.where(BlobUpload.id == found.id)
|
|
|
|
.get())
|
2017-07-11 13:58:09 +00:00
|
|
|
except BlobUpload.DoesNotExist:
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def get_blob_upload_by_uuid(upload_uuid):
|
|
|
|
""" Loads the upload with the given UUID, if any. """
|
|
|
|
try:
|
|
|
|
return (BlobUpload
|
|
|
|
.select()
|
|
|
|
.where(BlobUpload.uuid == upload_uuid)
|
|
|
|
.get())
|
2017-03-16 17:36:59 +00:00
|
|
|
except BlobUpload.DoesNotExist:
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2015-08-12 20:39:32 +00:00
|
|
|
def get_blob_upload(namespace, repo_name, upload_uuid):
|
|
|
|
""" Load the upload which is already in progress.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
return (BlobUpload
|
2016-08-16 19:23:00 +00:00
|
|
|
.select(BlobUpload, ImageStorageLocation)
|
|
|
|
.join(ImageStorageLocation)
|
|
|
|
.switch(BlobUpload)
|
2015-08-12 20:39:32 +00:00
|
|
|
.join(Repository)
|
|
|
|
.join(Namespace, on=(Namespace.id == Repository.namespace_user))
|
|
|
|
.where(Repository.name == repo_name, Namespace.username == namespace,
|
|
|
|
BlobUpload.uuid == upload_uuid)
|
|
|
|
.get())
|
|
|
|
except BlobUpload.DoesNotExist:
|
|
|
|
raise InvalidBlobUpload()
|
|
|
|
|
|
|
|
|
2015-08-26 21:08:42 +00:00
|
|
|
def initiate_upload(namespace, repo_name, uuid, location_name, storage_metadata):
|
2015-08-12 20:39:32 +00:00
|
|
|
repo = _basequery.get_existing_repository(namespace, repo_name)
|
2016-06-02 19:57:59 +00:00
|
|
|
location = storage_model.get_image_location_for_name(location_name)
|
|
|
|
return BlobUpload.create(repository=repo, location=location.id, uuid=uuid,
|
2015-08-26 21:08:42 +00:00
|
|
|
storage_metadata=storage_metadata)
|