scinote-web/config/routes.rb

539 lines
22 KiB
Ruby
Raw Normal View History

2016-02-12 23:52:43 +08:00
Rails.application.routes.draw do
2017-01-03 16:49:18 +08:00
require 'subdomain'
constraints UserSubdomain do
devise_for :users, controllers: { registrations: 'users/registrations',
sessions: 'users/sessions',
invitations: 'users/invitations',
confirmations: 'users/confirmations' }
root 'projects#index'
2016-02-12 23:52:43 +08:00
# Client APP endpoints
2017-08-03 22:03:15 +08:00
get '/settings', to: 'client_api/settings#index'
get '/settings/*all', to: 'client_api/settings#index'
2017-08-03 22:03:15 +08:00
namespace :client_api, defaults: { format: 'json' } do
2017-08-08 21:44:28 +08:00
# activities
2017-08-03 22:03:15 +08:00
get '/activities', to: 'activities#index'
2017-08-08 21:44:28 +08:00
# teams
2017-08-30 15:29:45 +08:00
get '/teams', to: 'teams/teams#index'
namespace :teams do
get '/new', to: 'teams#new'
2017-08-30 15:29:45 +08:00
get '/:team_id/details', to: 'teams#details'
post '/', to: 'teams#create'
2017-08-30 15:29:45 +08:00
post '/change_team', to: 'teams#change_team'
post '/update', to: 'teams#update'
2017-08-30 15:29:45 +08:00
end
2017-08-08 21:44:28 +08:00
# notifications
get '/recent_notifications', to: 'notifications#recent_notifications'
2017-08-09 15:08:13 +08:00
# users
2017-08-31 19:03:15 +08:00
get '/current_user_info', to: 'users/users#current_user_info'
2017-08-25 14:54:32 +08:00
namespace :users do
2017-09-13 23:11:51 +08:00
delete '/remove_user', to: 'user_teams#remove_user'
2017-08-25 14:54:32 +08:00
delete '/leave_team', to: 'user_teams#leave_team'
2017-08-31 21:56:55 +08:00
put '/update_role', to: 'user_teams#update_role'
2017-09-14 17:46:49 +08:00
get '/profile_info', to: 'users#profile_info'
get '/statistics_info', to: 'users#statistics_info'
get '/preferences_info', to: 'users#preferences_info'
2017-08-25 14:54:32 +08:00
delete '/leave_team', to: 'user_teams#leave_team'
post '/change_full_name', to: 'users#change_full_name'
post '/change_initials', to: 'users#change_initials'
post '/change_email', to: 'users#change_email'
post '/change_password', to: 'users#change_password'
post '/change_timezone', to: 'users#change_timezone'
post '/change_assignements_notification',
2017-09-04 20:56:03 +08:00
to: 'users#change_assignements_notification'
post '/change_assignements_notification_email',
2017-09-04 20:56:03 +08:00
to: 'users#change_assignements_notification_email'
post '/change_recent_notification',
to: 'users#change_recent_notification'
post '/change_recent_notification_email',
2017-09-04 20:56:03 +08:00
to: 'users#change_recent_notification_email'
post '/change_system_notification_email',
2017-09-04 20:56:03 +08:00
to: 'users#change_system_notification_email'
2017-09-20 17:31:07 +08:00
devise_scope :user do
put '/invite_users', to: 'invitations#invite_users'
end
2017-08-25 14:54:32 +08:00
end
end
2017-07-27 19:53:29 +08:00
# Save sample table state
post '/state_save/:team_id/:user_id',
to: 'user_samples#save_samples_table_status',
as: 'save_samples_table_status',
defaults: { format: 'json' }
post '/state_load/:team_id/:user_id',
to: 'user_samples#load_samples_table_status',
as: 'load_samples_table_status',
defaults: { format: 'json' }
resources :activities, only: [:index]
2016-02-12 23:52:43 +08:00
get 'forbidden', to: 'application#forbidden', as: 'forbidden'
get 'not_found', to: 'application#not_found', as: 'not_found'
2016-02-12 23:52:43 +08:00
2017-01-03 16:49:18 +08:00
# Settings
2017-07-28 21:37:28 +08:00
resources :users, only: :index # needed for testing signup
get 'users/settings/account/preferences',
to: 'users/settings/account/preferences#index',
2017-01-03 16:49:18 +08:00
as: 'preferences'
put 'users/settings/account/preferences',
to: 'users/settings/account/preferences#update',
2017-01-03 16:49:18 +08:00
as: 'update_preferences'
get 'users/settings/account/preferences/tutorial',
to: 'users/settings/account/preferences#tutorial',
2017-01-03 16:49:18 +08:00
as: 'tutorial'
post 'users/settings/account/preferences/reset_tutorial/',
to: 'users/settings/account/preferences#reset_tutorial',
2017-01-03 16:49:18 +08:00
as: 'reset_tutorial'
post 'users/settings/account/preferences/notifications_settings',
to: 'users/settings/account/preferences#notifications_settings',
as: 'notifications_settings',
defaults: { format: 'json' }
# Change user's current team
post 'users/settings/user_current_team',
to: 'users/settings#user_current_team',
as: 'user_current_team'
get 'users/settings/teams',
to: 'users/settings/teams#index',
as: 'teams'
post 'users/settings/teams/datatable',
to: 'users/settings/teams#datatable',
as: 'teams_datatable'
get 'users/settings/teams/new',
to: 'users/settings/teams#new',
as: 'new_team'
post 'users/settings/teams',
to: 'users/settings/teams#create',
as: 'create_team'
get 'users/settings/teams/:id',
to: 'users/settings/teams#show',
as: 'team'
post 'users/settings/teams/:id/users_datatable',
to: 'users/settings/teams#users_datatable',
as: 'team_users_datatable'
get 'users/settings/teams/:id/name_html',
to: 'users/settings/teams#name_html',
as: 'team_name'
get 'users/settings/teams/:id/description_html',
to: 'users/settings/teams#description_html',
as: 'team_description'
put 'users/settings/teams/:id',
to: 'users/settings/teams#update',
as: 'update_team'
delete 'users/settings/teams/:id',
to: 'users/settings/teams#destroy',
as: 'destroy_team'
put 'users/settings/user_teams/:id',
to: 'users/settings/user_teams#update',
as: 'update_user_team'
get 'users/settings/user_teams/:id/leave_html',
to: 'users/settings/user_teams#leave_html',
as: 'leave_user_team_html'
get 'users/settings/user_teams/:id/destroy_html',
to: 'users/settings/user_teams#destroy_html',
as: 'destroy_user_team_html'
delete 'users/settings/user_teams/:id',
to: 'users/settings/user_teams#destroy',
as: 'destroy_user_team'
2016-02-12 23:52:43 +08:00
# Invite users
devise_scope :user do
post '/invite',
to: 'users/invitations#invite_users',
as: 'invite_users'
end
2016-09-29 20:49:58 +08:00
# Notifications
get 'users/:id/recent_notifications',
to: 'user_notifications#recent_notifications',
as: 'recent_notifications',
defaults: { format: 'json' }
2016-09-29 20:49:58 +08:00
get 'users/:id/unseen_notification',
to: 'user_notifications#unseen_notification',
as: 'unseen_notification',
defaults: { format: 'json' }
2016-09-29 20:49:58 +08:00
get 'users/notifications',
to: 'user_notifications#index',
as: 'notifications'
2016-10-03 20:40:15 +08:00
2017-03-21 23:15:11 +08:00
# Get Zip Export
get 'zip_exports/download/:id',
to: 'zip_exports#download',
as: 'zip_exports_download'
2017-03-24 19:42:50 +08:00
2017-03-27 16:38:28 +08:00
get 'zip_exports/file_expired',
to: 'zip_exports#file_expired',
as: 'file_expired'
resources :teams do
2017-05-24 15:29:44 +08:00
resources :repositories, only: %i(index create destroy update) do
collection do
2017-06-06 21:50:43 +08:00
get 'create_modal', to: 'repositories#create_modal',
2017-05-24 15:29:44 +08:00
defaults: { format: 'json' }
end
2017-06-08 17:44:24 +08:00
get 'show_tab', to: 'repositories#show_tab',
defaults: { format: 'json' }
get 'destroy_modal', to: 'repositories#destroy_modal',
defaults: { format: 'json' }
get 'rename_modal', to: 'repositories#rename_modal',
defaults: { format: 'json' }
2017-06-08 00:43:48 +08:00
get 'copy_modal', to: 'repositories#copy_modal',
defaults: { format: 'json' }
post 'copy', to: 'repositories#copy',
defaults: { format: 'json' }
end
2017-01-03 16:49:18 +08:00
resources :samples, only: [:new, :create]
resources :sample_types, except: [:show, :new] do
get 'sample_type_element', to: 'sample_types#sample_type_element'
get 'destroy_confirmation', to: 'sample_types#destroy_confirmation'
end
resources :sample_groups, except: [:show, :new] do
get 'sample_group_element', to: 'sample_groups#sample_group_element'
get 'destroy_confirmation', to: 'sample_groups#destroy_confirmation'
end
2017-03-18 00:52:15 +08:00
resources :custom_fields, only: [:create, :edit, :update, :destroy] do
get 'destroy_html'
end
2017-01-03 16:49:18 +08:00
member do
post 'parse_sheet'
post 'import_samples'
post 'export_samples'
2017-06-06 22:12:34 +08:00
post 'export_repository', to: 'repositories#export_repository'
# Used for atwho (smart annotations)
get 'atwho_users', to: 'at_who#users'
get 'atwho_samples', to: 'at_who#samples'
get 'atwho_projects', to: 'at_who#projects'
get 'atwho_experiments', to: 'at_who#experiments'
get 'atwho_my_modules', to: 'at_who#my_modules'
get 'atwho_menu_items', to: 'at_who#menu_items'
2017-01-03 16:49:18 +08:00
end
match '*path',
to: 'teams#routing_error',
2017-01-03 16:49:18 +08:00
via: [:get, :post, :put, :patch]
end
2016-02-12 23:52:43 +08:00
2017-01-03 16:49:18 +08:00
get 'projects/archive', to: 'projects#archive', as: 'projects_archive'
2016-02-12 23:52:43 +08:00
2017-01-03 16:49:18 +08:00
resources :projects, except: [:new, :destroy] do
resources :user_projects, path: '/users',
only: [:create, :index, :update, :destroy]
2017-01-03 16:49:18 +08:00
resources :project_comments,
path: '/comments',
only: [:create, :index, :edit, :update, :destroy]
2017-01-03 16:49:18 +08:00
# Activities popup (JSON) for individual project in projects index,
# as well as all activities page for single project (HTML)
resources :project_activities, path: '/activities', only: [:index]
2017-01-03 16:49:18 +08:00
resources :tags, only: [:create, :update, :destroy]
resources :reports,
path: '/reports',
only: [:index, :new, :create, :edit, :update] do
collection do
# The posts following here should in theory be gets,
# but are posts because of parameters payload
post 'generate', to: 'reports#generate'
get 'new/', to: 'reports#new'
get 'new/project_contents_modal',
to: 'reports#project_contents_modal',
as: :project_contents_modal
post 'new/project_contents',
to: 'reports#project_contents',
as: :project_contents
get 'new/experiment_contents_modal',
to: 'reports#experiment_contents_modal',
as: :experiment_contents_modal
post 'new/experiment_contents',
to: 'reports#experiment_contents',
as: :experiment_contents
get 'new/module_contents_modal',
to: 'reports#module_contents_modal',
as: :module_contents_modal
post 'new/module_contents',
to: 'reports#module_contents',
as: :module_contents
get 'new/step_contents_modal',
to: 'reports#step_contents_modal',
as: :step_contents_modal
post 'new/step_contents',
to: 'reports#step_contents',
as: :step_contents
get 'new/result_contents_modal',
to: 'reports#result_contents_modal',
as: :result_contents_modal
post 'new/result_contents',
to: 'reports#result_contents',
as: :result_contents
post '_save',
to: 'reports#save_modal',
as: :save_modal
post 'destroy', as: :destroy # Destroy multiple entries at once
end
end
resources :experiments,
only: [:new, :create, :edit, :update],
defaults: { format: 'json' }
member do
# Notifications popup for individual project in projects index
get 'notifications'
get 'samples' # Samples for single project
# Renders sample datatable for single project (ajax action)
post 'samples_index'
get 'experiment_archive' # Experiment archive for single project
post :delete_samples,
constraints: CommitParamRouting.new(
ProjectsController::DELETE_SAMPLES
2017-01-03 16:49:18 +08:00
),
action: :delete_samples
end
# This route is defined outside of member block
# to preserve original :project_id parameter in URL.
2017-01-03 16:49:18 +08:00
get 'users/edit', to: 'user_projects#index_edit'
2016-02-12 23:52:43 +08:00
end
2017-01-03 16:49:18 +08:00
resources :experiments do
member do
get 'canvas' # Overview/structure for single experiment
# AJAX-loaded canvas edit mode (from canvas)
get 'canvas/edit', to: 'canvas#edit'
get 'canvas/full_zoom', to: 'canvas#full_zoom' # AJAX-loaded canvas zoom
# AJAX-loaded canvas zoom
get 'canvas/medium_zoom', to: 'canvas#medium_zoom'
get 'canvas/small_zoom', to: 'canvas#small_zoom' # AJAX-loaded canvas zoom
2017-01-03 16:49:18 +08:00
post 'canvas', to: 'canvas#update' # Save updated canvas action
get 'module_archive' # Module archive for single experiment
get 'archive' # archive experiment
get 'clone_modal' # return modal with clone options
post 'clone' # clone experiment
get 'move_modal' # return modal with move options
post 'move' # move experiment
get 'samples' # Samples for single project
get 'updated_img' # Checks if the workflow image is updated
get 'fetch_workflow_img' # Get udated workflow img
# Renders sample datatable for single project (ajax action)
post 'samples_index'
post :delete_samples,
constraints: CommitParamRouting.new(
ExperimentsController::DELETE_SAMPLES
2017-01-03 16:49:18 +08:00
),
action: :delete_samples
2016-02-12 23:52:43 +08:00
end
end
2017-01-03 16:49:18 +08:00
# Show action is a popup (JSON) for individual module in full-zoom canvas,
# as well as 'module info' page for single module (HTML)
resources :my_modules, path: '/modules', only: [:show, :update] do
resources :my_module_tags, path: '/tags', only: [:index, :create, :destroy]
resources :user_my_modules, path: '/users',
only: [:index, :create, :destroy]
2017-01-03 16:49:18 +08:00
resources :my_module_comments,
path: '/comments',
only: [:index, :create, :edit, :update, :destroy]
2017-01-03 16:49:18 +08:00
resources :sample_my_modules, path: '/samples_index', only: [:index]
resources :result_texts, only: [:new, :create]
resources :result_assets, only: [:new, :create]
resources :result_tables, only: [:new, :create]
member do
# AJAX popup accessed from full-zoom canvas for single module,
# as well as full activities view (HTML) for single module
get 'description'
get 'activities'
get 'activities_tab' # Activities in tab view for single module
get 'due_date'
get 'protocols' # Protocols view for single module
get 'results' # Results view for single module
get 'samples' # Samples view for single module
# Repository view for single module
get 'repository/:repository_id',
to: 'my_modules#repository',
as: :repository
2017-06-06 23:35:29 +08:00
post 'repository_index/:repository_id',
to: 'my_modules#repository_index',
as: :repository_index
post 'assign_repository_records/:repository_id',
to: 'my_modules#assign_repository_records',
as: :assign_repository_records
post 'unassign_repository_records/:repository_id',
to: 'my_modules#unassign_repository_records',
as: :unassign_repository_records
2017-01-03 16:49:18 +08:00
get 'archive' # Archive view for single module
get 'complete_my_module'
post 'toggle_task_state'
2017-01-03 16:49:18 +08:00
# Renders sample datatable for single module (ajax action)
post 'samples_index'
post :assign_samples,
constraints: CommitParamRouting.new(
MyModulesController::ASSIGN_SAMPLES
),
action: :assign_samples
post :assign_samples,
constraints: CommitParamRouting.new(
MyModulesController::UNASSIGN_SAMPLES
),
action: :unassign_samples
post :assign_samples,
constraints: CommitParamRouting.new(
MyModulesController::DELETE_SAMPLES
),
action: :delete_samples
end
2016-02-12 23:52:43 +08:00
# Those routes are defined outside of member block
# to preserve original id parameters in URL.
2017-01-03 16:49:18 +08:00
get 'tags/edit', to: 'my_module_tags#index_edit'
get 'users/edit', to: 'user_my_modules#index_edit'
2016-07-28 17:30:34 +08:00
end
2017-01-03 16:49:18 +08:00
resources :steps, only: [:edit, :update, :destroy, :show] do
resources :step_comments,
path: '/comments',
only: [:create, :index, :edit, :update, :destroy]
2017-01-03 16:49:18 +08:00
member do
post 'checklistitem_state'
post 'toggle_step_state'
get 'move_down'
get 'move_up'
end
2016-02-12 23:52:43 +08:00
end
# tinyMCE image uploader endpoint
post '/tinymce_assets', to: 'tiny_mce_assets#create', as: :tiny_mce_assets
2017-01-03 16:49:18 +08:00
resources :results, only: [:update, :destroy] do
resources :result_comments,
path: '/comments',
only: [:create, :index, :edit, :update, :destroy]
2016-02-12 23:52:43 +08:00
end
2017-01-03 16:49:18 +08:00
resources :samples, only: [:edit, :update, :destroy]
get 'samples/:id', to: 'samples#show'
2016-09-23 23:45:02 +08:00
2017-01-03 16:49:18 +08:00
resources :result_texts, only: [:edit, :update, :destroy]
get 'result_texts/:id/download' => 'result_texts#download',
as: :result_text_download
2017-01-03 16:49:18 +08:00
resources :result_assets, only: [:edit, :update, :destroy]
get 'result_assets/:id/download' => 'result_assets#download',
as: :result_asset_download
2017-01-03 16:49:18 +08:00
resources :result_tables, only: [:edit, :update, :destroy]
get 'result_tables/:id/download' => 'result_tables#download',
as: :result_table_download
2016-02-12 23:52:43 +08:00
2017-01-03 16:49:18 +08:00
resources :protocols, only: [:index, :edit, :create] do
resources :steps, only: [:new, :create]
member do
get 'linked_children', to: 'protocols#linked_children'
post 'linked_children_datatable',
to: 'protocols#linked_children_datatable'
get 'preview', to: 'protocols#preview'
2017-01-03 16:49:18 +08:00
patch 'metadata', to: 'protocols#update_metadata'
patch 'keywords', to: 'protocols#update_keywords'
post 'clone', to: 'protocols#clone'
get 'unlink_modal', to: 'protocols#unlink_modal'
post 'unlink', to: 'protocols#unlink'
get 'revert_modal', to: 'protocols#revert_modal'
post 'revert', to: 'protocols#revert'
get 'update_parent_modal', to: 'protocols#update_parent_modal'
post 'update_parent', to: 'protocols#update_parent'
get 'update_from_parent_modal', to: 'protocols#update_from_parent_modal'
post 'update_from_parent', to: 'protocols#update_from_parent'
post 'load_from_repository_datatable',
to: 'protocols#load_from_repository_datatable'
get 'load_from_repository_modal',
to: 'protocols#load_from_repository_modal'
post 'load_from_repository', to: 'protocols#load_from_repository'
post 'load_from_file', to: 'protocols#load_from_file'
get 'copy_to_repository_modal', to: 'protocols#copy_to_repository_modal'
post 'copy_to_repository', to: 'protocols#copy_to_repository'
get 'protocol_status_bar', to: 'protocols#protocol_status_bar'
get 'updated_at_label', to: 'protocols#updated_at_label'
get 'edit_name_modal', to: 'protocols#edit_name_modal'
get 'edit_keywords_modal', to: 'protocols#edit_keywords_modal'
get 'edit_authors_modal', to: 'protocols#edit_authors_modal'
get 'edit_description_modal', to: 'protocols#edit_description_modal'
end
collection do
get 'create_new_modal', to: 'protocols#create_new_modal'
post 'datatable', to: 'protocols#datatable'
post 'make_private', to: 'protocols#make_private'
post 'publish', to: 'protocols#publish'
post 'archive', to: 'protocols#archive'
post 'restore', to: 'protocols#restore'
post 'import', to: 'protocols#import'
get 'export', to: 'protocols#export'
end
2016-02-12 23:52:43 +08:00
end
2017-06-06 23:35:29 +08:00
resources :repositories do
post 'repository_index',
to: 'repositories#repository_table_index',
as: 'table_index',
defaults: { format: 'json' }
# Save repository table state
post 'state_save',
to: 'user_repositories#save_table_state',
as: 'save_table_state',
defaults: { format: 'json' }
# Load repository table state
post 'state_load',
to: 'user_repositories#load_table_state',
as: 'load_table_state',
defaults: { format: 'json' }
# Delete records from repository
post 'delete_records',
to: 'repository_rows#delete_records',
as: 'delete_records',
defaults: { format: 'json' }
post 'repository_columns/:id/destroy_html',
to: 'repository_columns#destroy_html',
as: 'columns_destroy_html'
resources :repository_columns, only: %i(create edit update destroy)
resources :repository_rows, only: %i(create edit update)
2017-06-13 14:10:10 +08:00
member do
post 'parse_sheet'
post 'import_records'
end
2017-06-06 23:35:29 +08:00
end
2017-01-03 16:49:18 +08:00
get 'search' => 'search#index'
get 'search/new' => 'search#new', as: :new_search
2016-07-21 19:11:15 +08:00
2017-01-03 16:49:18 +08:00
# We cannot use 'resources :assets' because assets is a reserved route
# in Rails (assets pipeline) and causes funky behavior
get 'files/:id/present', to: 'assets#file_present', as: 'file_present_asset'
get 'files/:id/large_url',
to: 'assets#large_image_url',
as: 'large_image_url_asset'
2017-01-03 16:49:18 +08:00
get 'files/:id/download', to: 'assets#download', as: 'download_asset'
get 'files/:id/preview', to: 'assets#preview', as: 'preview_asset'
get 'files/:id/view', to: 'assets#view', as: 'view_asset'
get 'files/:id/edit', to: 'assets#edit', as: 'edit_asset'
post 'asset_signature' => 'assets#signature'
2016-02-12 23:52:43 +08:00
2017-01-03 16:49:18 +08:00
devise_scope :user do
get 'avatar/:id/:style' => 'users/registrations#avatar', as: 'avatar'
post 'avatar_signature' => 'users/registrations#signature'
get 'users/auth_token_sign_in' => 'users/sessions#auth_token_create'
2017-01-03 16:49:18 +08:00
end
2016-02-12 23:52:43 +08:00
end
2016-08-03 21:31:25 +08:00
2017-01-03 16:49:18 +08:00
constraints WopiSubdomain do
# Office integration
get 'wopi/files/:id/contents', to: 'wopi#file_contents_get_endpoint'
post 'wopi/files/:id/contents', to: 'wopi#file_contents_post_endpoint'
get 'wopi/files/:id', to: 'wopi#file_get_endpoint', as: 'wopi_rest_endpoint'
post 'wopi/files/:id', to: 'wopi#post_file_endpoint'
end
2016-02-12 23:52:43 +08:00
end