2022-04-04 11:27:04 +00:00
|
|
|
from citext import CIText
|
2022-04-12 08:24:32 +00:00
|
|
|
from flask import g
|
2022-04-04 11:27:04 +00:00
|
|
|
from sqlalchemy import BigInteger, Column, Sequence, SmallInteger
|
|
|
|
from sqlalchemy.dialects.postgresql import UUID
|
|
|
|
|
|
|
|
from ereuse_devicehub.db import db
|
2022-05-18 09:00:04 +00:00
|
|
|
from ereuse_devicehub.resources.action.models import Snapshot
|
2022-07-06 16:37:27 +00:00
|
|
|
from ereuse_devicehub.resources.device.models import Placeholder
|
2022-04-04 11:27:04 +00:00
|
|
|
from ereuse_devicehub.resources.enums import Severity
|
|
|
|
from ereuse_devicehub.resources.models import Thing
|
2022-04-12 08:24:32 +00:00
|
|
|
from ereuse_devicehub.resources.user.models import User
|
2022-04-04 11:27:04 +00:00
|
|
|
|
|
|
|
|
2022-05-18 09:00:04 +00:00
|
|
|
class SnapshotsLog(Thing):
|
2022-05-18 15:59:05 +00:00
|
|
|
"""A Snapshot log."""
|
2022-04-04 11:27:04 +00:00
|
|
|
|
2022-05-18 09:00:04 +00:00
|
|
|
id = Column(BigInteger, Sequence('snapshots_log_seq'), primary_key=True)
|
2022-04-04 11:27:04 +00:00
|
|
|
severity = Column(SmallInteger, default=Severity.Info, nullable=False)
|
2022-05-18 10:46:57 +00:00
|
|
|
version = Column(CIText(), default='', nullable=True)
|
2022-05-18 09:00:04 +00:00
|
|
|
description = Column(CIText(), default='', nullable=True)
|
|
|
|
sid = Column(CIText(), nullable=True)
|
2022-05-18 15:59:05 +00:00
|
|
|
snapshot_uuid = Column(UUID(as_uuid=True), nullable=True)
|
|
|
|
snapshot_id = Column(UUID(as_uuid=True), db.ForeignKey(Snapshot.id), nullable=True)
|
2022-04-12 08:24:32 +00:00
|
|
|
owner_id = db.Column(
|
|
|
|
UUID(as_uuid=True),
|
|
|
|
db.ForeignKey(User.id),
|
|
|
|
nullable=False,
|
|
|
|
default=lambda: g.user.id,
|
|
|
|
)
|
2022-05-18 15:59:05 +00:00
|
|
|
snapshot = db.relationship(Snapshot, primaryjoin=snapshot_id == Snapshot.id)
|
2022-04-12 08:24:32 +00:00
|
|
|
owner = db.relationship(User, primaryjoin=owner_id == User.id)
|
2022-04-04 11:27:04 +00:00
|
|
|
|
|
|
|
def save(self, commit=False):
|
|
|
|
db.session.add(self)
|
|
|
|
|
|
|
|
if commit:
|
|
|
|
db.session.commit()
|
2022-05-18 16:26:01 +00:00
|
|
|
|
|
|
|
def get_status(self):
|
2022-05-20 11:52:32 +00:00
|
|
|
return Severity(self.severity)
|
2022-05-19 16:16:47 +00:00
|
|
|
|
|
|
|
def get_device(self):
|
|
|
|
if self.snapshot:
|
|
|
|
return self.snapshot.device.devicehub_id
|
|
|
|
|
|
|
|
return ''
|
2022-07-06 16:37:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PlaceholdersLog(Thing):
|
|
|
|
"""A Placeholder log."""
|
|
|
|
|
2022-07-07 14:18:51 +00:00
|
|
|
id = Column(BigInteger, Sequence('placeholders_log_seq'), primary_key=True)
|
2022-07-06 16:37:27 +00:00
|
|
|
source = Column(CIText(), default='', nullable=True)
|
|
|
|
type = Column(CIText(), default='', nullable=True)
|
2022-07-07 11:10:05 +00:00
|
|
|
severity = Column(SmallInteger, default=Severity.Info, nullable=False)
|
2022-07-06 16:37:27 +00:00
|
|
|
|
2022-07-07 11:10:05 +00:00
|
|
|
placeholder_id = Column(BigInteger, db.ForeignKey(Placeholder.id), nullable=True)
|
2022-07-06 16:37:27 +00:00
|
|
|
placeholder = db.relationship(
|
2022-07-07 11:10:05 +00:00
|
|
|
Placeholder, primaryjoin=placeholder_id == Placeholder.id
|
2022-07-06 16:37:27 +00:00
|
|
|
)
|
|
|
|
owner_id = db.Column(
|
|
|
|
UUID(as_uuid=True),
|
|
|
|
db.ForeignKey(User.id),
|
|
|
|
nullable=False,
|
|
|
|
default=lambda: g.user.id,
|
|
|
|
)
|
|
|
|
owner = db.relationship(User, primaryjoin=owner_id == User.id)
|
|
|
|
|
|
|
|
def save(self, commit=False):
|
|
|
|
db.session.add(self)
|
|
|
|
|
|
|
|
if commit:
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
@property
|
|
|
|
def phid(self):
|
|
|
|
if self.placeholder:
|
|
|
|
return self.placeholder.phid
|
|
|
|
|
|
|
|
return ''
|
|
|
|
|
|
|
|
@property
|
|
|
|
def dhid(self):
|
|
|
|
if self.placeholder:
|
2022-07-07 11:10:05 +00:00
|
|
|
return self.placeholder.device.devicehub_id
|
2022-07-06 16:37:27 +00:00
|
|
|
|
|
|
|
return ''
|
2022-07-07 11:10:05 +00:00
|
|
|
|
|
|
|
def get_status(self):
|
|
|
|
return Severity(self.severity)
|