2024-07-18 15:21:22 +00:00
|
|
|
import json
|
|
|
|
|
2024-06-12 07:32:49 +00:00
|
|
|
from django.db import models
|
2024-07-18 15:21:22 +00:00
|
|
|
|
2024-07-15 14:23:14 +00:00
|
|
|
from utils.constants import STR_SM_SIZE, STR_EXTEND_SIZE
|
2024-07-26 15:59:34 +00:00
|
|
|
from evidence.xapian import search
|
2024-10-04 15:32:53 +00:00
|
|
|
from user.models import User, Institution
|
2024-06-12 07:32:49 +00:00
|
|
|
|
|
|
|
|
2024-07-31 11:28:46 +00:00
|
|
|
class Annotation(models.Model):
|
|
|
|
class Type(models.IntegerChoices):
|
|
|
|
SYSTEM= 0, "System"
|
|
|
|
USER = 1, "User"
|
|
|
|
DOCUMENT = 2, "Document"
|
|
|
|
|
|
|
|
created = models.DateTimeField(auto_now_add=True)
|
|
|
|
uuid = models.UUIDField()
|
2024-10-04 15:32:53 +00:00
|
|
|
owner = models.ForeignKey(Institution, on_delete=models.CASCADE)
|
|
|
|
user = models.ForeignKey(User, on_delete=models.CASCADE)
|
2024-07-31 11:28:46 +00:00
|
|
|
type = models.SmallIntegerField(choices=Type)
|
|
|
|
key = models.CharField(max_length=STR_EXTEND_SIZE)
|
|
|
|
value = models.CharField(max_length=STR_EXTEND_SIZE)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
constraints = [
|
|
|
|
models.UniqueConstraint(fields=["type", "key", "uuid"], name="unique_type_key_uuid")
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2024-07-26 15:59:34 +00:00
|
|
|
class Evidence:
|
2024-07-18 15:21:22 +00:00
|
|
|
def __init__(self, uuid):
|
|
|
|
self.uuid = uuid
|
|
|
|
self.owner = None
|
|
|
|
self.doc = None
|
|
|
|
self.created = None
|
|
|
|
self.annotations = []
|
2024-06-12 07:32:49 +00:00
|
|
|
|
2024-07-18 15:21:22 +00:00
|
|
|
self.get_owner()
|
|
|
|
self.get_time()
|
2024-06-12 07:32:49 +00:00
|
|
|
|
2024-07-18 15:21:22 +00:00
|
|
|
def get_annotations(self):
|
|
|
|
self.annotations = Annotation.objects.filter(
|
|
|
|
uuid=self.uuid
|
|
|
|
).order_by("created")
|
2024-07-31 11:28:46 +00:00
|
|
|
|
2024-07-18 15:21:22 +00:00
|
|
|
def get_owner(self):
|
|
|
|
if not self.annotations:
|
|
|
|
self.get_annotations()
|
|
|
|
a = self.annotations.first()
|
|
|
|
if a:
|
|
|
|
self.owner = a.owner
|
2024-06-12 07:32:49 +00:00
|
|
|
|
2024-07-18 15:21:22 +00:00
|
|
|
def get_doc(self):
|
|
|
|
self.doc = {}
|
2024-10-04 15:32:53 +00:00
|
|
|
if not self.owner:
|
|
|
|
self.get_owner()
|
2024-07-18 15:21:22 +00:00
|
|
|
qry = 'uuid:"{}"'.format(self.uuid)
|
2024-10-04 15:32:53 +00:00
|
|
|
matches = search(self.owner, qry, limit=1)
|
2024-07-18 15:21:22 +00:00
|
|
|
if matches.size() < 0:
|
|
|
|
return
|
|
|
|
|
|
|
|
for xa in matches:
|
|
|
|
self.doc = json.loads(xa.document.get_data())
|
|
|
|
|
|
|
|
def get_time(self):
|
|
|
|
if not self.doc:
|
|
|
|
self.get_doc()
|
|
|
|
self.created = self.doc.get("endTime")
|
|
|
|
|
|
|
|
if not self.created:
|
|
|
|
self.created = self.annotations.last().created
|
|
|
|
|
|
|
|
def components(self):
|
|
|
|
return self.doc.get('components', [])
|
2024-07-01 10:17:23 +00:00
|
|
|
|
2024-07-31 11:28:46 +00:00
|
|
|
@classmethod
|
|
|
|
def get_all(cls, user):
|
|
|
|
return Annotation.objects.filter(
|
2024-10-04 15:32:53 +00:00
|
|
|
owner=user.institution,
|
2024-07-31 11:28:46 +00:00
|
|
|
type=Annotation.Type.SYSTEM,
|
|
|
|
).order_by("-created").values_list("uuid", flat=True).distinct()
|