rollerverbrauch/app/entities.py

166 lines
5.5 KiB
Python
Raw Permalink Normal View History

2016-07-03 19:29:30 +02:00
from app import db
from flask_security import UserMixin, RoleMixin
2016-04-23 23:08:39 +02:00
roles_users = db.Table('roles_users',
2016-04-23 23:24:25 +02:00
db.Column('user_id', db.Integer(), db.ForeignKey('user.id')),
db.Column('role_id', db.Integer(), db.ForeignKey('role.id')))
2016-04-23 23:08:39 +02:00
vehicles_consumables = db.Table('vehicles_consumables',
db.Column('vehicle_id', db.Integer(), db.ForeignKey('vehicle.id')),
db.Column('consumable_id', db.Integer(), db.ForeignKey('consumable.id')))
2016-04-23 23:08:39 +02:00
class Role(db.Model, RoleMixin):
2016-07-04 20:19:59 +02:00
"""
Entity to handle different roles for users: Typically user and admin exist
"""
2016-04-23 23:08:39 +02:00
id = db.Column(db.Integer(), primary_key=True)
name = db.Column(db.String(80), unique=True)
description = db.Column(db.String(255))
def __str__(self):
return self.name
def __hash__(self):
return hash(self.name)
class User(db.Model, UserMixin):
2016-07-04 20:19:59 +02:00
"""
Entity to represent a user including login data and links to roles and vehicles.
"""
2016-04-23 23:08:39 +02:00
id = db.Column(db.Integer, primary_key=True)
email = db.Column(db.String(255), unique=True)
password = db.Column(db.String(255))
active = db.Column(db.Boolean())
confirmed_at = db.Column(db.DateTime())
2016-07-04 20:19:59 +02:00
2016-04-23 23:24:25 +02:00
vehicles = db.relationship(
'Vehicle'
)
2016-04-23 23:08:39 +02:00
roles = db.relationship(
'Role',
secondary=roles_users,
backref=db.backref('users', lazy='dynamic')
)
def __repr__(self):
return '<User id="%r" email="%r" ' % (self.id, self.email)
2016-04-23 23:08:39 +02:00
2016-04-23 23:24:25 +02:00
class Vehicle(db.Model):
2016-07-04 20:19:59 +02:00
"""
Entity to represent a vehicle.
Attributes:
* name of the vehilce
* the id of the owner
* list of pitstops
* list of possible consumables
"""
2016-04-23 23:24:25 +02:00
id = db.Column(db.Integer, primary_key=True)
owner_id = db.Column(db.Integer, db.ForeignKey('user.id'))
name = db.Column(db.String(255))
2016-04-23 23:24:25 +02:00
pitstops = db.relationship(
'Pitstop'
)
2016-11-01 11:17:54 +01:00
services = db.relationship(
'Service'
)
consumables = db.relationship(
'Consumable',
2016-06-28 23:33:24 +02:00
secondary=vehicles_consumables
)
2016-07-04 20:19:59 +02:00
# allow vehicle names to be duplicated between different owners but must still be uniq for each owner
__table_args__ = (db.UniqueConstraint('owner_id',
'name',
name='_owner_name_uniq'),)
2016-04-23 23:24:25 +02:00
def __init__(self, name):
self.name = name
def __repr__(self):
return '<Vehicle id="%r" owner_id="%r" name="%r" />' % (self.id, self.owner_id, self.name)
2016-04-23 23:24:25 +02:00
2016-04-23 23:08:39 +02:00
class Pitstop(db.Model):
2016-07-04 20:19:59 +02:00
"""
Entity to represent a pitstop for a single consumable.
Attributes:
* the date of the pitstop
* the odometer of the pitstop
* the id of the fuelled consumable
* amount of consumable used
* the costs of the consumable
* the id of the vehicle that was refuelled
"""
2016-04-23 23:08:39 +02:00
id = db.Column(db.Integer, primary_key=True)
date = db.Column(db.Date)
odometer = db.Column(db.Integer)
consumable_id = db.Column(db.Integer, db.ForeignKey('consumable.id'))
2016-07-04 20:19:59 +02:00
amount = db.Column(db.Numeric(5, 2))
costs = db.Column(db.Numeric(5, 2), default=0)
2016-04-23 23:24:25 +02:00
vehicle_id = db.Column(db.Integer, db.ForeignKey('vehicle.id'))
2016-07-04 20:19:59 +02:00
# short cut to access the fuelled consumable of the pitstop
consumable = db.relationship('Consumable')
# this uniqueness constraint makes sure that for each consumable and each vehicle only one pitstop exists at the
# same odometer
__table_args__ = (db.UniqueConstraint('odometer',
'consumable_id',
'vehicle_id',
name='_odometer_consumable_vehicle_uniq'),)
def __init__(self, odometer, amount, date, costs, consumable_id):
2016-04-23 23:08:39 +02:00
self.odometer = odometer
2016-07-04 20:19:59 +02:00
self.amount = amount
2016-04-23 23:08:39 +02:00
self.date = date
self.costs = costs
self.consumable_id = consumable_id
2016-04-23 23:08:39 +02:00
def __repr__(self):
2016-07-04 20:19:59 +02:00
return '<Pitstop odometer="%r" amount="%r" date="%r" vehicle_id="%r" consumable_id="%r">' % \
(self.odometer, self.amount, self.date, self.vehicle_id, self.consumable_id)
class Consumable(db.Model):
2016-07-04 20:19:59 +02:00
"""
Entity to represent a material that be consumed by a vehilce.
Attributes:
* name (must be globally unique)
* unit
"""
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String(255), unique=True)
unit = db.Column(db.String(255))
2016-07-04 20:19:59 +02:00
2016-06-28 23:33:24 +02:00
vehicles = db.relationship(
'Vehicle',
secondary=vehicles_consumables
)
def __init__(self, name, unit):
self.name = name
self.unit = unit
2016-04-23 23:08:39 +02:00
def __repr__(self):
return '<Consumable name="%s" unit="%s" />' % (self.name, self.unit)
2016-11-01 11:17:54 +01:00
class Service(db.Model):
id = db.Column(db.Integer, primary_key=True)
date = db.Column(db.Date)
odometer = db.Column(db.Integer)
vehicle_id = db.Column(db.Integer, db.ForeignKey('vehicle.id'))
costs = db.Column(db.Numeric(10, 2), default=0)
description = db.Column(db.String(4096))
def __init__(self, date, odometer, vehicle_id, costs, description):
self.description = description
self.costs = costs
self.date = date
self.odometer = odometer
self.vehicle_id = vehicle_id
def __repr__(self):
return '<Service odometer="%r" date="%r" vehicle_id="%r" costs="%r" description="%r">' % \
(self.odometer, self.date, self.vehicle_id, self.costs, self.description)