1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/config/routes.rb

115 lines
4.2 KiB
Ruby
Raw Normal View History

2015-05-05 03:10:25 +02:00
require 'sidekiq/web'
Rails.application.routes.draw do
post 'webhooks' => 'webhooks#create'
2016-03-23 18:39:41 +01:00
if AuthProvider.active.providable_type == DatabaseProvider.name
# with local authentification we do not use omniAuth so we must differentiate the config
devise_for :users, controllers: {registrations: 'registrations', sessions: 'sessions',
confirmations: 'confirmations', passwords: 'passwords'}
else
devise_for :users, controllers: {registrations: 'registrations', sessions: 'sessions',
confirmations: 'confirmations', passwords: 'passwords',
:omniauth_callbacks => 'users/omniauth_callbacks'}
end
2015-05-05 03:10:25 +02:00
## The priority is based upon order of creation: first created -> highest priority.
## See how all your routes lay out with "rake routes".
## You can have the root of your site routed with "root"
root 'application#index'
namespace :api, as: nil, defaults: { format: :json } do
resources :projects, only: [:index, :last_published, :show, :create, :update, :destroy] do
collection do
get :last_published
2016-03-23 18:39:41 +01:00
get :search
2015-05-05 03:10:25 +02:00
end
end
resources :openlab_projects, only: :index
2015-05-05 03:10:25 +02:00
resources :machines
resources :components
resources :themes
resources :licences
2016-03-23 18:39:41 +01:00
resources :admins, only: [:index, :create, :destroy]
resources :settings, only: [:show, :update, :index], param: :name
resources :users, only: [:index, :create]
resources :members, only: [:index, :show, :create, :update, :destroy] do
get '/export_subscriptions', action: 'export_subscriptions', on: :collection
get '/export_reservations', action: 'export_reservations', on: :collection
2015-05-05 03:10:25 +02:00
get '/export_members', action: 'export_members', on: :collection
2016-03-23 18:39:41 +01:00
put ':id/merge', action: 'merge', on: :collection
2016-05-30 15:39:19 +02:00
post 'list', action: 'list', on: :collection
get 'search/:query', action: 'search', on: :collection
2015-05-05 03:10:25 +02:00
end
2016-03-23 18:39:41 +01:00
resources :reservations, only: [:show, :create, :index, :update]
2015-05-05 03:10:25 +02:00
resources :notifications, only: [:index, :show, :update] do
match :update_all, path: '/', via: [:put, :patch], on: :collection
end
# for homepage
get '/last_subscribed/:last' => "members#last_subscribed"
get '/feeds/twitter_timelines' => "feeds#twitter_timelines"
2016-03-23 18:39:41 +01:00
get 'pricing' => "pricing#index"
put 'pricing' => "pricing#update"
resources :prices, only: [:index, :update] do
post 'compute', on: :collection
end
resources :trainings_pricings, only: [:index, :update]
resources :availabilities do
get 'machines/:machine_id', action: 'machine', on: :collection
get 'trainings', on: :collection
get 'reservations', on: :member
end
resources :groups, only: [:index, :create, :update, :destroy]
resources :subscriptions, only: [:show, :create, :update]
resources :plans, only: [:index, :create, :update, :destroy, :show]
resources :slots, only: [:update] do
put 'cancel', on: :member
end
2015-05-05 03:10:25 +02:00
resources :events do
get 'upcoming/:limit', action: 'upcoming', on: :collection
end
2016-03-23 18:39:41 +01:00
resources :invoices, only: [:index, :show, :create] do
get ':id/download', action: 'download', on: :collection
post 'list', action: 'list', on: :collection
2016-03-23 18:39:41 +01:00
end
2015-05-05 03:10:25 +02:00
# for admin
2016-03-23 18:39:41 +01:00
resources :trainings
resources :credits
2015-05-05 03:10:25 +02:00
resources :categories, only: [:index]
2016-03-23 18:39:41 +01:00
resources :statistics, only: [:index]
resources :custom_assets, only: [:show, :create, :update]
resources :tags
resources :stylesheets, only: [:show]
resources :auth_providers do
get 'mapping_fields', on: :collection
get 'active', action: 'active', on: :collection
end
resources :abuses, only: [:create]
# i18n
get 'translations/:locale/:state' => 'translations#show', :constraints => { :state => /[^\/]+/ } # allow dots in URL for 'state'
end
%w(account event machine project subscription training user).each do |path|
post "/stats/#{path}/_search", to: "api/statistics##{path}"
2015-05-05 03:10:25 +02:00
end
match '/project_collaborator/:valid_token', to: 'api/projects#collaborator_valid', via: :get
2016-03-23 18:39:41 +01:00
authenticate :user, lambda { |u| u.is_admin? } do
2015-05-05 03:10:25 +02:00
mount Sidekiq::Web => '/admin/sidekiq'
end
end