This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
devicehub-teal/ereuse_devicehub/resources/action/views.py

140 lines
5.6 KiB
Python
Raw Normal View History

2020-10-07 16:28:57 +00:00
import os
from time import time
2018-04-27 17:16:43 +00:00
from distutils.version import StrictVersion
from typing import List
2018-06-15 13:31:03 +00:00
from uuid import UUID
2018-04-27 17:16:43 +00:00
from flask import current_app as app, request, g
from sqlalchemy.util import OrderedSet
2019-01-16 19:40:27 +00:00
from teal.marshmallow import ValidationError
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
2019-12-12 20:17:35 +00:00
from ereuse_devicehub.resources.action.models import Action, RateComputer, Snapshot, VisualTest, \
InitTransfer
from ereuse_devicehub.resources.action.rate.v1_0 import CannotRate
from ereuse_devicehub.resources.device.models import Component, Computer
from ereuse_devicehub.resources.enums import SnapshotSoftware, Severity
from ereuse_devicehub.resources.user.exceptions import InsufficientPermission
SUPPORTED_WORKBENCH = StrictVersion('11.0')
2020-10-07 16:28:57 +00:00
TMP_SNAPSHOTS = 'tmp/snapshots'
2020-10-07 16:29:18 +00:00
def save_snapshot_in_file(snapshot_json):
2020-10-07 16:28:57 +00:00
"""
This function allow save a snapshot in json format un a TMP_SNAPSHOTS directory
The file need to be saved with one name format with the stamptime and uuid joins
"""
if not os.path.isdir(TMP_SNAPSHOTS):
os.system('mkdir -p {}'.format(TMP_SNAPSHOTS))
name_file = "{uuid}_{time}.json".format(uuid=snapshot_json['uuid'], time=int(time()))
path_name = "{tmp}/{file}".format(tmp=TMP_SNAPSHOTS, file=name_file)
snapshot_file = open(path_name, 'w')
snapshot_file.write(json.dumps(snapshot_json))
snapshot_file.close()
2018-04-10 15:06:39 +00:00
class ActionView(View):
def post(self):
"""Posts an action."""
json = request.get_json(validate=False)
if not json or 'type' not in json:
2019-01-16 19:40:27 +00:00
raise ValidationError('Resource needs a type.')
# todo there should be a way to better get subclassess resource
# defs
resource_def = app.resources[json['type']]
a = resource_def.schema.load(json)
if json['type'] == Snapshot.t:
return self.snapshot(a, resource_def)
2019-05-14 18:31:43 +00:00
if json['type'] == VisualTest.t:
pass
# TODO JN add compute rate with new visual test and old components device
2019-12-12 20:17:35 +00:00
if json['type'] == InitTransfer.t:
return self.transfer_ownership()
Model = db.Model._decl_class_registry.data[json['type']]()
action = Model(**a)
db.session.add(action)
db.session().final_flush()
ret = self.schema.jsonify(action)
ret.status_code = 201
db.session.commit()
return ret
2018-06-15 13:31:03 +00:00
def one(self, id: UUID):
"""Gets one action."""
action = Action.query.filter_by(id=id).one()
return self.schema.jsonify(action)
2018-04-27 17:16:43 +00:00
def snapshot(self, snapshot_json: dict, resource_def):
"""Performs a Snapshot.
See `Snapshot` section in docs for more info.
"""
2018-04-30 17:58:19 +00:00
# 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
device = snapshot_json.pop('device') # type: Computer
components = None
if snapshot_json['software'] == (SnapshotSoftware.Workbench or SnapshotSoftware.WorkbenchAndroid):
components = snapshot_json.pop('components', None) # type: List[Component]
snapshot = Snapshot(**snapshot_json)
# Remove new actions from devices so they don't interfere with sync
actions_device = set(e for e in device.actions_one)
device.actions_one.clear()
2018-06-20 21:18:15 +00:00
if components:
actions_components = tuple(set(e for e in c.actions_one) for c in components)
2018-06-20 21:18:15 +00:00
for component in components:
component.actions_one.clear()
assert not device.actions_one
assert all(not c.actions_one for c in components) if components else True
db_device, remove_actions = resource_def.sync.run(device, components)
del device # Do not use device anymore
snapshot.device = db_device
snapshot.actions |= remove_actions | actions_device # Set actions to snapshot
# commit will change the order of the components by what
# the DB wants. Let's get a copy of the list so we preserve order
ordered_components = OrderedSet(x for x in snapshot.components)
# Add the new actions to the db-existing devices and components
db_device.actions_one |= actions_device
2018-06-20 21:18:15 +00:00
if components:
for component, actions in zip(ordered_components, actions_components):
component.actions_one |= actions
snapshot.actions |= actions
if snapshot.software == SnapshotSoftware.Workbench:
# Check ownership of (non-component) device to from current.user
if db_device.owner_id != g.user.id:
raise InsufficientPermission()
# Compute ratings
try:
rate_computer, price = RateComputer.compute(db_device)
except CannotRate:
pass
else:
snapshot.actions.add(rate_computer)
if price:
snapshot.actions.add(price)
elif snapshot.software == SnapshotSoftware.WorkbenchAndroid:
pass # TODO try except to compute RateMobile
# Check if HID is null and add Severity:Warning to Snapshot
if snapshot.device.hid is None:
snapshot.severity = Severity.Warning
2018-04-27 17:16:43 +00:00
db.session.add(snapshot)
db.session().final_flush()
ret = self.schema.jsonify(snapshot) # transform it back
ret.status_code = 201
db.session.commit()
return ret
2019-12-12 20:17:35 +00:00
def transfer_ownership(self):
"""Perform a InitTransfer action to change author_id of device"""
pass