scinote-web/config/initializers/extends.rb
artoscinote bc5822de7b
Added error messges for missing search columns/values [SCI-6483] (#3824)
* Added error messges for missing search columns/values [SCI-6483]
2022-02-11 10:24:29 +01:00

451 lines
17 KiB
Ruby

# Extends class holds the arrays for the models enum fields
# so that can be extended in sub modules.
# rubocop:disable Style/MutableConstant
class Extends
# To extend the enum fields in the engine you have to put in
# lib/engine_name/engine.rb file as in the example:
# > initializer 'add_additional enum values to my model' do
# > Extends::MY_ARRAY_OF_ENUM_VALUES.merge!(value1, value2, ....)
# > end
# >
# Extends enum types. Should not be freezed, as modules might append to this.
# !!!Check all addons for the correct order!!!
# DEPRECATED 'system_message' in (SCI-2952, kept b/c of integer enums)
NOTIFICATIONS_TYPES = { assignment: 0,
recent_changes: 1,
system_message: 2, # DEPRECATED
deliver: 5,
deliver_error: 7 }
TASKS_STATES = { uncompleted: 0,
completed: 1 }
REPORT_ELEMENT_TYPES = { project_header: 0,
my_module: 1,
step: 2,
result_asset: 3,
result_table: 4,
result_text: 5,
my_module_activity: 6,
my_module_samples: 7, # DEPRECATED in SCI-2228, kept b/c of integer enums
step_checklist: 8,
step_asset: 9,
step_table: 10,
step_comments: 11,
result_comments: 12,
project_activity: 13, # NOT USED, kept b/c of integer enums
project_samples: 14, # DEPRECATED in SCI-2228, kept b/c of integer enums
experiment: 15,
# Higher number because of addons
my_module_repository: 17,
my_module_protocol: 18 }
ACTIVE_REPORT_ELEMENTS = %i(project_header my_module experiment my_module_repository)
# Data type name should match corresponding model's name
REPOSITORY_DATA_TYPES = { RepositoryTextValue: 0,
RepositoryDateValue: 1,
RepositoryListValue: 2,
RepositoryAssetValue: 3,
RepositoryStatusValue: 4,
RepositoryDateTimeValue: 5,
RepositoryTimeValue: 6,
RepositoryDateTimeRangeValue: 7,
RepositoryTimeRangeValue: 8,
RepositoryDateRangeValue: 9,
RepositoryChecklistValue: 10,
RepositoryNumberValue: 11 }
# Data types which can be imported to repository,
# name should match record in REPOSITORY_DATA_TYPES
REPOSITORY_IMPORTABLE_TYPES = %i(RepositoryTextValue RepositoryListValue RepositoryNumberValue
RepositoryDateValue RepositoryDateTimeValue RepositoryTimeValue
RepositoryStatusValue RepositoryChecklistValue)
REPOSITORY_IMPORT_COLUMN_PRELOADS = %i(repository_list_items repository_status_items repository_checklist_items)
# Extra attributes used for search in repositories, 'filed_name' => include_hash
REPOSITORY_EXTRA_SEARCH_ATTR = {
RepositoryTextValue: {
field: 'repository_text_values.data', includes: :repository_text_values
}, RepositoryNumberValue: {
field: 'repository_number_values.data', includes: :repository_number_values
}, RepositoryListValue: {
field: 'repository_list_items.data',
includes: { repository_list_values: :repository_list_item }
}, RepositoryChecklistValue: {
field: 'repository_checklist_items.data',
includes: { repository_checklist_values: { repository_checklist_items_values: :repository_checklist_item } }
}, RepositoryStatusValue: {
field: 'repository_status_items.status',
includes: { repository_status_values: :repository_status_item }
}, RepositoryAssetValue: {
field: 'active_storage_blobs.filename',
includes: { repository_asset_values: { asset: { file_attachment: :blob } } }
}
}
# Extra attributes used for advanced search in repositories
REPOSITORY_ADVANCED_SEARCH_ATTR = {
RepositoryTextValue: {
field: 'repository_text_values.data', table_name: :repository_text_values
}, RepositoryNumberValue: {
field: 'repository_number_values.data', table_name: :repository_number_values
}, RepositoryListValue: {
field: 'repository_list_items.data', table_name: :repository_list_values
}, RepositoryChecklistValue: {
field: 'repository_checklist_items.data', table_name: :repository_checklist_values
}, RepositoryStatusValue: {
field: 'repository_status_items.status', table_name: :repository_status_values
}, RepositoryAssetValue: {
field: 'active_storage_blobs.filename', table_name: :repository_asset_values
}, RepositoryDateTimeValue: {
field: 'repository_date_time_values.data', table_name: :repository_date_time_values
}, RepositoryDateTimeRangeValue: {
field: 'repository_date_time_range_values.data', table_name: :repository_date_time_range_values
}, RepositoryDateValue: {
field: 'repository_date_time_values.data', table_name: :repository_date_time_values
}, RepositoryDateRangeValue: {
field: 'repository_date_time_range_values.data', table_name: :repository_date_time_range_values
}, RepositoryTimeValue: {
field: 'repository_date_time_values.data', table_name: :repository_date_time_values
}, RepositoryTimeRangeValue: {
field: 'repository_date_time_range_values.data', table_name: :repository_date_time_range_values
}
}
REPOSITORY_ADVANCED_SEARCH_REFERENCED_VALUE_RELATIONS = {
RepositoryListValue: 'repository_list_items',
RepositoryChecklistValue: 'repository_checklist_items',
RepositoryStatusValue: 'repository_status_items'
}
REPOSITORY_ADVANCED_SEARCHABLE_COLUMNS = %i(
RepositoryTextValue
RepositoryNumberValue
RepositoryListValue
RepositoryChecklistValue
RepositoryStatusValue
RepositoryAssetValue
RepositoryDateTimeValue
RepositoryDateTimeRangeValue
RepositoryDateValue
RepositoryDateRangeValue
RepositoryTimeValue
RepositoryTimeRangeValue
)
# Array of preload relations used in search query for repository rows
REPOSITORY_ROWS_PRELOAD_RELATIONS = []
# List of implemented core API versions
API_VERSIONS = ['v1']
# Array used for injecting names of additional authentication methods for API
API_PLUGABLE_AUTH_METHODS = [:azure_jwt_auth]
API_REPOSITORY_DATA_TYPE_MAPPINGS = { 'RepositoryTextValue' => 'text',
'RepositoryDateValue' => 'date',
'RepositoryNumberValue' => 'number',
'RepositoryTimeValue' => 'time',
'RepositoryDateTimeValue' => 'date_time',
'RepositoryDateRangeValue' => 'date_range',
'RepositoryTimeRangeValue' => 'time_range',
'RepositoryDateTimeRangeValue' => 'date_time_range',
'RepositoryListValue' => 'list',
'RepositoryChecklistValue' => 'checklist',
'RepositoryAssetValue' => 'file',
'RepositoryStatusValue' => 'status' }
OMNIAUTH_PROVIDERS = %i(linkedin customazureactivedirectory okta)
INITIAL_USER_OPTIONS = {}
# Hash used for mapping file extensions to custom icons,
# 'extension' => 'path_to_the_icon'
FILE_ICON_MAPPINGS = {}
# Hash used for mapping file extensions to custom font awesome icon classes,
# 'extension' => 'fa class'
FILE_FA_ICON_MAPPINGS = {}
# Mapping of rich text fileds to specific model
RICH_TEXT_FIELD_MAPPINGS = { 'Step' => :description,
'ResultText' => :text,
'Protocol' => :description,
'MyModule' => :description }
DEFAULT_DASHBOARD_CONFIGURATION = [
{ partial: 'dashboards/current_tasks', visible: true, size: 'large-widget', position: 1 },
{ partial: 'dashboards/calendar', visible: true, size: 'small-widget', position: 2 },
{ partial: 'dashboards/recent_work', visible: true, size: 'medium-widget', position: 3 }
]
ACTIVITY_SUBJECT_TYPES = %w(
Team RepositoryBase Project Experiment MyModule Result Protocol Report RepositoryRow ProjectFolder Asset Step
).freeze
SEARCHABLE_ACTIVITY_SUBJECT_TYPES = %w(
RepositoryBase RepositoryRow Project Experiment MyModule Result Protocol Step Report
).freeze
ACTIVITY_SUBJECT_CHILDREN = {
repository: [:repository_rows],
repository_row: nil,
report: nil,
project: nil,
experiment: [:my_modules],
my_module: %i(results protocols),
result: [:asset],
protocol: [:steps],
step: [:assets]
}
ACTIVITY_MESSAGE_ITEMS_TYPES =
ACTIVITY_SUBJECT_TYPES + %w(
User Tag RepositoryColumn RepositoryRow Step Asset TinyMceAsset
Repository MyModuleStatus RepositorySnapshot
).freeze
ACTIVITY_TYPES = {
create_project: 0,
rename_project: 1,
change_project_visibility: 2,
archive_project: 3,
restore_project: 4,
assign_user_to_project: 5,
change_user_role_on_project: 6,
unassign_user_from_project: 7,
create_module: 8,
clone_module: 9,
archive_module: 10,
restore_module: 11,
change_module_description: 12,
designate_user_to_my_module: 13,
undesignate_user_from_my_module: 14,
create_step: 15,
destroy_step: 16,
add_comment_to_step: 17,
complete_step: 18,
uncomplete_step: 19,
check_step_checklist_item: 20,
uncheck_step_checklist_item: 21,
edit_step: 22,
add_result: 23,
add_comment_to_result: 24,
archive_result: 25,
edit_result: 26,
create_experiment: 27,
edit_experiment: 28,
archive_experiment: 29,
clone_experiment: 30,
move_experiment: 31,
add_comment_to_project: 32,
edit_project_comment: 33,
delete_project_comment: 34,
add_comment_to_module: 35,
edit_module_comment: 36,
delete_module_comment: 37,
edit_step_comment: 38,
delete_step_comment: 39,
edit_result_comment: 40,
delete_result_comment: 41,
destroy_result: 42,
start_edit_wopi_file: 43, # not in use
unlock_wopi_file: 44, # not in use
load_protocol_to_task_from_file: 45,
load_protocol_to_task_from_repository: 46,
update_protocol_in_task_from_repository: 47,
create_report: 48,
delete_report: 49,
edit_report: 50,
assign_sample: 51, # not in use
unassign_sample: 52, # not in use
complete_task: 53,
uncomplete_task: 54,
assign_repository_record: 55,
unassign_repository_record: 56,
restore_experiment: 57,
rename_task: 58,
move_task: 59,
set_task_due_date: 61,
change_task_due_date: 62,
remove_task_due_date: 63,
add_task_tag: 64,
edit_tag: 65,
remove_task_tag: 66, # 67, 68, 69 are in addons
create_inventory: 70,
rename_inventory: 71,
delete_inventory: 72,
create_item_inventory: 73,
edit_item_inventory: 74,
delete_item_inventory: 75,
create_column_inventory: 76,
edit_column_inventory: 77,
delete_column_inventory: 78,
update_protocol_in_repository_from_task: 79,
create_protocol_in_repository: 80,
add_step_to_protocol_repository: 81,
edit_step_in_protocol_repository: 82,
delete_step_in_protocol_repository: 83,
edit_description_in_protocol_repository: 84,
edit_keywords_in_protocol_repository: 85,
edit_authors_in_protocol_repository: 86,
archive_protocol_in_repository: 87,
restore_protocol_in_repository: 88,
move_protocol_in_repository: 89,
import_protocol_in_repository: 90,
export_protocol_in_repository: 91,
invite_user_to_team: 92,
remove_user_from_team: 93,
change_users_role_on_team: 94,
export_projects: 95,
export_inventory_items: 96, # 97 is in addon
edit_wopi_file_on_result: 99,
edit_wopi_file_on_step: 100,
edit_wopi_file_on_step_in_repository: 101,
copy_inventory_item: 102,
copy_protocol_in_repository: 103,
user_leave_team: 104,
copy_inventory: 105,
export_protocol_from_task: 106,
import_inventory_items: 107,
create_tag: 108,
delete_tag: 109,
edit_image_on_result: 110,
edit_image_on_step: 111,
edit_image_on_step_in_repository: 112,
share_inventory: 113,
unshare_inventory: 114,
edit_chemical_structure_on_step: 115,
edit_chemical_structure_on_result: 116,
edit_chemical_structure_on_step_in_repository: 117,
edit_chemical_structure_on_task_protocol: 118,
edit_chemical_structure_on_protocol: 119,
edit_chemical_structure_on_task: 120,
create_chemical_structure_on_step: 121,
create_chemical_structure_on_result: 122,
create_chemical_structure_on_step_in_repository: 123,
create_chemical_structure_on_task_protocol: 124,
create_chemical_structure_on_protocol: 125,
create_chemical_structure_on_task: 126,
delete_chemical_structure_on_step: 127,
delete_chemical_structure_on_result: 128,
delete_chemical_structure_on_step_in_repository: 129,
delete_chemical_structure_on_task_protocol: 130,
delete_chemical_structure_on_protocol: 131,
delete_chemical_structure_on_task: 132,
update_share_inventory: 133,
share_inventory_with_all: 134,
unshare_inventory_with_all: 135,
update_share_with_all_permission_level: 136,
protocol_description_in_task_edited: 137,
set_task_start_date: 138,
change_task_start_date: 139,
remove_task_start_date: 140,
rename_experiment: 141,
archive_inventory_item: 142,
restore_inventory_item: 143,
archive_inventory: 144,
restore_inventory: 145,
export_inventory_items_assigned_to_task: 146,
export_inventory_snapshot_items_assigned_to_task: 147,
change_status_on_task_flow: 148, # 149..157 in AdddOn!
move_project: 158,
create_project_folder: 159,
move_project_folder: 160,
rename_project_folder: 161,
delete_project_folder: 162,
generate_pdf_report: 163,
generate_docx_report: 164,
change_user_role_on_experiment: 165,
change_user_role_on_my_module: 166,
edit_molecule_on_step: 168,
edit_molecule_on_result: 169,
edit_molecule_on_step_in_repository: 170,
create_molecule_on_step: 171,
create_molecule_on_result: 172,
create_molecule_on_step_in_repository: 173,
register_molecule_on_step: 177,
register_molecule_on_result: 178,
register_molecule_on_step_in_repository: 179
}
ACTIVITY_GROUPS = {
projects: [*0..7, 32, 33, 34, 95, 108, 65, 109, *158..162],
task_results: [23, 26, 25, 42, 24, 40, 41, 99, 110, 122, 116, 128, 169, 172, 178],
task: [8, 58, 9, 59, *10..14, 35, 36, 37, 53, 54, *60..63, 138, 139, 140, 64, 66, 106, 126, 120, 132,
*146..148, 166],
task_protocol: [15, 22, 16, 18, 19, 20, 21, 17, 38, 39, 100, 111, 45, 46, 47, 121, 124, 115, 118, 127, 130, 137,
168, 171, 177],
task_inventory: [55, 56, 146, 147],
experiment: [*27..31, 57, 141, 165],
reports: [48, 50, 49, 163, 164],
inventories: [70, 71, 105, 144, 145, 72, 73, 74, 102, 142, 143, 75, 76, 77, 78, 96, 107, 113, 114, *133..136],
protocol_repository: [80, 103, 89, 87, 79, 90, 91, 88, 85, 86, 84, 81, 82,
83, 101, 112, 123, 125, 117, 119, 129, 131, 170, 173, 179],
team: [92, 94, 93, 97, 104]
}
SHARED_INVENTORIES_PERMISSION_LEVELS = {
not_shared: 0,
shared_read: 1,
shared_write: 2
}.freeze
SHARED_INVENTORIES_PL_MAPPINGS = {
shared_read: 'view-only',
shared_write: 'edit'
}.freeze
DASHBOARD_BLACKLIST_ACTIVITY_TYPES = %i(export_protocol_in_repository copy_protocol_in_repository).freeze
DEFAULT_FLOW_NAME = 'SciNote Free default task flow'
DEFAULT_FLOW_STATUSES = [
{ name: 'Not started', color: '#406d86' },
{ name: 'In progress', color: '#0065ff', consequences: ['MyModuleStatusConsequences::Uncompletion'] },
{ name: 'Completed', color: '#00b900', consequences: ['MyModuleStatusConsequences::Completion'] }
]
REPORT_TEMPLATES = {}
NOTIFIABLE_ACTIVITIES = %w(
assign_user_to_project
unassign_user_from_project
change_user_role_on_project
edit_module_comment
delete_module_comment
add_comment_to_module
designate_user_to_my_module
undesignate_user_from_my_module
set_task_due_date
change_task_due_date
remove_task_due_date
invite_user_to_team
remove_user_from_team
change_users_role_on_team
set_task_start_date
change_task_start_date
remove_task_start_date
change_status_on_task_flow
sign_task
revoke_one_signature
reject_signature
create_group_signature_request
create_individual_signature_request
delete_individual_signature_request
delete_group_signature_request
change_user_role_on_experiment
change_user_role_on_my_module
)
STI_PRELOAD_CLASSES = %w(LinkedRepository BmtRepository)
end
# rubocop:enable Style/MutableConstant