74 lines
2.7 KiB
Python
74 lines
2.7 KiB
Python
from distutils.version import StrictVersion
|
|
from itertools import chain
|
|
from typing import Set
|
|
|
|
import boltons.urlutils
|
|
from teal.auth import TokenAuth
|
|
from teal.config import Config
|
|
from teal.enums import Currency
|
|
from teal.utils import import_resource
|
|
|
|
from ereuse_devicehub.resources import agent, event, lot, tag, user
|
|
from ereuse_devicehub.resources.device import definitions
|
|
from ereuse_devicehub.resources.documents import documents
|
|
from ereuse_devicehub.resources.enums import PriceSoftware, RatingSoftware
|
|
|
|
|
|
class DevicehubConfig(Config):
|
|
RESOURCE_DEFINITIONS = set(chain(import_resource(definitions),
|
|
import_resource(event),
|
|
import_resource(user),
|
|
import_resource(tag),
|
|
import_resource(agent),
|
|
import_resource(lot),
|
|
import_resource(documents))
|
|
)
|
|
PASSWORD_SCHEMES = {'pbkdf2_sha256'} # type: Set[str]
|
|
SQLALCHEMY_DATABASE_URI = 'postgresql://dhub:ereuse@localhost/devicehub' # type: str
|
|
SCHEMA = 'dhub'
|
|
MIN_WORKBENCH = StrictVersion('11.0a1') # type: StrictVersion
|
|
"""
|
|
the minimum version of ereuse.org workbench that this devicehub
|
|
accepts. we recommend not changing this value.
|
|
"""
|
|
ORGANIZATION_NAME = None # type: str
|
|
ORGANIZATION_TAX_ID = None # type: str
|
|
"""
|
|
The organization using this Devicehub.
|
|
|
|
It is used by default, for example, when creating tags.
|
|
"""
|
|
API_DOC_CONFIG_TITLE = 'Devicehub'
|
|
API_DOC_CONFIG_VERSION = '0.2'
|
|
API_DOC_CONFIG_COMPONENTS = {
|
|
'securitySchemes': {
|
|
'bearerAuth': TokenAuth.API_DOCS
|
|
}
|
|
}
|
|
API_DOC_CLASS_DISCRIMINATOR = 'type'
|
|
|
|
WORKBENCH_RATE_SOFTWARE = RatingSoftware.ECost
|
|
WORKBENCH_RATE_VERSION = StrictVersion('1.0')
|
|
PHOTOBOX_RATE_SOFTWARE = RatingSoftware.ECost
|
|
PHOTOBOX_RATE_VERSION = StrictVersion('1.0')
|
|
"""
|
|
Official versions for WorkbenchRate and PhotoboxRate
|
|
"""
|
|
PRICE_SOFTWARE = PriceSoftware.Ereuse
|
|
PRICE_VERSION = StrictVersion('1.0')
|
|
PRICE_CURRENCY = Currency.EUR
|
|
"""
|
|
Official versions
|
|
"""
|
|
TAG_BASE_URL = None
|
|
TAG_TOKEN = None
|
|
"""Access to the tag provider."""
|
|
|
|
def __init__(self, db: str = None) -> None:
|
|
if not self.ORGANIZATION_NAME or not self.ORGANIZATION_TAX_ID:
|
|
raise ValueError('You need to set the main organization parameters.')
|
|
if not self.TAG_BASE_URL or not self.TAG_TOKEN:
|
|
raise ValueError('You need a tag service.')
|
|
self.TAG_BASE_URL = boltons.urlutils.URL(self.TAG_BASE_URL)
|
|
super().__init__(db)
|