2018-10-03 12:51:22 +00:00
|
|
|
import datetime
|
|
|
|
|
2018-09-30 17:40:28 +00:00
|
|
|
import marshmallow
|
2020-04-22 15:53:06 +00:00
|
|
|
from flask import g, current_app as app, render_template, request, Response
|
2018-09-30 17:40:28 +00:00
|
|
|
from flask.json import jsonify
|
|
|
|
from flask_sqlalchemy import Pagination
|
2020-03-19 00:55:26 +00:00
|
|
|
from marshmallow import fields, fields as f, validate as v, ValidationError
|
2018-10-04 08:59:31 +00:00
|
|
|
from teal import query
|
2018-10-03 12:51:22 +00:00
|
|
|
from teal.cache import cache
|
2018-04-10 15:06:39 +00:00
|
|
|
from teal.resource import View
|
|
|
|
|
2018-10-03 12:51:22 +00:00
|
|
|
from ereuse_devicehub import auth
|
2018-10-04 08:59:31 +00:00
|
|
|
from ereuse_devicehub.db import db
|
2019-01-26 11:49:31 +00:00
|
|
|
from ereuse_devicehub.query import SearchQueryParser, things_response
|
2018-10-04 08:59:31 +00:00
|
|
|
from ereuse_devicehub.resources import search
|
2019-05-11 14:27:22 +00:00
|
|
|
from ereuse_devicehub.resources.action import models as actions
|
2019-07-07 19:36:09 +00:00
|
|
|
from ereuse_devicehub.resources.device import states
|
2020-03-19 00:55:26 +00:00
|
|
|
from ereuse_devicehub.resources.device.models import Device, Manufacturer, Computer
|
2018-10-04 08:59:31 +00:00
|
|
|
from ereuse_devicehub.resources.device.search import DeviceSearch
|
2018-11-11 20:52:55 +00:00
|
|
|
from ereuse_devicehub.resources.lot.models import LotDeviceDescendants
|
2018-10-04 08:59:31 +00:00
|
|
|
from ereuse_devicehub.resources.tag.model import Tag
|
2020-04-22 15:53:06 +00:00
|
|
|
from ereuse_devicehub.resources.deliverynote.models import Deliverynote
|
2018-10-04 08:59:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
class OfType(f.Str):
|
|
|
|
def __init__(self, column: db.Column, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self.column = column
|
|
|
|
|
|
|
|
def _deserialize(self, value, attr, data):
|
|
|
|
v = super()._deserialize(value, attr, data)
|
|
|
|
return self.column.in_(app.resources[v].subresources_types)
|
|
|
|
|
|
|
|
|
|
|
|
class RateQ(query.Query):
|
2019-05-11 14:27:22 +00:00
|
|
|
rating = query.Between(actions.Rate._rating, f.Float())
|
|
|
|
appearance = query.Between(actions.Rate._appearance, f.Float())
|
|
|
|
functionality = query.Between(actions.Rate._functionality, f.Float())
|
2018-10-04 08:59:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TagQ(query.Query):
|
|
|
|
id = query.Or(query.ILike(Tag.id), required=True)
|
|
|
|
org = query.ILike(Tag.org)
|
|
|
|
|
|
|
|
|
2018-10-06 10:45:56 +00:00
|
|
|
class LotQ(query.Query):
|
2018-11-11 20:52:55 +00:00
|
|
|
id = query.Or(query.Equal(LotDeviceDescendants.ancestor_lot_id, fields.UUID()))
|
2018-10-06 10:45:56 +00:00
|
|
|
|
|
|
|
|
2018-10-04 08:59:31 +00:00
|
|
|
class Filters(query.Query):
|
2018-11-21 13:26:56 +00:00
|
|
|
id = query.Or(query.Equal(Device.id, fields.Integer()))
|
2018-10-04 08:59:31 +00:00
|
|
|
type = query.Or(OfType(Device.type))
|
|
|
|
model = query.ILike(Device.model)
|
|
|
|
manufacturer = query.ILike(Device.manufacturer)
|
|
|
|
serialNumber = query.ILike(Device.serial_number)
|
2019-02-05 16:59:15 +00:00
|
|
|
# todo test query for rating (and possibly other filters)
|
2019-05-11 14:27:22 +00:00
|
|
|
rating = query.Join((Device.id == actions.ActionWithOneDevice.device_id)
|
|
|
|
& (actions.ActionWithOneDevice.id == actions.Rate.id),
|
2019-02-05 16:59:15 +00:00
|
|
|
RateQ)
|
2018-10-06 10:45:56 +00:00
|
|
|
tag = query.Join(Device.id == Tag.device_id, TagQ)
|
2018-11-04 21:40:14 +00:00
|
|
|
# todo This part of the query is really slow
|
|
|
|
# And forces usage of distinct, as it returns many rows
|
|
|
|
# due to having multiple paths to the same
|
2020-04-22 15:53:06 +00:00
|
|
|
lot = query.Join((Device.id == LotDeviceDescendants.device_id)
|
|
|
|
& (Deliverynote.lot_id == LotDeviceDescendants.ancestor_lot_id),
|
|
|
|
LotQ)
|
2018-10-04 08:59:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Sorting(query.Sort):
|
2018-10-06 10:45:56 +00:00
|
|
|
id = query.SortField(Device.id)
|
2018-10-04 08:59:31 +00:00
|
|
|
created = query.SortField(Device.created)
|
2018-12-30 11:43:29 +00:00
|
|
|
updated = query.SortField(Device.updated)
|
2018-09-07 10:38:02 +00:00
|
|
|
|
2018-04-10 15:06:39 +00:00
|
|
|
|
|
|
|
class DeviceView(View):
|
2018-11-11 21:18:10 +00:00
|
|
|
QUERY_PARSER = SearchQueryParser()
|
|
|
|
|
2018-10-04 08:59:31 +00:00
|
|
|
class FindArgs(marshmallow.Schema):
|
2018-11-11 21:18:10 +00:00
|
|
|
search = f.Str()
|
2018-10-04 08:59:31 +00:00
|
|
|
filter = f.Nested(Filters, missing=[])
|
2018-11-04 21:40:14 +00:00
|
|
|
sort = f.Nested(Sorting, missing=[Device.id.asc()])
|
2018-10-04 08:59:31 +00:00
|
|
|
page = f.Integer(validate=v.Range(min=1), missing=1)
|
2018-06-24 14:57:49 +00:00
|
|
|
|
|
|
|
def get(self, id):
|
2019-06-19 11:35:26 +00:00
|
|
|
"""Devices view
|
2018-06-24 14:57:49 +00:00
|
|
|
---
|
|
|
|
description: Gets a device or multiple devices.
|
|
|
|
parameters:
|
|
|
|
- name: id
|
|
|
|
type: integer
|
2018-11-21 13:26:56 +00:00
|
|
|
in: path}
|
2018-06-24 14:57:49 +00:00
|
|
|
description: The identifier of the device.
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: The device or devices.
|
|
|
|
"""
|
2018-11-21 13:26:56 +00:00
|
|
|
return super().get(id)
|
2020-04-01 17:56:09 +00:00
|
|
|
|
2020-03-19 00:55:26 +00:00
|
|
|
def patch(self, id):
|
|
|
|
dev = Device.query.filter_by(id=id).one()
|
|
|
|
if isinstance(dev, Computer):
|
|
|
|
resource_def = app.resources['Computer']
|
|
|
|
# TODO check how to handle the 'actions_one'
|
2020-03-20 14:47:42 +00:00
|
|
|
patch_schema = resource_def.SCHEMA(only=['ethereum_address', 'transfer_state', 'deliverynote_address', 'actions_one'], partial=True)
|
2020-03-19 00:55:26 +00:00
|
|
|
json = request.get_json(schema=patch_schema)
|
|
|
|
# TODO check how to handle the 'actions_one'
|
|
|
|
json.pop('actions_one')
|
|
|
|
if not dev:
|
|
|
|
raise ValueError('Device non existent')
|
|
|
|
for key, value in json.items():
|
|
|
|
setattr(dev,key,value)
|
|
|
|
db.session.commit()
|
|
|
|
return Response(status=204)
|
|
|
|
raise ValueError('Cannot patch a non computer')
|
2020-04-01 17:56:09 +00:00
|
|
|
|
2018-04-27 17:16:43 +00:00
|
|
|
def one(self, id: int):
|
2018-04-10 15:06:39 +00:00
|
|
|
"""Gets one device."""
|
2018-10-03 12:51:22 +00:00
|
|
|
if not request.authorization:
|
|
|
|
return self.one_public(id)
|
|
|
|
else:
|
|
|
|
return self.one_private(id)
|
|
|
|
|
|
|
|
def one_public(self, id: int):
|
|
|
|
device = Device.query.filter_by(id=id).one()
|
2019-07-07 19:36:09 +00:00
|
|
|
return render_template('devices/layout.html', device=device, states=states)
|
2018-10-03 12:51:22 +00:00
|
|
|
|
|
|
|
@auth.Auth.requires_auth
|
|
|
|
def one_private(self, id: int):
|
2018-05-11 16:58:48 +00:00
|
|
|
device = Device.query.filter_by(id=id).one()
|
2018-05-13 13:13:12 +00:00
|
|
|
return self.schema.jsonify(device)
|
2018-05-11 16:58:48 +00:00
|
|
|
|
2018-10-03 12:51:22 +00:00
|
|
|
@auth.Auth.requires_auth
|
2020-04-01 17:56:09 +00:00
|
|
|
# @cache(datetime.timedelta(minutes=1))
|
2018-05-11 16:58:48 +00:00
|
|
|
def find(self, args: dict):
|
2018-06-24 14:57:49 +00:00
|
|
|
"""Gets many devices."""
|
2018-11-21 13:26:56 +00:00
|
|
|
# Compute query
|
|
|
|
query = self.query(args)
|
2018-10-04 08:59:31 +00:00
|
|
|
devices = query.paginate(page=args['page'], per_page=30) # type: Pagination
|
2019-01-26 11:49:31 +00:00
|
|
|
return things_response(
|
|
|
|
self.schema.dump(devices.items, many=True, nested=1),
|
|
|
|
devices.page, devices.per_page, devices.total, devices.prev_num, devices.next_num
|
|
|
|
)
|
2018-09-30 17:40:28 +00:00
|
|
|
|
2018-11-21 13:26:56 +00:00
|
|
|
def query(self, args):
|
2020-04-22 15:53:06 +00:00
|
|
|
# query = Device.query.distinct() # todo we should not force to do this if the query is ok
|
|
|
|
query = Device.query.distinct() \
|
|
|
|
.filter(Computer.owner_id == g.user.id) \
|
|
|
|
.filter(Deliverynote.receiver_address == g.user.email)
|
|
|
|
|
2018-11-21 13:26:56 +00:00
|
|
|
search_p = args.get('search', None)
|
|
|
|
if search_p:
|
|
|
|
properties = DeviceSearch.properties
|
|
|
|
tags = DeviceSearch.tags
|
|
|
|
query = query.join(DeviceSearch).filter(
|
|
|
|
search.Search.match(properties, search_p) | search.Search.match(tags, search_p)
|
|
|
|
).order_by(
|
|
|
|
search.Search.rank(properties, search_p) + search.Search.rank(tags, search_p)
|
|
|
|
)
|
|
|
|
return query.filter(*args['filter']).order_by(*args['sort'])
|
|
|
|
|
2018-09-30 17:40:28 +00:00
|
|
|
|
|
|
|
class ManufacturerView(View):
|
|
|
|
class FindArgs(marshmallow.Schema):
|
2018-10-18 11:08:42 +00:00
|
|
|
search = marshmallow.fields.Str(required=True,
|
|
|
|
# Disallow like operators
|
|
|
|
validate=lambda x: '%' not in x and '_' not in x)
|
2018-09-30 17:40:28 +00:00
|
|
|
|
2018-10-03 12:51:22 +00:00
|
|
|
@cache(datetime.timedelta(days=1))
|
2018-09-30 17:40:28 +00:00
|
|
|
def find(self, args: dict):
|
2018-10-18 11:08:42 +00:00
|
|
|
search = args['search']
|
2018-09-30 17:40:28 +00:00
|
|
|
manufacturers = Manufacturer.query \
|
2018-10-18 11:08:42 +00:00
|
|
|
.filter(Manufacturer.name.ilike(search + '%')) \
|
2018-09-30 17:40:28 +00:00
|
|
|
.paginate(page=1, per_page=6) # type: Pagination
|
|
|
|
return jsonify(
|
|
|
|
items=app.resources[Manufacturer.t].schema.dump(
|
|
|
|
manufacturers.items,
|
|
|
|
many=True,
|
|
|
|
nested=1
|
|
|
|
)
|
|
|
|
)
|