2024-08-05 13:07:29 +00:00
|
|
|
import json
|
|
|
|
import uuid
|
|
|
|
import hashlib
|
|
|
|
import datetime
|
2024-10-25 15:36:13 +00:00
|
|
|
import logging
|
2024-08-05 13:07:29 +00:00
|
|
|
|
|
|
|
from django.core.exceptions import ValidationError
|
|
|
|
from evidence.xapian import index
|
|
|
|
from evidence.models import Annotation
|
|
|
|
from device.models import Device
|
|
|
|
|
2024-10-25 15:36:13 +00:00
|
|
|
|
|
|
|
logger = logging.getLogger('django')
|
|
|
|
|
|
|
|
|
2024-08-05 13:07:29 +00:00
|
|
|
def create_doc(data):
|
|
|
|
if not data:
|
|
|
|
return
|
|
|
|
|
|
|
|
doc = {}
|
|
|
|
device = {"manufacturer": "", "model": "", "amount": 1}
|
|
|
|
kv = {}
|
|
|
|
_uuid = str(uuid.uuid4())
|
|
|
|
customer_id = hashlib.sha3_256(_uuid.encode()).hexdigest()
|
|
|
|
|
|
|
|
|
|
|
|
for k, v in data.items():
|
|
|
|
if not v:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if k.upper() == "CUSTOMER_ID":
|
|
|
|
customer_id = v
|
|
|
|
continue
|
|
|
|
|
|
|
|
if k.lower() == "type":
|
|
|
|
if v not in Device.Types.values:
|
|
|
|
raise ValidationError("{} is not a valid device".format(v))
|
|
|
|
|
|
|
|
device["type"] = v
|
|
|
|
|
|
|
|
elif k.lower() == "amount":
|
|
|
|
try:
|
|
|
|
amount = int(v)
|
|
|
|
device["amount"] = amount
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
|
|
|
|
else:
|
|
|
|
kv[k] = v
|
|
|
|
|
|
|
|
if not device:
|
|
|
|
return
|
|
|
|
|
|
|
|
doc["device"] = device
|
|
|
|
|
|
|
|
if kv:
|
|
|
|
doc["kv"] = kv
|
|
|
|
|
|
|
|
date = datetime.datetime.now().strftime("%Y-%m-%dT%H:%M:%S")
|
|
|
|
|
|
|
|
if doc:
|
|
|
|
doc["uuid"] = _uuid
|
|
|
|
doc["endTime"] = date
|
|
|
|
doc["software"] = "DeviceHub"
|
|
|
|
doc["CUSTOMER_ID"] = customer_id
|
|
|
|
doc["type"] = "WebSnapshot"
|
|
|
|
|
|
|
|
return doc
|
|
|
|
|
|
|
|
|
|
|
|
def create_annotation(doc, user, commit=False):
|
|
|
|
if not doc or not doc.get('uuid') or not doc.get("CUSTOMER_ID"):
|
|
|
|
return []
|
|
|
|
|
|
|
|
data = {
|
|
|
|
'uuid': doc['uuid'],
|
2024-10-04 15:32:53 +00:00
|
|
|
'owner': user.institution,
|
|
|
|
'user': user,
|
2024-08-05 13:07:29 +00:00
|
|
|
'type': Annotation.Type.SYSTEM,
|
|
|
|
'key': 'CUSTOMER_ID',
|
|
|
|
'value': doc['CUSTOMER_ID'],
|
|
|
|
}
|
|
|
|
if commit:
|
2024-10-25 15:36:13 +00:00
|
|
|
annotation = Annotation.objects.filter(
|
|
|
|
uuid=doc["uuid"],
|
|
|
|
owner=user.institution,
|
|
|
|
type=Annotation.Type.SYSTEM,
|
|
|
|
)
|
|
|
|
|
|
|
|
if annotation:
|
|
|
|
txt = "Warning: Snapshot {} exist as annotation !!".format(doc["uuid"])
|
|
|
|
logger.exception(txt)
|
|
|
|
return annotation
|
|
|
|
|
2024-08-05 13:07:29 +00:00
|
|
|
return Annotation.objects.create(**data)
|
|
|
|
|
|
|
|
return Annotation(**data)
|
|
|
|
|
|
|
|
|
2024-10-04 15:32:53 +00:00
|
|
|
def create_index(doc, user):
|
2024-08-05 13:07:29 +00:00
|
|
|
if not doc or not doc.get('uuid'):
|
|
|
|
return []
|
|
|
|
|
|
|
|
_uuid = doc['uuid']
|
|
|
|
ev = json.dumps(doc)
|
2024-10-09 16:00:56 +00:00
|
|
|
index(user.institution, _uuid, ev)
|