mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-03-01 09:30:46 +00:00
* WIP: some initial test code to test out celery w/ burnettk * some cleanup for celery and added base model to put tasks waiting on timers * removed dup bpmn file * some more cleanup and added strategy to queue instructions * some minor code changes w/ burnettk * remove the unused next_task key from api calls since nobody uses it w/ burnettk essweine * added migration for future tasks and added test to make sure we are inserting into it w/ burnettk essweine * ensure future task run at time can be updated w/ burnettk * added table to queue instructions for end user in w/ burnettk * added test to ensure we are storing instructions for end users w/ burnettk * added progress page to display new instructions to user * ignore dup instructions on db insert w/ burnettk * some more updates for celery w/ burnettk * some pyl and test fixes w/ burnettk * fixed tests w/ burnettk * WIP: added in page to show instructions on pi show page w/ burnettk * pi show page is fully using not interstitial now w/ burnettk * fixed broken test w/ burnettk * moved background processing items to own module w/ burnettk * fixed apscheduler start script * updated celery task queue to handle future tasks and upgraded black and set its line-length to match ruff w/ burnettk * added support to run future tasks using countdown w/ burnettk * build image for celery branch w/ burnettk * poet does not exist in the image w/ burnettk * start blocking scheduler should always start the scheduler w/ burnettk * add init and stuff for this branch * make this work not just on my mac * send other args to only * added running status for process instance and use that on fe to go to show page and added additional identifier to locking system to isolate celery workers better w/ burnettk * fixed typing error that typeguard found, not sure why mypy did not w/ burnettk * do not check for no instructions on interstitial page for cypress tests on frontend w/ burnettk * do not queue process instances twice w/ burnettk * removed bad file w/ burnettk * queue tasks using strings to avoid circular imports when attmepting to queue w/ burnettk * only queue imminent new timer events and mock celery * some keyboard shortcut support on frontend and added ability to force run a process instance over the api w/ burnettk * some styles added for the shortcut menu w/ burnettk * pyl w/ burnettk * fixed test w/ burnettk * removed temporary celery script and added support for celery worker in run server locally w/ burnettk * cleaned up migrations w/ burnettk * created new migration to clean up old migrations --------- Co-authored-by: jasquat <jasquat@users.noreply.github.com> Co-authored-by: burnettk <burnettk@users.noreply.github.com>
117 lines
4.2 KiB
Python
117 lines
4.2 KiB
Python
"""Loads and sets up all database models for SQLAlchemy.
|
|
|
|
autoflake8 will remove these lines without the noqa comment
|
|
|
|
NOTE: make sure this file is ignored by reorder-python-imports since
|
|
some models need to be loaded before others for relationships and to
|
|
avoid circular imports
|
|
"""
|
|
|
|
# unused imports are needed for SQLAlchemy to load the models
|
|
# ruff: noqa: F401
|
|
|
|
# we do not want to sort imports in this file, since the order matters
|
|
# ruff: noqa: I001
|
|
|
|
from spiffworkflow_backend.models.db import add_listeners
|
|
|
|
# must load these before UserModel and GroupModel for relationships
|
|
from spiffworkflow_backend.models.user_group_assignment import (
|
|
UserGroupAssignmentModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.principal import PrincipalModel # noqa: F401
|
|
|
|
|
|
from spiffworkflow_backend.models.human_task import HumanTaskModel # noqa: F401
|
|
from spiffworkflow_backend.models.spec_reference import (
|
|
SpecReferenceCache,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.cache_generation import (
|
|
CacheGenerationModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.reference_cache import (
|
|
ReferenceCacheModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.process_caller import (
|
|
ProcessCallerCacheModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.message_instance import (
|
|
MessageInstanceModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.message_triggerable_process_model import (
|
|
MessageTriggerableProcessModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.permission_assignment import (
|
|
PermissionAssignmentModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.permission_target import (
|
|
PermissionTargetModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.process_instance import (
|
|
ProcessInstanceModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.process_instance_report import (
|
|
ProcessInstanceReportModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.refresh_token import RefreshTokenModel # noqa: F401
|
|
from spiffworkflow_backend.models.secret_model import SecretModel # noqa: F401
|
|
from spiffworkflow_backend.models.user import UserModel # noqa: F401
|
|
from spiffworkflow_backend.models.group import GroupModel # noqa: F401
|
|
from spiffworkflow_backend.models.process_instance_metadata import (
|
|
ProcessInstanceMetadataModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.process_instance_file_data import (
|
|
ProcessInstanceFileDataModel,
|
|
) # noqa: F401
|
|
|
|
from spiffworkflow_backend.models.bpmn_process import BpmnProcessModel # noqa: F401
|
|
from spiffworkflow_backend.models.bpmn_process_definition import (
|
|
BpmnProcessDefinitionModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.task import TaskModel # noqa: F401
|
|
from spiffworkflow_backend.models.task_definition import (
|
|
TaskDefinitionModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.json_data import JsonDataModel # noqa: F401
|
|
from spiffworkflow_backend.models.bpmn_process_definition_relationship import (
|
|
BpmnProcessDefinitionRelationshipModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.process_instance_queue import (
|
|
ProcessInstanceQueueModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.active_user import (
|
|
ActiveUserModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.process_model_cycle import (
|
|
ProcessModelCycleModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.typeahead import (
|
|
TypeaheadModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.json_data_store import (
|
|
JSONDataStoreModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.kkv_data_store import (
|
|
KKVDataStoreModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.task_draft_data import (
|
|
TaskDraftDataModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.configuration import (
|
|
ConfigurationModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.user_property import (
|
|
UserPropertyModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.service_account import (
|
|
ServiceAccountModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.future_task import (
|
|
FutureTaskModel,
|
|
) # noqa: F401
|
|
from spiffworkflow_backend.models.feature_flag import (
|
|
FeatureFlagModel,
|
|
) # noqa: F401
|
|
|
|
add_listeners()
|