Page MenuHomeSoftware Heritage

identifiers.py
No OneTemporary

identifiers.py

# Copyright (C) 2017-2020 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU Affero General Public License version 3, or any later version
# See top-level LICENSE file for more information
from django.shortcuts import redirect
from swh.web.common.identifiers import resolve_swh_persistent_id
from swh.web.common.exc import handle_view_exception
def swh_id_browse(request, swh_id):
"""
Django view enabling to browse the archive using
:ref:`SWHIDs <persistent-identifiers>`.
The url that points to it is :http:get:`/(swh_id)/`.
"""
try:
swh_id_resolved = resolve_swh_persistent_id(swh_id, query_params=request.GET)
except Exception as exc:
return handle_view_exception(request, exc)
return redirect(swh_id_resolved["browse_url"])

File Metadata

Mime Type
text/x-python
Expires
Mon, Aug 18, 11:28 PM (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3321863

Event Timeline