Merge branch 'master' into 3699-arv-copy
[arvados.git] / services / api / config / routes.rb
1 Server::Application.routes.draw do
2   themes_for_rails
3
4   # See http://guides.rubyonrails.org/routing.html
5
6   namespace :arvados do
7     namespace :v1 do
8       resources :api_client_authorizations do
9         post 'create_system_auth', on: :collection
10       end
11       resources :api_clients
12       resources :authorized_keys
13       resources :collections do
14         get 'provenance', on: :member
15         get 'used_by', on: :member
16       end
17       resources :groups do
18         get 'contents', on: :collection
19         get 'contents', on: :member
20       end
21       resources :humans
22       resources :job_tasks
23       resources :jobs do
24         get 'queue', on: :collection
25         get 'queue_size', on: :collection
26         post 'cancel', on: :member
27       end
28       resources :keep_disks do
29         post 'ping', on: :collection
30       end
31       resources :keep_services do
32         get 'accessible', on: :collection
33       end
34       resources :links
35       resources :logs
36       resources :nodes do
37         post 'ping', on: :member
38       end
39       resources :pipeline_instances
40       resources :pipeline_templates
41       resources :repositories do
42         get 'get_all_permissions', on: :collection
43       end
44       resources :specimens
45       resources :traits
46       resources :user_agreements do
47         get 'signatures', on: :collection
48         post 'sign', on: :collection
49       end
50       resources :users do
51         get 'current', on: :collection
52         get 'system', on: :collection
53         post 'activate', on: :member
54         post 'setup', on: :collection
55         post 'unsetup', on: :member
56       end
57       resources :virtual_machines do
58         get 'logins', on: :member
59         get 'get_all_logins', on: :collection
60       end
61       get '/permissions/:uuid', :to => 'links#get_permissions'
62     end
63   end
64
65   # omniauth
66   match '/auth/:provider/callback', :to => 'user_sessions#create'
67   match '/auth/failure', :to => 'user_sessions#failure'
68
69   # Custom logout
70   match '/login', :to => 'user_sessions#login'
71   match '/logout', :to => 'user_sessions#logout'
72
73   match '/discovery/v1/apis/arvados/v1/rest', :to => 'arvados/v1/schema#index'
74
75   match '/static/login_failure', :to => 'static#login_failure', :as => :login_failure
76
77   # Send unroutable requests to an arbitrary controller
78   # (ends up at ApplicationController#render_not_found)
79   match '*a', :to => 'static#render_not_found'
80
81   root :to => 'static#home'
82 end