feature/90-implement-public-website-for-device #17

Merged
cayop merged 32 commits from feature/90-implement-public-website-for-device into main 2024-10-30 15:02:18 +00:00
1 changed files with 6 additions and 16 deletions
Showing only changes of commit 2636e80ece - Show all commits

View File

@ -124,30 +124,20 @@ class PublicDeviceWebView(TemplateView):
context = super().get_context_data(**kwargs)
self.object.initial()
context.update({
'object': self.object,
'snapshot': self.object.get_last_evidence(),
'object': self.object
})
return context
def get_json_response(self):
data = {
'object': self.get_object_data(),
# TODO i) agree on what fields to return. ii) implement get_components_data for new and old snapshot
# 'components': self.get_components_data(),
'id': self.object.id,
'shortid': self.object.shortid,
'uuids': self.object.uuids,
'hids': self.object.hids,
'components': self.object.components
}
return JsonResponse(data)
def get_object_data(self):
serial_number = self.object.last_evidence.doc.device.serialNumber if self.object.last_evidence else "None"
object_data = {
'phid': self.object.id,
'type': self.object.type,
'manufacturer': self.object.manufacturer,
'model': self.object.model,
'serial_number': serial_number,
}
return object_data
class AddAnnotationView(DashboardView, CreateView):
template_name = "new_annotation.html"