2019-02-11 20:34:45 +00:00
|
|
|
import os
|
2019-01-23 15:55:04 +00:00
|
|
|
import uuid
|
2018-04-27 17:16:43 +00:00
|
|
|
from typing import Type
|
|
|
|
|
2019-01-23 15:55:04 +00:00
|
|
|
import boltons.urlutils
|
|
|
|
import click
|
|
|
|
import click_spinner
|
|
|
|
import ereuse_utils.cli
|
2019-01-19 18:19:35 +00:00
|
|
|
from ereuse_utils.session import DevicehubClient
|
2022-01-04 10:59:03 +00:00
|
|
|
from flask import _app_ctx_stack, g
|
|
|
|
from flask_login import LoginManager, current_user
|
2018-04-27 17:16:43 +00:00
|
|
|
from flask_sqlalchemy import SQLAlchemy
|
2022-04-05 08:36:04 +00:00
|
|
|
from teal.db import ResourceNotFound, SchemaSQLAlchemy
|
2020-08-17 14:45:18 +00:00
|
|
|
from teal.teal import Teal
|
2018-04-27 17:16:43 +00:00
|
|
|
|
|
|
|
from ereuse_devicehub.auth import Auth
|
2020-07-23 15:44:24 +00:00
|
|
|
from ereuse_devicehub.client import Client, UserClient
|
2022-07-22 13:23:49 +00:00
|
|
|
from ereuse_devicehub.commands.reports import Report
|
2022-07-22 15:49:51 +00:00
|
|
|
from ereuse_devicehub.commands.users import GetToken
|
2019-01-23 15:55:04 +00:00
|
|
|
from ereuse_devicehub.config import DevicehubConfig
|
2018-04-27 17:16:43 +00:00
|
|
|
from ereuse_devicehub.db import db
|
2018-06-20 21:18:15 +00:00
|
|
|
from ereuse_devicehub.dummy.dummy import Dummy
|
2018-09-29 10:24:22 +00:00
|
|
|
from ereuse_devicehub.resources.device.search import DeviceSearch
|
2019-01-23 15:55:04 +00:00
|
|
|
from ereuse_devicehub.resources.inventory import Inventory, InventoryDef
|
2021-12-28 11:32:38 +00:00
|
|
|
from ereuse_devicehub.resources.user.models import User
|
2022-01-04 10:59:03 +00:00
|
|
|
from ereuse_devicehub.templating import Environment
|
2021-12-28 11:32:38 +00:00
|
|
|
|
|
|
|
|
2018-04-10 15:06:39 +00:00
|
|
|
class Devicehub(Teal):
|
|
|
|
test_client_class = Client
|
2018-06-20 21:18:15 +00:00
|
|
|
Dummy = Dummy
|
2022-07-22 13:23:49 +00:00
|
|
|
Report = Report
|
2019-07-07 19:36:09 +00:00
|
|
|
jinja_environment = Environment
|
2018-04-27 17:16:43 +00:00
|
|
|
|
2022-04-05 08:36:04 +00:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
inventory: str,
|
|
|
|
config: DevicehubConfig = DevicehubConfig(),
|
|
|
|
db: SQLAlchemy = db,
|
|
|
|
import_name=__name__.split('.')[0],
|
|
|
|
static_url_path=None,
|
|
|
|
static_folder='static',
|
|
|
|
static_host=None,
|
|
|
|
host_matching=False,
|
|
|
|
subdomain_matching=False,
|
|
|
|
template_folder='templates',
|
|
|
|
instance_path=None,
|
|
|
|
instance_relative_config=False,
|
|
|
|
root_path=None,
|
|
|
|
Auth: Type[Auth] = Auth,
|
|
|
|
):
|
2019-01-23 15:55:04 +00:00
|
|
|
assert inventory
|
2022-04-05 08:36:04 +00:00
|
|
|
super().__init__(
|
|
|
|
config,
|
|
|
|
db,
|
|
|
|
inventory,
|
|
|
|
import_name,
|
|
|
|
static_url_path,
|
|
|
|
static_folder,
|
|
|
|
static_host,
|
|
|
|
host_matching,
|
|
|
|
subdomain_matching,
|
|
|
|
template_folder,
|
|
|
|
instance_path,
|
|
|
|
instance_relative_config,
|
|
|
|
root_path,
|
|
|
|
False,
|
|
|
|
Auth,
|
|
|
|
)
|
2019-01-23 15:55:04 +00:00
|
|
|
self.id = inventory
|
|
|
|
"""The Inventory ID of this instance. In Teal is the app.schema."""
|
2018-06-20 21:18:15 +00:00
|
|
|
self.dummy = Dummy(self)
|
2022-07-22 13:23:49 +00:00
|
|
|
self.report = Report(self)
|
2022-07-22 15:49:51 +00:00
|
|
|
self.get_token = GetToken(self)
|
2019-02-11 20:34:45 +00:00
|
|
|
|
2022-04-05 08:36:04 +00:00
|
|
|
@self.cli.group(
|
|
|
|
short_help='Inventory management.',
|
|
|
|
help='Manages the inventory {}.'.format(os.environ.get('dhi')),
|
|
|
|
)
|
2019-02-11 20:34:45 +00:00
|
|
|
def inv():
|
|
|
|
pass
|
|
|
|
|
|
|
|
inv.command('add')(self.init_db)
|
|
|
|
inv.command('del')(self.delete_inventory)
|
|
|
|
inv.command('search')(self.regenerate_search)
|
2019-01-23 15:55:04 +00:00
|
|
|
self.before_request(self._prepare_request)
|
2018-09-29 10:24:22 +00:00
|
|
|
|
2021-12-28 11:32:38 +00:00
|
|
|
self.configure_extensions()
|
|
|
|
|
|
|
|
def configure_extensions(self):
|
|
|
|
# configure Flask-Login
|
|
|
|
login_manager = LoginManager()
|
|
|
|
login_manager.init_app(self)
|
2022-04-05 08:36:04 +00:00
|
|
|
login_manager.login_view = "core.login"
|
2021-12-28 11:32:38 +00:00
|
|
|
|
|
|
|
@login_manager.user_loader
|
|
|
|
def load_user(user_id):
|
2022-04-05 08:36:04 +00:00
|
|
|
# TODO(@slamora) refactor when teal library has been drop.
|
|
|
|
# `load_user` expects None if the user ID is invalid or the
|
|
|
|
# session has expired so we need to handle Exception raised
|
|
|
|
# by teal (it's overriding default behaviour of flask-sqlalchemy
|
|
|
|
# which already returns None)
|
|
|
|
try:
|
|
|
|
return User.query.get(user_id)
|
|
|
|
except ResourceNotFound:
|
|
|
|
return None
|
2021-12-28 11:32:38 +00:00
|
|
|
|
2019-01-23 15:55:04 +00:00
|
|
|
# noinspection PyMethodOverriding
|
2022-04-05 08:36:04 +00:00
|
|
|
@click.option(
|
|
|
|
'--name', '-n', default='Test 1', help='The human name of the inventory.'
|
|
|
|
)
|
|
|
|
@click.option(
|
|
|
|
'--org-name',
|
|
|
|
'-on',
|
|
|
|
default='My Organization',
|
|
|
|
help='The name of the default organization that owns this inventory.',
|
|
|
|
)
|
|
|
|
@click.option(
|
|
|
|
'--org-id', '-oi', default='foo-bar', help='The Tax ID of the organization.'
|
|
|
|
)
|
|
|
|
@click.option(
|
|
|
|
'--tag-url',
|
|
|
|
'-tu',
|
|
|
|
type=ereuse_utils.cli.URL(scheme=True, host=True, path=False),
|
|
|
|
default='http://example.com',
|
|
|
|
help='The base url (scheme and host) of the tag provider.',
|
|
|
|
)
|
|
|
|
@click.option(
|
|
|
|
'--tag-token',
|
|
|
|
'-tt',
|
|
|
|
type=click.UUID,
|
|
|
|
default='899c794e-1737-4cea-9232-fdc507ab7106',
|
|
|
|
help='The token provided by the tag provider. It is an UUID.',
|
|
|
|
)
|
|
|
|
@click.option(
|
|
|
|
'--erase/--no-erase',
|
|
|
|
default=False,
|
|
|
|
help='Delete the schema before? '
|
|
|
|
'If --common is set this includes the common database.',
|
|
|
|
)
|
|
|
|
@click.option(
|
|
|
|
'--common/--no-common',
|
|
|
|
default=False,
|
|
|
|
help='Creates common databases. Only execute if the database is empty.',
|
|
|
|
)
|
|
|
|
def init_db(
|
|
|
|
self,
|
|
|
|
name: str,
|
|
|
|
org_name: str,
|
|
|
|
org_id: str,
|
|
|
|
tag_url: boltons.urlutils.URL,
|
|
|
|
tag_token: uuid.UUID,
|
|
|
|
erase: bool,
|
|
|
|
common: bool,
|
|
|
|
):
|
2019-02-11 20:34:45 +00:00
|
|
|
"""Creates an inventory.
|
|
|
|
|
|
|
|
This creates the database and adds the inventory to the
|
|
|
|
inventory tables with the passed-in settings, and does nothing if the
|
|
|
|
inventory already exists.
|
|
|
|
|
|
|
|
After you create the inventory you might want to create an user
|
|
|
|
executing *dh user add*.
|
|
|
|
"""
|
2019-01-23 15:55:04 +00:00
|
|
|
assert _app_ctx_stack.top, 'Use an app context.'
|
|
|
|
print('Initializing database...'.ljust(30), end='')
|
|
|
|
with click_spinner.spinner():
|
|
|
|
if erase:
|
2019-02-04 12:38:46 +00:00
|
|
|
self.db.drop_all(common_schema=common)
|
2022-04-05 08:36:04 +00:00
|
|
|
assert not db.has_schema(self.id), 'Schema {} already exists.'.format(
|
|
|
|
self.id
|
|
|
|
)
|
2019-01-23 15:55:04 +00:00
|
|
|
exclude_schema = 'common' if not common else None
|
|
|
|
self._init_db(exclude_schema=exclude_schema)
|
2022-04-05 08:36:04 +00:00
|
|
|
InventoryDef.set_inventory_config(
|
|
|
|
name, org_name, org_id, tag_url, tag_token
|
|
|
|
)
|
2019-01-21 15:08:55 +00:00
|
|
|
DeviceSearch.set_all_devices_tokens_if_empty(self.db.session)
|
2019-01-23 15:55:04 +00:00
|
|
|
self._init_resources(exclude_schema=exclude_schema)
|
|
|
|
self.db.session.commit()
|
|
|
|
print('done.')
|
2018-10-31 11:27:16 +00:00
|
|
|
|
2020-05-11 08:07:23 +00:00
|
|
|
def _init_db(self, exclude_schema=None) -> bool:
|
|
|
|
if exclude_schema:
|
|
|
|
assert isinstance(self.db, SchemaSQLAlchemy)
|
|
|
|
self.db.create_all(exclude_schema=exclude_schema)
|
|
|
|
else:
|
|
|
|
self.db.create_all()
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
2022-04-05 08:36:04 +00:00
|
|
|
@click.confirmation_option(
|
|
|
|
prompt='Are you sure you want to delete the inventory {}?'.format(
|
|
|
|
os.environ.get('dhi')
|
|
|
|
)
|
|
|
|
)
|
2019-02-11 20:34:45 +00:00
|
|
|
def delete_inventory(self):
|
|
|
|
"""Erases an inventory.
|
|
|
|
|
|
|
|
This removes its private database and its entry in the common
|
|
|
|
inventory.
|
|
|
|
|
|
|
|
This deletes users that have only access to this inventory.
|
|
|
|
"""
|
|
|
|
InventoryDef.delete_inventory()
|
|
|
|
self.db.session.commit()
|
|
|
|
self.db.drop_all(common_schema=False)
|
|
|
|
|
2018-10-31 11:27:16 +00:00
|
|
|
def regenerate_search(self):
|
|
|
|
"""Re-creates from 0 all the search tables."""
|
|
|
|
DeviceSearch.regenerate_search_table(self.db.session)
|
|
|
|
db.session.commit()
|
|
|
|
print('Done.')
|
2019-01-23 15:55:04 +00:00
|
|
|
|
|
|
|
def _prepare_request(self):
|
|
|
|
"""Prepares request stuff."""
|
|
|
|
inv = g.inventory = Inventory.current # type: Inventory
|
2022-04-05 08:36:04 +00:00
|
|
|
g.tag_provider = DevicehubClient(
|
|
|
|
base_url=inv.tag_provider, token=DevicehubClient.encode_token(inv.tag_token)
|
|
|
|
)
|
2022-01-04 10:59:03 +00:00
|
|
|
# NOTE: models init methods expects that current user is
|
|
|
|
# available on g.user (e.g. to initialize object owner)
|
|
|
|
g.user = current_user
|
2020-07-23 15:44:24 +00:00
|
|
|
|
|
|
|
def create_client(self, email='user@dhub.com', password='1234'):
|
|
|
|
client = UserClient(self, email, password, response_wrapper=self.response_class)
|
|
|
|
client.login()
|
|
|
|
return client
|