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".
|
|
|
|
|
2016-07-28 17:44:58 +02:00
|
|
|
|
|
|
|
constraints :user_agent => /facebookexternalhit\/[0-9]|Twitterbot|Pinterest|Google.*snippet/ do
|
|
|
|
root :to => 'social_bot#share', as: :bot_root
|
|
|
|
end
|
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
## You can have the root of your site routed with "root"
|
|
|
|
root 'application#index'
|
|
|
|
|
|
|
|
namespace :api, as: nil, defaults: { format: :json } do
|
2016-09-27 14:08:04 +02:00
|
|
|
resources :projects, only: [:index, :show, :create, :update, :destroy] do
|
2015-05-05 03:10:25 +02:00
|
|
|
collection do
|
|
|
|
get :last_published
|
2016-03-23 18:39:41 +01:00
|
|
|
get :search
|
2016-09-27 14:08:04 +02:00
|
|
|
get :allowed_extensions
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
|
|
|
end
|
2016-04-22 18:17:55 +02:00
|
|
|
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
|
2016-06-16 14:26:10 +02:00
|
|
|
get 'search/:query', action: 'search', on: :collection
|
2016-06-21 14:39:44 +02:00
|
|
|
get 'mapping', action: 'mapping', 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
|
2017-01-05 15:06:54 +01:00
|
|
|
get 'polling', action: 'polling', on: :collection
|
|
|
|
get 'last_unread', action: 'last_unread', on: :collection
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
2016-07-07 15:57:06 +02:00
|
|
|
resources :wallet, only: [] do
|
2016-07-18 18:16:54 +02:00
|
|
|
get '/by_user/:user_id', action: 'by_user', on: :collection
|
2016-07-05 13:20:25 +02:00
|
|
|
get :transactions, on: :member
|
2016-07-05 19:07:50 +02:00
|
|
|
put :credit, on: :member
|
2016-07-18 18:16:54 +02:00
|
|
|
end
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
# for homepage
|
|
|
|
get '/last_subscribed/:last' => "members#last_subscribed"
|
|
|
|
get '/feeds/twitter_timelines' => "feeds#twitter_timelines"
|
|
|
|
|
2016-08-08 14:42:17 +02:00
|
|
|
get 'pricing' => 'pricing#index'
|
|
|
|
put 'pricing' => 'pricing#update'
|
2016-03-23 18:39:41 +01:00
|
|
|
|
|
|
|
resources :prices, only: [:index, :update] do
|
|
|
|
post 'compute', on: :collection
|
|
|
|
end
|
2016-08-08 17:09:05 +02:00
|
|
|
resources :coupons
|
|
|
|
post 'coupons/validate' => 'coupons#validate'
|
2016-08-16 18:12:13 +02:00
|
|
|
post 'coupons/send' => 'coupons#send_to'
|
2016-03-23 18:39:41 +01:00
|
|
|
|
|
|
|
resources :trainings_pricings, only: [:index, :update]
|
|
|
|
|
|
|
|
resources :availabilities do
|
|
|
|
get 'machines/:machine_id', action: 'machine', on: :collection
|
2016-07-13 18:15:14 +02:00
|
|
|
get 'trainings/:training_id', action: 'trainings', on: :collection
|
2017-02-23 17:45:55 +01:00
|
|
|
get 'spaces/:space_id', action: 'spaces', on: :collection
|
2016-03-23 18:39:41 +01:00
|
|
|
get 'reservations', on: :member
|
2016-07-13 19:12:16 +02:00
|
|
|
get 'public', on: :collection
|
2017-03-02 12:34:28 +01:00
|
|
|
get '/export_index', action: 'export_availabilities', on: :collection
|
2017-09-06 15:01:41 +02:00
|
|
|
put ':id/lock', action: 'lock', on: :collection
|
2016-03-23 18:39:41 +01:00
|
|
|
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
|
2016-05-04 18:17:50 +02:00
|
|
|
get 'download', action: 'download', on: :member
|
2016-05-31 10:02:27 +02:00
|
|
|
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-07-19 12:16:41 +02:00
|
|
|
resources :trainings do
|
|
|
|
get :availabilities, on: :member
|
|
|
|
end
|
2016-03-23 18:39:41 +01:00
|
|
|
resources :credits
|
2016-06-28 17:06:33 +02:00
|
|
|
resources :categories
|
2016-06-29 10:38:04 +02:00
|
|
|
resources :event_themes
|
2016-06-29 11:21:21 +02:00
|
|
|
resources :age_ranges
|
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
|
2016-12-15 14:16:24 +01:00
|
|
|
post 'send_code', action: 'send_code', on: :collection
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
resources :abuses, only: [:create]
|
2016-05-09 18:15:04 +02:00
|
|
|
resources :open_api_clients, only: [:index, :create, :update, :destroy] do
|
|
|
|
patch :reset_token, on: :member
|
|
|
|
end
|
2016-08-24 12:30:48 +02:00
|
|
|
resources :price_categories
|
2017-02-13 17:00:27 +01:00
|
|
|
resources :spaces
|
2016-03-23 18:39:41 +01:00
|
|
|
|
|
|
|
# i18n
|
|
|
|
get 'translations/:locale/:state' => 'translations#show', :constraints => { :state => /[^\/]+/ } # allow dots in URL for 'state'
|
2016-07-27 11:28:54 +02:00
|
|
|
|
|
|
|
# XLSX exports
|
|
|
|
get 'exports/:id/download' => 'exports#download'
|
2016-07-27 15:42:29 +02:00
|
|
|
post 'exports/status' => 'exports#status'
|
2016-09-22 16:46:14 +02:00
|
|
|
|
|
|
|
# Fab-manager's version
|
|
|
|
get 'version' => 'version#show'
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
|
2016-09-29 10:53:20 +02:00
|
|
|
# rss
|
|
|
|
|
|
|
|
namespace :rss, as: nil, defaults: { format: :xml } do
|
2016-09-29 11:54:08 +02:00
|
|
|
resources :projects, only: [:index], as: 'rss_projects'
|
|
|
|
resources :events, only: [:index], as: 'rss_events'
|
2016-09-29 10:53:20 +02:00
|
|
|
end
|
|
|
|
|
2016-05-04 18:17:50 +02:00
|
|
|
# open_api
|
|
|
|
|
|
|
|
namespace :open_api do
|
|
|
|
namespace :v1 do
|
|
|
|
scope only: :index do
|
|
|
|
resources :users
|
|
|
|
resources :trainings
|
|
|
|
resources :user_trainings
|
|
|
|
resources :reservations
|
|
|
|
resources :machines
|
|
|
|
resources :bookable_machines
|
|
|
|
resources :invoices do
|
|
|
|
get :download, on: :member
|
|
|
|
end
|
|
|
|
resources :events
|
|
|
|
resources :availabilities
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-28 18:13:38 +01:00
|
|
|
%w(account event machine project subscription training user space).each do |path|
|
2016-03-23 18:39:41 +01:00
|
|
|
post "/stats/#{path}/_search", to: "api/statistics##{path}"
|
2016-07-04 17:15:37 +02:00
|
|
|
post "/stats/#{path}/export", to: "api/statistics#export_#{path}"
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
2016-07-05 12:21:55 +02:00
|
|
|
post '/stats/global/export', to: "api/statistics#export_global"
|
2016-06-21 13:16:42 +02:00
|
|
|
post '_search/scroll', to: "api/statistics#scroll"
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2016-05-05 15:02:02 +02:00
|
|
|
apipie
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|