2018-04-27 17:16:43 +00:00
|
|
|
from distutils.version import StrictVersion
|
2018-06-16 10:41:12 +00:00
|
|
|
from typing import List
|
2018-06-15 13:31:03 +00:00
|
|
|
from uuid import UUID
|
2018-04-27 17:16:43 +00:00
|
|
|
|
2018-08-03 16:15:08 +00:00
|
|
|
from flask import current_app as app, request
|
2018-05-30 10:49:40 +00:00
|
|
|
from sqlalchemy.util import OrderedSet
|
2018-09-07 10:35:32 +00:00
|
|
|
from teal.resource import View
|
2018-04-27 17:16:43 +00:00
|
|
|
|
|
|
|
from ereuse_devicehub.db import db
|
2018-06-16 10:41:12 +00:00
|
|
|
from ereuse_devicehub.resources.device.models import Component, Computer
|
2018-07-14 14:41:22 +00:00
|
|
|
from ereuse_devicehub.resources.enums import SnapshotSoftware
|
|
|
|
from ereuse_devicehub.resources.event.models import Event, Snapshot, WorkbenchRate
|
2018-04-10 15:06:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
class EventView(View):
|
2018-08-03 16:15:08 +00:00
|
|
|
def post(self):
|
|
|
|
"""Posts an event."""
|
|
|
|
json = request.get_json(validate=False)
|
|
|
|
e = app.resources[json['type']].schema.load(json)
|
|
|
|
Model = db.Model._decl_class_registry.data[json['type']]()
|
|
|
|
event = Model(**e)
|
|
|
|
db.session.add(event)
|
|
|
|
db.session.commit()
|
|
|
|
ret = self.schema.jsonify(event)
|
|
|
|
ret.status_code = 201
|
|
|
|
return ret
|
|
|
|
|
2018-06-15 13:31:03 +00:00
|
|
|
def one(self, id: UUID):
|
2018-04-10 15:06:39 +00:00
|
|
|
"""Gets one event."""
|
2018-05-13 13:13:12 +00:00
|
|
|
event = Event.query.filter_by(id=id).one()
|
|
|
|
return self.schema.jsonify(event)
|
2018-04-27 17:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
SUPPORTED_WORKBENCH = StrictVersion('11.0')
|
|
|
|
|
|
|
|
|
|
|
|
class SnapshotView(View):
|
|
|
|
def post(self):
|
2018-05-13 13:13:12 +00:00
|
|
|
"""
|
|
|
|
Performs a Snapshot.
|
|
|
|
|
|
|
|
See `Snapshot` section in docs for more info.
|
|
|
|
"""
|
2018-04-30 17:58:19 +00:00
|
|
|
s = request.get_json()
|
|
|
|
# Note that if we set the device / components into the snapshot
|
|
|
|
# model object, when we flush them to the db we will flush
|
|
|
|
# snapshot, and we want to wait to flush snapshot at the end
|
2018-06-10 16:47:49 +00:00
|
|
|
device = s.pop('device') # type: Computer
|
2018-06-16 10:41:12 +00:00
|
|
|
components = s.pop('components') \
|
|
|
|
if s['software'] == SnapshotSoftware.Workbench else None # type: List[Component]
|
2018-04-30 17:58:19 +00:00
|
|
|
snapshot = Snapshot(**s)
|
2018-06-16 10:41:12 +00:00
|
|
|
|
|
|
|
# Remove new events from devices so they don't interfere with sync
|
|
|
|
events_device = set(e for e in device.events_one)
|
|
|
|
device.events_one.clear()
|
2018-06-20 21:18:15 +00:00
|
|
|
if components:
|
|
|
|
events_components = tuple(set(e for e in c.events_one) for c in components)
|
|
|
|
for component in components:
|
|
|
|
component.events_one.clear()
|
2018-06-16 10:41:12 +00:00
|
|
|
|
|
|
|
# noinspection PyArgumentList
|
|
|
|
assert not device.events_one
|
2018-06-20 21:18:15 +00:00
|
|
|
assert all(not c.events_one for c in components) if components else True
|
2018-06-16 10:41:12 +00:00
|
|
|
db_device, remove_events = self.resource_def.sync.run(device, components)
|
|
|
|
snapshot.device = db_device
|
2018-07-14 14:41:22 +00:00
|
|
|
snapshot.events |= remove_events | events_device # Set events to snapshot
|
2018-05-13 13:13:12 +00:00
|
|
|
# commit will change the order of the components by what
|
2018-05-30 10:49:40 +00:00
|
|
|
# the DB wants. Let's get a copy of the list so we preserve order
|
|
|
|
ordered_components = OrderedSet(x for x in snapshot.components)
|
2018-06-16 10:41:12 +00:00
|
|
|
|
|
|
|
# Add the new events to the db-existing devices and components
|
|
|
|
db_device.events_one |= events_device
|
2018-06-20 21:18:15 +00:00
|
|
|
if components:
|
|
|
|
for component, events in zip(ordered_components, events_components):
|
|
|
|
component.events_one |= events
|
|
|
|
snapshot.events |= events
|
2018-06-16 10:41:12 +00:00
|
|
|
|
2018-07-14 14:41:22 +00:00
|
|
|
# Compute ratings
|
2018-10-13 12:53:46 +00:00
|
|
|
for rate in (e for e in events_device if isinstance(e, WorkbenchRate)):
|
|
|
|
rates = rate.ratings()
|
|
|
|
snapshot.events |= rates
|
2018-07-14 14:41:22 +00:00
|
|
|
|
2018-04-27 17:16:43 +00:00
|
|
|
db.session.add(snapshot)
|
2018-05-13 13:13:12 +00:00
|
|
|
db.session.commit()
|
|
|
|
# todo we are setting snapshot dirty again with this components but
|
|
|
|
# we do not want to update it.
|
|
|
|
# The real solution is https://stackoverflow.com/questions/
|
|
|
|
# 24480581/set-the-insert-order-of-a-many-to-many-sqlalchemy-
|
|
|
|
# flask-app-sqlite-db?noredirect=1&lq=1
|
|
|
|
snapshot.components = ordered_components
|
2018-05-11 16:58:48 +00:00
|
|
|
ret = self.schema.jsonify(snapshot) # transform it back
|
|
|
|
ret.status_code = 201
|
|
|
|
return ret
|