2017-06-02 22:30:51 +00:00
|
|
|
import features
|
|
|
|
|
2018-06-05 21:31:11 +00:00
|
|
|
from flask import jsonify
|
2015-09-29 19:53:38 +00:00
|
|
|
|
2018-06-19 17:27:16 +00:00
|
|
|
from app import model_cache
|
|
|
|
from auth.auth_context import get_authenticated_user, get_authenticated_context
|
2018-01-05 21:27:03 +00:00
|
|
|
from auth.registry_jwt_auth import process_registry_jwt_auth
|
2018-06-19 17:27:16 +00:00
|
|
|
from data.cache import cache_key
|
2015-09-29 19:53:38 +00:00
|
|
|
from endpoints.decorators import anon_protect
|
2016-08-02 00:48:00 +00:00
|
|
|
from endpoints.v2 import v2_bp, paginate
|
2018-06-19 17:27:16 +00:00
|
|
|
from endpoints.v2.models_interface import Repository
|
2017-06-26 22:10:39 +00:00
|
|
|
from endpoints.v2.models_pre_oci import data_model as model
|
2015-09-29 19:53:38 +00:00
|
|
|
|
2017-06-26 22:16:15 +00:00
|
|
|
|
2015-09-29 19:53:38 +00:00
|
|
|
@v2_bp.route('/_catalog', methods=['GET'])
|
2016-03-09 23:09:20 +00:00
|
|
|
@process_registry_jwt_auth()
|
2015-09-29 19:53:38 +00:00
|
|
|
@anon_protect
|
2016-08-02 00:48:00 +00:00
|
|
|
@paginate()
|
2018-06-18 20:11:26 +00:00
|
|
|
def catalog_search(start_id, limit, pagination_callback):
|
2018-06-19 17:27:16 +00:00
|
|
|
def _load_catalog():
|
|
|
|
include_public = bool(features.PUBLIC_CATALOG)
|
|
|
|
if not include_public and not get_authenticated_user():
|
|
|
|
return []
|
2018-06-05 21:31:00 +00:00
|
|
|
|
2018-06-19 17:27:16 +00:00
|
|
|
username = get_authenticated_user().username if get_authenticated_user() else None
|
|
|
|
if username and not get_authenticated_user().enabled:
|
|
|
|
return []
|
|
|
|
|
|
|
|
repos = model.get_visible_repositories(username, start_id, limit, include_public=include_public)
|
|
|
|
return [repo._asdict() for repo in repos]
|
|
|
|
|
|
|
|
context_key = get_authenticated_context().unique_key if get_authenticated_context() else None
|
|
|
|
catalog_cache_key = cache_key.for_catalog_page(context_key, start_id, limit)
|
|
|
|
visible_repositories = [Repository(**repo_dict) for repo_dict
|
|
|
|
in model_cache.retrieve(catalog_cache_key, _load_catalog)]
|
2018-06-05 21:31:00 +00:00
|
|
|
|
2015-09-29 19:53:38 +00:00
|
|
|
response = jsonify({
|
2016-07-26 22:41:51 +00:00
|
|
|
'repositories': ['%s/%s' % (repo.namespace_name, repo.name)
|
2018-06-18 20:11:26 +00:00
|
|
|
for repo in visible_repositories][0:limit],
|
|
|
|
})
|
2015-09-29 19:53:38 +00:00
|
|
|
|
2018-06-18 20:11:26 +00:00
|
|
|
pagination_callback(visible_repositories, response)
|
2015-09-29 19:53:38 +00:00
|
|
|
return response
|