2024-04-25 10:56:22 +00:00
|
|
|
__package__ = 'archivebox.api'
|
|
|
|
|
2024-08-20 08:56:37 +00:00
|
|
|
import math
|
2024-04-25 10:56:22 +00:00
|
|
|
from uuid import UUID
|
2024-08-20 08:56:37 +00:00
|
|
|
from typing import List, Optional, Union, Any
|
2024-04-25 10:56:22 +00:00
|
|
|
from datetime import datetime
|
|
|
|
|
2024-05-13 15:52:02 +00:00
|
|
|
from django.db.models import Q
|
2024-04-25 10:56:22 +00:00
|
|
|
from django.shortcuts import get_object_or_404
|
2024-08-20 08:56:37 +00:00
|
|
|
from django.core.exceptions import ValidationError
|
|
|
|
from django.contrib.auth import get_user_model
|
2024-04-25 10:56:22 +00:00
|
|
|
|
|
|
|
from ninja import Router, Schema, FilterSchema, Field, Query
|
2024-08-20 08:56:37 +00:00
|
|
|
from ninja.pagination import paginate, PaginationBase
|
2024-04-25 10:56:22 +00:00
|
|
|
|
|
|
|
from core.models import Snapshot, ArchiveResult, Tag
|
2024-05-13 12:12:12 +00:00
|
|
|
from abid_utils.abid import ABID
|
2024-04-25 10:56:22 +00:00
|
|
|
|
|
|
|
router = Router(tags=['Core Models'])
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-08-20 08:56:37 +00:00
|
|
|
class CustomPagination(PaginationBase):
|
|
|
|
class Input(Schema):
|
|
|
|
limit: int = 200
|
|
|
|
offset: int = 0
|
|
|
|
page: int = 0
|
|
|
|
|
|
|
|
|
|
|
|
class Output(Schema):
|
|
|
|
total_items: int
|
|
|
|
total_pages: int
|
|
|
|
page: int
|
|
|
|
limit: int
|
|
|
|
offset: int
|
|
|
|
num_items: int
|
|
|
|
items: List[Any]
|
|
|
|
|
|
|
|
def paginate_queryset(self, queryset, pagination: Input, **params):
|
|
|
|
limit = min(pagination.limit, 500)
|
|
|
|
offset = pagination.offset or (pagination.page * limit)
|
|
|
|
total = queryset.count()
|
|
|
|
total_pages = math.ceil(total / limit)
|
|
|
|
current_page = math.ceil(offset / (limit + 1))
|
|
|
|
items = queryset[offset : offset + limit]
|
|
|
|
return {
|
|
|
|
'total_items': total,
|
|
|
|
'total_pages': total_pages,
|
|
|
|
'page': current_page,
|
|
|
|
'limit': limit,
|
|
|
|
'offset': offset,
|
|
|
|
'num_items': len(items),
|
|
|
|
'items': items,
|
|
|
|
}
|
|
|
|
|
2024-04-25 10:56:22 +00:00
|
|
|
|
|
|
|
### ArchiveResult #########################################################################
|
|
|
|
|
|
|
|
class ArchiveResultSchema(Schema):
|
2024-08-20 08:56:37 +00:00
|
|
|
TYPE: str = 'core.models.ArchiveResult'
|
|
|
|
|
2024-08-18 06:03:43 +00:00
|
|
|
id: UUID
|
2024-08-20 03:00:04 +00:00
|
|
|
old_id: int
|
|
|
|
abid: str
|
2024-08-18 06:03:43 +00:00
|
|
|
|
2024-05-13 15:52:02 +00:00
|
|
|
modified: datetime
|
|
|
|
created: datetime
|
|
|
|
created_by_id: str
|
2024-08-20 08:56:37 +00:00
|
|
|
created_by_username: str
|
2024-05-13 12:12:12 +00:00
|
|
|
|
|
|
|
snapshot_abid: str
|
2024-08-20 08:56:37 +00:00
|
|
|
snapshot_timestamp: str
|
2024-04-25 10:56:22 +00:00
|
|
|
snapshot_url: str
|
|
|
|
snapshot_tags: str
|
|
|
|
|
|
|
|
extractor: str
|
2024-08-18 04:56:23 +00:00
|
|
|
cmd_version: Optional[str]
|
2024-04-25 10:56:22 +00:00
|
|
|
cmd: List[str]
|
|
|
|
pwd: str
|
|
|
|
status: str
|
2024-05-13 15:52:02 +00:00
|
|
|
output: str
|
2024-04-25 10:56:22 +00:00
|
|
|
|
2024-05-13 15:52:02 +00:00
|
|
|
@staticmethod
|
|
|
|
def resolve_created_by_id(obj):
|
|
|
|
return str(obj.created_by_id)
|
2024-08-20 08:56:37 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def resolve_created_by_username(obj):
|
|
|
|
User = get_user_model()
|
|
|
|
return User.objects.get(id=obj.created_by_id).username
|
2024-04-25 10:56:22 +00:00
|
|
|
|
|
|
|
@staticmethod
|
2024-05-13 12:12:12 +00:00
|
|
|
def resolve_pk(obj):
|
|
|
|
return str(obj.pk)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def resolve_uuid(obj):
|
|
|
|
return str(obj.uuid)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def resolve_abid(obj):
|
|
|
|
return str(obj.ABID)
|
2024-04-25 10:56:22 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def resolve_created(obj):
|
|
|
|
return obj.start_ts
|
|
|
|
|
2024-08-20 08:56:37 +00:00
|
|
|
@staticmethod
|
|
|
|
def resolve_snapshot_timestamp(obj):
|
|
|
|
return obj.snapshot.timestamp
|
|
|
|
|
2024-04-25 10:56:22 +00:00
|
|
|
@staticmethod
|
|
|
|
def resolve_snapshot_url(obj):
|
|
|
|
return obj.snapshot.url
|
|
|
|
|
2024-05-13 12:12:12 +00:00
|
|
|
@staticmethod
|
|
|
|
def resolve_snapshot_abid(obj):
|
|
|
|
return str(obj.snapshot.ABID)
|
|
|
|
|
2024-04-25 10:56:22 +00:00
|
|
|
@staticmethod
|
|
|
|
def resolve_snapshot_tags(obj):
|
|
|
|
return obj.snapshot.tags_str()
|
|
|
|
|
|
|
|
|
|
|
|
class ArchiveResultFilterSchema(FilterSchema):
|
2024-08-20 08:56:37 +00:00
|
|
|
id: Optional[str] = Field(None, q=['id__startswith', 'abid__icontains', 'old_id__startswith', 'snapshot__id__startswith', 'snapshot__abid__icontains', 'snapshot__timestamp__startswith'])
|
2024-04-25 10:56:22 +00:00
|
|
|
|
2024-08-20 08:56:37 +00:00
|
|
|
search: Optional[str] = Field(None, q=['snapshot__url__icontains', 'snapshot__title__icontains', 'snapshot__tags__name__icontains', 'extractor', 'output__icontains', 'id__startswith', 'abid__icontains', 'old_id__startswith', 'snapshot__id__startswith', 'snapshot__abid__icontains', 'snapshot__timestamp__startswith'])
|
|
|
|
snapshot_id: Optional[str] = Field(None, q=['snapshot__id__startswith', 'snapshot__abid__icontains', 'snapshot__timestamp__startswith'])
|
2024-05-13 15:52:02 +00:00
|
|
|
snapshot_url: Optional[str] = Field(None, q='snapshot__url__icontains')
|
|
|
|
snapshot_tag: Optional[str] = Field(None, q='snapshot__tags__name__icontains')
|
2024-04-25 10:56:22 +00:00
|
|
|
|
|
|
|
status: Optional[str] = Field(None, q='status')
|
|
|
|
output: Optional[str] = Field(None, q='output__icontains')
|
|
|
|
extractor: Optional[str] = Field(None, q='extractor__icontains')
|
|
|
|
cmd: Optional[str] = Field(None, q='cmd__0__icontains')
|
|
|
|
pwd: Optional[str] = Field(None, q='pwd__icontains')
|
|
|
|
cmd_version: Optional[str] = Field(None, q='cmd_version')
|
|
|
|
|
|
|
|
created: Optional[datetime] = Field(None, q='updated')
|
|
|
|
created__gte: Optional[datetime] = Field(None, q='updated__gte')
|
|
|
|
created__lt: Optional[datetime] = Field(None, q='updated__lt')
|
|
|
|
|
|
|
|
|
2024-08-18 04:56:23 +00:00
|
|
|
@router.get("/archiveresults", response=List[ArchiveResultSchema], url_name="get_archiveresult")
|
2024-08-20 08:56:37 +00:00
|
|
|
@paginate(CustomPagination)
|
2024-08-18 04:56:23 +00:00
|
|
|
def get_archiveresults(request, filters: ArchiveResultFilterSchema = Query(...)):
|
2024-05-13 15:52:02 +00:00
|
|
|
"""List all ArchiveResult entries matching these filters."""
|
2024-04-25 10:56:22 +00:00
|
|
|
qs = ArchiveResult.objects.all()
|
2024-08-20 08:56:37 +00:00
|
|
|
results = filters.filter(qs).distinct()
|
2024-04-25 10:56:22 +00:00
|
|
|
return results
|
|
|
|
|
|
|
|
|
2024-08-18 04:56:23 +00:00
|
|
|
@router.get("/archiveresult/{archiveresult_id}", response=ArchiveResultSchema, url_name="get_archiveresult")
|
2024-04-25 10:56:22 +00:00
|
|
|
def get_archiveresult(request, archiveresult_id: str):
|
2024-08-18 06:03:43 +00:00
|
|
|
"""Get a specific ArchiveResult by pk, abid, or old_id."""
|
2024-08-20 03:00:04 +00:00
|
|
|
return ArchiveResult.objects.get(Q(id__icontains=archiveresult_id) | Q(abid__icontains=archiveresult_id) | Q(old_id__icontains=archiveresult_id))
|
2024-04-25 10:56:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
# @router.post("/archiveresult", response=ArchiveResultSchema)
|
|
|
|
# def create_archiveresult(request, payload: ArchiveResultSchema):
|
|
|
|
# archiveresult = ArchiveResult.objects.create(**payload.dict())
|
|
|
|
# return archiveresult
|
|
|
|
#
|
|
|
|
# @router.put("/archiveresult/{archiveresult_id}", response=ArchiveResultSchema)
|
|
|
|
# def update_archiveresult(request, archiveresult_id: str, payload: ArchiveResultSchema):
|
|
|
|
# archiveresult = get_object_or_404(ArchiveResult, id=archiveresult_id)
|
|
|
|
#
|
|
|
|
# for attr, value in payload.dict().items():
|
|
|
|
# setattr(archiveresult, attr, value)
|
|
|
|
# archiveresult.save()
|
|
|
|
#
|
|
|
|
# return archiveresult
|
|
|
|
#
|
|
|
|
# @router.delete("/archiveresult/{archiveresult_id}")
|
|
|
|
# def delete_archiveresult(request, archiveresult_id: str):
|
|
|
|
# archiveresult = get_object_or_404(ArchiveResult, id=archiveresult_id)
|
|
|
|
# archiveresult.delete()
|
|
|
|
# return {"success": True}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Snapshot #########################################################################
|
|
|
|
|
|
|
|
|
|
|
|
class SnapshotSchema(Schema):
|
2024-08-20 08:56:37 +00:00
|
|
|
TYPE: str = 'core.models.Snapshot'
|
|
|
|
|
2024-08-20 03:00:04 +00:00
|
|
|
id: UUID
|
|
|
|
old_id: UUID
|
2024-05-13 12:12:12 +00:00
|
|
|
abid: str
|
2024-08-20 03:00:04 +00:00
|
|
|
|
2024-05-13 15:52:02 +00:00
|
|
|
modified: datetime
|
|
|
|
created: datetime
|
|
|
|
created_by_id: str
|
2024-08-20 08:56:37 +00:00
|
|
|
created_by_username: str
|
2024-04-25 10:56:22 +00:00
|
|
|
|
|
|
|
url: str
|
|
|
|
tags: str
|
|
|
|
title: Optional[str]
|
|
|
|
timestamp: str
|
2024-05-13 15:52:02 +00:00
|
|
|
archive_path: str
|
|
|
|
|
2024-04-25 10:56:22 +00:00
|
|
|
bookmarked: datetime
|
|
|
|
added: datetime
|
2024-05-13 15:52:02 +00:00
|
|
|
updated: Optional[datetime]
|
2024-04-25 10:56:22 +00:00
|
|
|
|
2024-05-13 15:52:02 +00:00
|
|
|
num_archiveresults: int
|
2024-04-25 10:56:22 +00:00
|
|
|
archiveresults: List[ArchiveResultSchema]
|
|
|
|
|
2024-05-13 15:52:02 +00:00
|
|
|
@staticmethod
|
|
|
|
def resolve_created_by_id(obj):
|
|
|
|
return str(obj.created_by_id)
|
2024-08-20 08:56:37 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def resolve_created_by_username(obj):
|
|
|
|
User = get_user_model()
|
|
|
|
return User.objects.get(id=obj.created_by_id).username
|
2024-05-13 15:52:02 +00:00
|
|
|
|
2024-05-13 12:12:12 +00:00
|
|
|
@staticmethod
|
|
|
|
def resolve_pk(obj):
|
|
|
|
return str(obj.pk)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def resolve_uuid(obj):
|
|
|
|
return str(obj.uuid)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def resolve_abid(obj):
|
|
|
|
return str(obj.ABID)
|
2024-04-25 10:56:22 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def resolve_tags(obj):
|
|
|
|
return obj.tags_str()
|
|
|
|
|
2024-05-13 15:52:02 +00:00
|
|
|
@staticmethod
|
|
|
|
def resolve_num_archiveresults(obj, context):
|
|
|
|
return obj.archiveresult_set.all().distinct().count()
|
|
|
|
|
2024-04-25 10:56:22 +00:00
|
|
|
@staticmethod
|
|
|
|
def resolve_archiveresults(obj, context):
|
|
|
|
if context['request'].with_archiveresults:
|
|
|
|
return obj.archiveresult_set.all().distinct()
|
|
|
|
return ArchiveResult.objects.none()
|
|
|
|
|
|
|
|
|
|
|
|
class SnapshotFilterSchema(FilterSchema):
|
2024-08-20 08:56:37 +00:00
|
|
|
id: Optional[str] = Field(None, q=['id__icontains', 'abid__icontains', 'old_id__icontains', 'timestamp__startswith'])
|
|
|
|
|
2024-08-20 03:00:04 +00:00
|
|
|
old_id: Optional[str] = Field(None, q='old_id__icontains')
|
2024-05-13 15:52:02 +00:00
|
|
|
abid: Optional[str] = Field(None, q='abid__icontains')
|
2024-08-20 03:00:04 +00:00
|
|
|
|
2024-08-20 08:56:37 +00:00
|
|
|
created_by_id: str = Field(None, q='created_by_id')
|
|
|
|
created_by_username: str = Field(None, q='created_by__username__icontains')
|
2024-08-20 03:00:04 +00:00
|
|
|
|
2024-05-13 15:52:02 +00:00
|
|
|
created__gte: datetime = Field(None, q='created__gte')
|
|
|
|
created__lt: datetime = Field(None, q='created__lt')
|
|
|
|
created: datetime = Field(None, q='created')
|
|
|
|
modified: datetime = Field(None, q='modified')
|
|
|
|
modified__gte: datetime = Field(None, q='modified__gte')
|
|
|
|
modified__lt: datetime = Field(None, q='modified__lt')
|
|
|
|
|
2024-08-20 08:56:37 +00:00
|
|
|
search: Optional[str] = Field(None, q=['url__icontains', 'title__icontains', 'tags__name__icontains', 'id__icontains', 'abid__icontains', 'old_id__icontains', 'timestamp__startswith'])
|
2024-04-25 10:56:22 +00:00
|
|
|
url: Optional[str] = Field(None, q='url')
|
|
|
|
tag: Optional[str] = Field(None, q='tags__name')
|
|
|
|
title: Optional[str] = Field(None, q='title__icontains')
|
|
|
|
timestamp: Optional[str] = Field(None, q='timestamp__startswith')
|
|
|
|
|
|
|
|
added__gte: Optional[datetime] = Field(None, q='added__gte')
|
|
|
|
added__lt: Optional[datetime] = Field(None, q='added__lt')
|
|
|
|
|
|
|
|
|
2024-05-13 15:52:02 +00:00
|
|
|
|
2024-08-18 04:56:23 +00:00
|
|
|
@router.get("/snapshots", response=List[SnapshotSchema], url_name="get_snapshots")
|
2024-08-20 08:56:37 +00:00
|
|
|
@paginate(CustomPagination)
|
|
|
|
def get_snapshots(request, filters: SnapshotFilterSchema = Query(...), with_archiveresults: bool=False):
|
2024-05-13 15:52:02 +00:00
|
|
|
"""List all Snapshot entries matching these filters."""
|
2024-04-25 10:56:22 +00:00
|
|
|
request.with_archiveresults = with_archiveresults
|
|
|
|
|
|
|
|
qs = Snapshot.objects.all()
|
2024-08-20 08:56:37 +00:00
|
|
|
results = filters.filter(qs).distinct()
|
2024-04-25 10:56:22 +00:00
|
|
|
return results
|
|
|
|
|
2024-08-18 04:56:23 +00:00
|
|
|
@router.get("/snapshot/{snapshot_id}", response=SnapshotSchema, url_name="get_snapshot")
|
2024-05-13 15:52:02 +00:00
|
|
|
def get_snapshot(request, snapshot_id: str, with_archiveresults: bool=True):
|
|
|
|
"""Get a specific Snapshot by abid, uuid, or pk."""
|
2024-04-25 10:56:22 +00:00
|
|
|
request.with_archiveresults = with_archiveresults
|
2024-05-13 15:52:02 +00:00
|
|
|
snapshot = None
|
|
|
|
try:
|
2024-08-20 08:56:37 +00:00
|
|
|
snapshot = Snapshot.objects.get(Q(abid__startswith=snapshot_id) | Q(id__startswith=snapshot_id) | Q(old_id__startswith=snapshot_id) | Q(timestamp__startswith=snapshot_id))
|
2024-05-13 15:52:02 +00:00
|
|
|
except Snapshot.DoesNotExist:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
2024-08-20 03:00:04 +00:00
|
|
|
snapshot = snapshot or Snapshot.objects.get(Q(abid__icontains=snapshot_id) | Q(id__icontains=snapshot_id) | Q(old_id__icontains=snapshot_id))
|
2024-05-13 15:52:02 +00:00
|
|
|
except Snapshot.DoesNotExist:
|
|
|
|
pass
|
|
|
|
|
2024-08-20 08:56:37 +00:00
|
|
|
if not snapshot:
|
|
|
|
raise Snapshot.DoesNotExist
|
|
|
|
|
2024-04-25 10:56:22 +00:00
|
|
|
return snapshot
|
|
|
|
|
|
|
|
|
|
|
|
# @router.post("/snapshot", response=SnapshotSchema)
|
|
|
|
# def create_snapshot(request, payload: SnapshotSchema):
|
|
|
|
# snapshot = Snapshot.objects.create(**payload.dict())
|
|
|
|
# return snapshot
|
|
|
|
#
|
2024-05-13 12:12:12 +00:00
|
|
|
# @router.put("/snapshot/{snapshot_uuid}", response=SnapshotSchema)
|
|
|
|
# def update_snapshot(request, snapshot_uuid: str, payload: SnapshotSchema):
|
|
|
|
# snapshot = get_object_or_404(Snapshot, uuid=snapshot_uuid)
|
2024-04-25 10:56:22 +00:00
|
|
|
#
|
|
|
|
# for attr, value in payload.dict().items():
|
|
|
|
# setattr(snapshot, attr, value)
|
|
|
|
# snapshot.save()
|
|
|
|
#
|
|
|
|
# return snapshot
|
|
|
|
#
|
2024-05-13 12:12:12 +00:00
|
|
|
# @router.delete("/snapshot/{snapshot_uuid}")
|
|
|
|
# def delete_snapshot(request, snapshot_uuid: str):
|
|
|
|
# snapshot = get_object_or_404(Snapshot, uuid=snapshot_uuid)
|
2024-04-25 10:56:22 +00:00
|
|
|
# snapshot.delete()
|
|
|
|
# return {"success": True}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Tag #########################################################################
|
|
|
|
|
|
|
|
|
|
|
|
class TagSchema(Schema):
|
2024-08-20 08:56:37 +00:00
|
|
|
TYPE: str = 'core.models.Tag'
|
|
|
|
|
|
|
|
id: UUID
|
|
|
|
old_id: str
|
|
|
|
abid: str
|
|
|
|
|
2024-05-13 15:52:02 +00:00
|
|
|
modified: datetime
|
|
|
|
created: datetime
|
|
|
|
created_by_id: str
|
2024-08-20 08:56:37 +00:00
|
|
|
created_by_username: str
|
2024-05-13 15:52:02 +00:00
|
|
|
|
2024-04-25 10:56:22 +00:00
|
|
|
name: str
|
|
|
|
slug: str
|
2024-08-20 08:56:37 +00:00
|
|
|
num_snapshots: int
|
|
|
|
snapshots: List[SnapshotSchema]
|
2024-04-25 10:56:22 +00:00
|
|
|
|
2024-08-20 08:56:37 +00:00
|
|
|
@staticmethod
|
|
|
|
def resolve_old_id(obj):
|
|
|
|
return str(obj.old_id)
|
2024-04-25 10:56:22 +00:00
|
|
|
|
2024-05-13 15:52:02 +00:00
|
|
|
@staticmethod
|
|
|
|
def resolve_created_by_id(obj):
|
|
|
|
return str(obj.created_by_id)
|
2024-08-20 08:56:37 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def resolve_created_by_username(obj):
|
|
|
|
User = get_user_model()
|
|
|
|
return User.objects.get(id=obj.created_by_id).username
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def resolve_num_snapshots(obj, context):
|
|
|
|
return obj.snapshot_set.all().distinct().count()
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def resolve_snapshots(obj, context):
|
|
|
|
if context['request'].with_snapshots:
|
|
|
|
return obj.snapshot_set.all().distinct()
|
|
|
|
return Snapshot.objects.none()
|
2024-05-13 15:52:02 +00:00
|
|
|
|
2024-08-18 04:56:23 +00:00
|
|
|
@router.get("/tags", response=List[TagSchema], url_name="get_tags")
|
2024-08-20 08:56:37 +00:00
|
|
|
@paginate(CustomPagination)
|
2024-08-18 04:56:23 +00:00
|
|
|
def get_tags(request):
|
2024-08-20 08:56:37 +00:00
|
|
|
request.with_snapshots = False
|
|
|
|
request.with_archiveresults = False
|
|
|
|
return Tag.objects.all().distinct()
|
2024-08-18 07:24:14 +00:00
|
|
|
|
|
|
|
@router.get("/tag/{tag_id}", response=TagSchema, url_name="get_tag")
|
2024-08-20 08:56:37 +00:00
|
|
|
def get_tag(request, tag_id: str, with_snapshots: bool=True):
|
|
|
|
request.with_snapshots = with_snapshots
|
|
|
|
request.with_archiveresults = False
|
|
|
|
tag = None
|
|
|
|
try:
|
|
|
|
tag = tag or Tag.objects.get(old_id__icontains=tag_id)
|
|
|
|
except (Tag.DoesNotExist, ValidationError, ValueError):
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
|
|
|
tag = Tag.objects.get(abid__icontains=tag_id)
|
|
|
|
except (Tag.DoesNotExist, ValidationError):
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
|
|
|
tag = tag or Tag.objects.get(id__icontains=tag_id)
|
|
|
|
except (Tag.DoesNotExist, ValidationError):
|
|
|
|
pass
|
|
|
|
return tag
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@router.get("/any/{abid}", response=Union[SnapshotSchema, ArchiveResultSchema, TagSchema], url_name="get_any")
|
|
|
|
def get_any(request, abid: str):
|
|
|
|
request.with_snapshots = False
|
|
|
|
request.with_archiveresults = False
|
|
|
|
|
|
|
|
response = None
|
|
|
|
try:
|
|
|
|
response = response or get_snapshot(request, abid)
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
|
|
|
response = response or get_archiveresult(request, abid)
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
|
|
|
response = response or get_tag(request, abid)
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return response
|