2015-05-14 20:47:38 +00:00
|
|
|
""" Manage the tags of a repository. """
|
|
|
|
|
2015-04-15 19:21:09 +00:00
|
|
|
from flask import request, abort
|
2014-03-26 23:42:29 +00:00
|
|
|
|
2017-06-27 14:01:20 +00:00
|
|
|
from auth.auth_context import get_authenticated_user
|
2017-07-06 18:50:30 +00:00
|
|
|
from data.model import DataModelException
|
2017-06-27 18:24:23 +00:00
|
|
|
from endpoints.api import (resource, nickname, require_repo_read, require_repo_write,
|
|
|
|
RepositoryParamResource, log_action, validate_json_request, path_param,
|
|
|
|
parse_args, query_param, truthy_bool, disallow_for_app_repositories)
|
2017-07-06 18:50:30 +00:00
|
|
|
from endpoints.api.tag_models_interface import Repository
|
|
|
|
from endpoints.api.tag_models_pre_oci import pre_oci_model as model
|
2017-06-27 14:01:20 +00:00
|
|
|
from endpoints.exception import NotFound
|
2017-05-02 19:47:59 +00:00
|
|
|
from endpoints.v2.manifest import _generate_and_store_manifest
|
2015-10-05 20:36:33 +00:00
|
|
|
from util.names import TAG_ERROR, TAG_REGEX
|
2014-03-14 17:06:58 +00:00
|
|
|
|
2015-04-15 19:21:09 +00:00
|
|
|
|
2016-01-21 20:40:51 +00:00
|
|
|
@resource('/v1/repository/<apirepopath:repository>/tag/')
|
2015-04-15 19:21:09 +00:00
|
|
|
@path_param('repository', 'The full path of the repository. e.g. namespace/name')
|
|
|
|
class ListRepositoryTags(RepositoryParamResource):
|
2015-06-30 08:38:58 +00:00
|
|
|
""" Resource for listing full repository tag history, alive *and dead*. """
|
2015-04-15 19:21:09 +00:00
|
|
|
|
2015-08-05 21:07:35 +00:00
|
|
|
@require_repo_read
|
2017-03-22 18:30:13 +00:00
|
|
|
@disallow_for_app_repositories
|
2016-01-26 21:27:36 +00:00
|
|
|
@parse_args()
|
2015-04-16 21:18:00 +00:00
|
|
|
@query_param('specificTag', 'Filters the tags to the specific tag.', type=str, default='')
|
2017-05-04 15:33:36 +00:00
|
|
|
@query_param('limit', 'Limit to the number of results to return per page. Max 100.', type=int,
|
|
|
|
default=50)
|
2015-06-30 08:38:58 +00:00
|
|
|
@query_param('page', 'Page index for the results. Default 1.', type=int, default=1)
|
2015-04-15 19:21:09 +00:00
|
|
|
@nickname('listRepoTags')
|
2016-01-26 21:27:36 +00:00
|
|
|
def get(self, namespace, repository, parsed_args):
|
|
|
|
specific_tag = parsed_args.get('specificTag') or None
|
|
|
|
page = max(1, parsed_args.get('page', 1))
|
|
|
|
limit = min(100, max(1, parsed_args.get('limit', 50)))
|
2017-06-27 14:01:20 +00:00
|
|
|
|
2017-07-06 18:50:30 +00:00
|
|
|
tag_history = model.list_repository_tag_history(namespace_name=namespace,
|
2017-07-10 13:46:02 +00:00
|
|
|
repository_name=repository, page=page,
|
|
|
|
size=limit, specific_tag=specific_tag)
|
2017-06-27 14:01:20 +00:00
|
|
|
|
|
|
|
if not tag_history:
|
|
|
|
raise NotFound()
|
2015-06-30 08:38:58 +00:00
|
|
|
|
|
|
|
return {
|
2017-07-10 18:45:23 +00:00
|
|
|
'tags': [tag.to_dict() for tag in tag_history.tags],
|
2015-06-30 08:38:58 +00:00
|
|
|
'page': page,
|
2017-06-27 14:01:20 +00:00
|
|
|
'has_additional': tag_history.more,
|
2015-06-30 08:38:58 +00:00
|
|
|
}
|
2015-04-15 19:21:09 +00:00
|
|
|
|
2014-03-14 17:06:58 +00:00
|
|
|
|
2016-01-21 20:40:51 +00:00
|
|
|
@resource('/v1/repository/<apirepopath:repository>/tag/<tag>')
|
2014-08-19 23:05:28 +00:00
|
|
|
@path_param('repository', 'The full path of the repository. e.g. namespace/name')
|
|
|
|
@path_param('tag', 'The name of the tag')
|
2014-03-14 17:06:58 +00:00
|
|
|
class RepositoryTag(RepositoryParamResource):
|
|
|
|
""" Resource for managing repository tags. """
|
2014-03-26 23:42:29 +00:00
|
|
|
schemas = {
|
|
|
|
'MoveTag': {
|
|
|
|
'type': 'object',
|
|
|
|
'description': 'Description of to which image a new or existing tag should point',
|
2017-07-10 13:46:02 +00:00
|
|
|
'required': ['image',],
|
2014-03-26 23:42:29 +00:00
|
|
|
'properties': {
|
|
|
|
'image': {
|
|
|
|
'type': 'string',
|
|
|
|
'description': 'Image identifier to which the tag should point',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
@require_repo_write
|
2017-03-22 18:30:13 +00:00
|
|
|
@disallow_for_app_repositories
|
2014-03-26 23:42:29 +00:00
|
|
|
@nickname('changeTagImage')
|
|
|
|
@validate_json_request('MoveTag')
|
|
|
|
def put(self, namespace, repository, tag):
|
|
|
|
""" Change which image a tag points to or create a new tag."""
|
2015-10-05 20:36:33 +00:00
|
|
|
|
|
|
|
if not TAG_REGEX.match(tag):
|
|
|
|
abort(400, TAG_ERROR)
|
|
|
|
|
2014-03-26 23:42:29 +00:00
|
|
|
image_id = request.get_json()['image']
|
2017-07-06 18:50:30 +00:00
|
|
|
repo = model.get_repo(namespace, repository, image_id)
|
|
|
|
if not repo:
|
2014-03-26 23:42:29 +00:00
|
|
|
raise NotFound()
|
2014-11-24 21:07:38 +00:00
|
|
|
|
2017-07-06 18:50:30 +00:00
|
|
|
original_image_id = model.get_repo_tag_image(repo, tag)
|
|
|
|
model.create_or_update_tag(namespace, repository, tag, image_id)
|
2014-03-26 23:42:29 +00:00
|
|
|
|
|
|
|
username = get_authenticated_user().username
|
2017-05-04 15:33:36 +00:00
|
|
|
log_action('move_tag' if original_image_id else 'create_tag', namespace, {
|
|
|
|
'username': username,
|
|
|
|
'repo': repository,
|
|
|
|
'tag': tag,
|
|
|
|
'namespace': namespace,
|
|
|
|
'image': image_id,
|
|
|
|
'original_image': original_image_id
|
2017-07-10 18:45:23 +00:00
|
|
|
}, repo_name=repository)
|
2017-05-02 19:47:59 +00:00
|
|
|
|
2017-05-03 20:48:12 +00:00
|
|
|
_generate_and_store_manifest(namespace, repository, tag)
|
2014-03-26 23:42:29 +00:00
|
|
|
|
|
|
|
return 'Updated', 201
|
2014-03-14 17:06:58 +00:00
|
|
|
|
2014-03-26 23:42:29 +00:00
|
|
|
@require_repo_write
|
2017-03-22 18:30:13 +00:00
|
|
|
@disallow_for_app_repositories
|
2014-03-14 17:06:58 +00:00
|
|
|
@nickname('deleteFullTag')
|
|
|
|
def delete(self, namespace, repository, tag):
|
|
|
|
""" Delete the specified repository tag. """
|
2017-07-06 18:50:30 +00:00
|
|
|
model.delete_tag(namespace, repository, tag)
|
2014-03-14 17:06:58 +00:00
|
|
|
|
|
|
|
username = get_authenticated_user().username
|
|
|
|
log_action('delete_tag', namespace,
|
2017-05-04 15:33:36 +00:00
|
|
|
{'username': username,
|
|
|
|
'repo': repository,
|
|
|
|
'namespace': namespace,
|
2017-07-10 18:45:23 +00:00
|
|
|
'tag': tag}, repo_name=repository)
|
2014-03-14 17:06:58 +00:00
|
|
|
|
2016-12-06 21:26:28 +00:00
|
|
|
return '', 204
|
2014-03-14 17:06:58 +00:00
|
|
|
|
|
|
|
|
2016-01-21 20:40:51 +00:00
|
|
|
@resource('/v1/repository/<apirepopath:repository>/tag/<tag>/images')
|
2014-08-19 23:05:28 +00:00
|
|
|
@path_param('repository', 'The full path of the repository. e.g. namespace/name')
|
|
|
|
@path_param('tag', 'The name of the tag')
|
2014-03-14 17:06:58 +00:00
|
|
|
class RepositoryTagImages(RepositoryParamResource):
|
|
|
|
""" Resource for listing the images in a specific repository tag. """
|
2017-05-04 15:33:36 +00:00
|
|
|
|
2014-03-14 17:06:58 +00:00
|
|
|
@require_repo_read
|
|
|
|
@nickname('listTagImages')
|
2017-03-22 18:30:13 +00:00
|
|
|
@disallow_for_app_repositories
|
2016-01-26 21:27:36 +00:00
|
|
|
@parse_args()
|
2015-11-03 23:15:23 +00:00
|
|
|
@query_param('owned', 'If specified, only images wholely owned by this tag are returned.',
|
|
|
|
type=truthy_bool, default=False)
|
2016-01-26 21:27:36 +00:00
|
|
|
def get(self, namespace, repository, tag, parsed_args):
|
2014-03-14 17:06:58 +00:00
|
|
|
""" List the images for the specified repository tag. """
|
|
|
|
try:
|
2017-07-10 13:46:02 +00:00
|
|
|
tag_image = model.get_repo_tag_image(
|
|
|
|
Repository(namespace_name=namespace, repository_name=repository), tag)
|
2017-07-06 18:50:30 +00:00
|
|
|
except DataModelException:
|
2014-03-17 20:57:35 +00:00
|
|
|
raise NotFound()
|
2014-03-14 17:06:58 +00:00
|
|
|
|
2017-07-10 18:45:23 +00:00
|
|
|
if tag_image is None:
|
|
|
|
raise NotFound()
|
|
|
|
|
2017-07-06 18:50:30 +00:00
|
|
|
parent_images = model.get_parent_images(namespace, repository, tag_image.docker_image_id)
|
|
|
|
image_map = {str(tag_image.docker_image_id): tag_image}
|
2015-11-03 23:15:23 +00:00
|
|
|
|
2014-09-18 21:16:10 +00:00
|
|
|
for image in parent_images:
|
2017-07-06 18:50:30 +00:00
|
|
|
image_map[str(image.docker_image_id)] = image
|
2014-03-14 17:06:58 +00:00
|
|
|
|
2015-11-03 23:15:23 +00:00
|
|
|
image_map_all = dict(image_map)
|
2015-11-06 22:47:08 +00:00
|
|
|
all_images = [tag_image] + list(parent_images)
|
2014-03-14 17:06:58 +00:00
|
|
|
|
2015-11-03 23:15:23 +00:00
|
|
|
# Filter the images returned to those not found in the ancestry of any of the other tags in
|
|
|
|
# the repository.
|
2016-01-26 21:27:36 +00:00
|
|
|
if parsed_args['owned']:
|
2017-07-06 18:50:30 +00:00
|
|
|
all_tags = model.list_repository_tags(namespace, repository)
|
2015-11-03 23:15:23 +00:00
|
|
|
for current_tag in all_tags:
|
|
|
|
if current_tag.name == tag:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Remove the tag's image ID.
|
2017-07-06 18:50:30 +00:00
|
|
|
tag_image_id = str(current_tag.docker_image_id)
|
2015-11-03 23:15:23 +00:00
|
|
|
image_map.pop(tag_image_id, None)
|
|
|
|
|
|
|
|
# Remove any ancestors:
|
|
|
|
for ancestor_id in current_tag.image.ancestors.split('/'):
|
|
|
|
image_map.pop(ancestor_id, None)
|
|
|
|
|
2014-03-14 17:06:58 +00:00
|
|
|
return {
|
2017-05-04 15:33:36 +00:00
|
|
|
'images': [
|
2017-07-10 18:45:23 +00:00
|
|
|
image.to_dict(image_map_all) for image in all_images
|
2017-07-06 18:50:30 +00:00
|
|
|
if not parsed_args['owned'] or (str(image.docker_image_id) in image_map)
|
2017-05-04 15:33:36 +00:00
|
|
|
]
|
2014-03-14 17:06:58 +00:00
|
|
|
}
|
2015-04-16 21:18:00 +00:00
|
|
|
|
|
|
|
|
2017-03-03 22:23:23 +00:00
|
|
|
@resource('/v1/repository/<apirepopath:repository>/tag/<tag>/restore')
|
2015-04-16 21:18:00 +00:00
|
|
|
@path_param('repository', 'The full path of the repository. e.g. namespace/name')
|
|
|
|
@path_param('tag', 'The name of the tag')
|
2017-03-03 22:23:23 +00:00
|
|
|
class RestoreTag(RepositoryParamResource):
|
|
|
|
""" Resource for restoring a repository tag back to a previous image. """
|
2015-04-16 21:18:00 +00:00
|
|
|
schemas = {
|
2017-03-03 22:23:23 +00:00
|
|
|
'RestoreTag': {
|
2015-04-16 21:18:00 +00:00
|
|
|
'type': 'object',
|
2017-03-03 22:23:23 +00:00
|
|
|
'description': 'Restores a tag to a specific image',
|
2017-07-10 13:46:02 +00:00
|
|
|
'required': ['image',],
|
2015-04-16 21:18:00 +00:00
|
|
|
'properties': {
|
|
|
|
'image': {
|
|
|
|
'type': 'string',
|
|
|
|
'description': 'Image identifier to which the tag should point',
|
|
|
|
},
|
2017-03-03 22:23:23 +00:00
|
|
|
'manifest_digest': {
|
|
|
|
'type': 'string',
|
|
|
|
'description': 'If specified, the manifest digest that should be used',
|
|
|
|
},
|
2015-04-16 21:18:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
@require_repo_write
|
2017-03-22 18:30:13 +00:00
|
|
|
@disallow_for_app_repositories
|
2017-03-03 22:23:23 +00:00
|
|
|
@nickname('restoreTag')
|
|
|
|
@validate_json_request('RestoreTag')
|
2015-04-16 21:18:00 +00:00
|
|
|
def post(self, namespace, repository, tag):
|
2017-03-03 22:23:23 +00:00
|
|
|
""" Restores a repository tag back to a previous image in the repository. """
|
2015-04-16 21:18:00 +00:00
|
|
|
|
2017-03-03 22:23:23 +00:00
|
|
|
# Restore the tag back to the previous image.
|
2015-04-16 21:18:00 +00:00
|
|
|
image_id = request.get_json()['image']
|
2017-03-03 22:23:23 +00:00
|
|
|
manifest_digest = request.get_json().get('manifest_digest', None)
|
2015-04-16 21:18:00 +00:00
|
|
|
|
2017-05-02 20:13:21 +00:00
|
|
|
# Data for logging the reversion/restoration.
|
2015-04-16 21:18:00 +00:00
|
|
|
username = get_authenticated_user().username
|
2017-03-03 22:23:23 +00:00
|
|
|
log_data = {
|
|
|
|
'username': username,
|
|
|
|
'repo': repository,
|
|
|
|
'tag': tag,
|
|
|
|
'image': image_id,
|
|
|
|
}
|
2017-07-06 18:50:30 +00:00
|
|
|
repo = Repository(namespace, repository)
|
2017-05-02 20:13:21 +00:00
|
|
|
if manifest_digest is not None:
|
2017-07-06 18:50:30 +00:00
|
|
|
existing_image = model.restore_tag_to_manifest(repo, tag, manifest_digest)
|
2017-05-02 20:13:21 +00:00
|
|
|
else:
|
2017-07-06 18:50:30 +00:00
|
|
|
existing_image = model.restore_tag_to_image(repo, tag, image_id)
|
2017-05-03 20:48:12 +00:00
|
|
|
_generate_and_store_manifest(namespace, repository, tag)
|
2017-05-02 20:13:21 +00:00
|
|
|
|
2017-03-03 22:23:23 +00:00
|
|
|
if existing_image is not None:
|
|
|
|
log_data['original_image'] = existing_image.docker_image_id
|
|
|
|
|
2017-07-10 18:45:23 +00:00
|
|
|
log_action('revert_tag', namespace, log_data, repo_name=repository)
|
2015-04-16 21:18:00 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
'image_id': image_id,
|
2017-03-03 22:23:23 +00:00
|
|
|
'original_image_id': existing_image.docker_image_id if existing_image else None,
|
2015-04-16 21:18:00 +00:00
|
|
|
}
|