retrospring/config/routes.rb

125 lines
7.3 KiB
Ruby
Raw Normal View History

2014-12-12 18:35:14 +01:00
require 'sidekiq/web'
2014-08-01 11:23:47 +02:00
Rails.application.routes.draw do
2014-12-05 07:02:23 +01:00
# Admin panel
2014-12-10 17:01:59 +01:00
mount RailsAdmin::Engine => '/justask_admin', as: 'rails_admin'
# Sidekiq
2014-12-12 18:35:14 +01:00
constraints ->(req) { req.env["warden"].authenticate?(scope: :user) &&
req.env['warden'].user.admin? } do
mount Sidekiq::Web, at: "/sidekiq"
end
# Moderation panel
constraints ->(req) { req.env['warden'].authenticate?(scope: :user) &&
2015-02-03 17:48:30 +01:00
(req.env['warden'].user.mod?) } do
2015-07-23 19:38:42 +02:00
match '/moderation/priority(/:user_id)', to: 'moderation#priority', via: :get, as: :moderation_priority
match '/moderation/ip/:user_id', to: 'moderation#ip', via: :get, as: :moderation_ip
2014-12-29 01:25:48 +01:00
match '/moderation(/:type)', to: 'moderation#index', via: :get, as: :moderation, defaults: {type: 'all'}
2014-12-28 23:26:16 +01:00
namespace :ajax do
2014-12-29 00:21:06 +01:00
match '/mod/destroy_report', to: 'moderation#destroy_report', via: :post, as: :mod_destroy_report
2014-12-29 00:50:14 +01:00
match '/mod/create_comment', to: 'moderation#create_comment', via: :post, as: :mod_create_comment
match '/mod/destroy_comment', to: 'moderation#destroy_comment', via: :post, as: :mod_destroy_comment
match '/mod/create_vote', to: 'moderation#vote', via: :post, as: :mod_create_vote
2014-12-28 23:26:16 +01:00
match '/mod/destroy_vote', to: 'moderation#destroy_vote', via: :post, as: :mod_destroy_vote
2015-02-03 17:48:30 +01:00
match '/mod/privilege', to: 'moderation#privilege', via: :post, as: :mod_privilege
match '/mod/ban', to: 'moderation#ban', via: :post, as: :mod_ban
2014-12-28 23:26:16 +01:00
end
end
2014-08-01 11:47:25 +02:00
root 'static#index'
2014-08-01 11:23:47 +02:00
2014-08-01 11:47:25 +02:00
match '/about', to: 'static#about', via: 'get'
2015-01-07 21:30:52 +01:00
match '/help/faq', to: 'static#faq', via: 'get', as: :help_faq
2015-01-16 22:36:39 +01:00
match '/privacy', to: 'static#privacy_policy', via: 'get', as: :privacy_policy
2015-01-16 23:16:28 +01:00
match '/terms', to: 'static#terms', via: 'get', as: :terms
2014-11-02 17:58:27 +01:00
# Devise routes
devise_for :users, path: 'user', skip: [:sessions, :registrations]
as :user do
# :sessions
get 'sign_in' => 'devise/sessions#new', as: :new_user_session
post 'sign_in' => 'devise/sessions#create', as: :user_session
delete 'sign_out' => 'devise/sessions#destroy', as: :destroy_user_session
# :registrations
get 'settings/delete_account' => 'devise/registrations#cancel', as: :cancel_user_registration
post '/user/create' => 'devise/registrations#create', as: :user_registration
get '/sign_up' => 'devise/registrations#new', as: :new_user_registration
get '/settings/account' => 'devise/registrations#edit', as: :edit_user_registration
2014-11-03 13:21:41 +01:00
patch '/settings/account' => 'devise/registrations#update', as: :update_user_registration
2014-11-02 17:58:27 +01:00
put '/settings/account' => 'devise/registrations#update'
delete '/settings/account' => 'user/registrations#destroy'
2014-11-02 17:58:27 +01:00
end
match '/settings/profile', to: 'user#edit', via: 'get', as: :edit_user_profile
2014-11-03 13:21:41 +01:00
match '/settings/profile', to: 'user#update', via: 'patch', as: :update_user_profile
2014-12-09 23:21:41 +01:00
match '/settings/theme', to: 'user#edit_theme', via: 'get', as: :edit_user_theme
match '/settings/theme', to: 'user#update_theme', via: 'patch', as: :update_user_theme
match '/settings/theme/preview.css', to: 'user#preview_theme', via: 'post', as: :preview_user_theme
2014-12-12 21:43:09 +01:00
# resources :services, only: [:index, :destroy]
match '/settings/services', to: 'services#index', via: 'get', as: :services
match '/settings/services/:id', to: 'services#destroy', via: 'delete', as: :service
controller :services do
scope "/auth", as: "auth" do
get ':provider/callback' => :create
get :failure
end
end
match '/settings/privacy', to: 'user#edit_privacy', via: :get, as: :edit_user_privacy
match '/settings/privacy', to: 'user#update_privacy', via: :patch, as: :update_user_privacy
2015-06-20 20:38:07 +02:00
match '/settings/data', to: 'user#data', via: :get, as: :user_data
namespace :ajax do
match '/ask', to: 'question#create', via: :post, as: :ask
2015-04-26 03:36:25 +02:00
match '/destroy_question', to: 'question#destroy', via: :post, as: :destroy_question
2014-12-09 23:21:41 +01:00
match '/generate_question', to: 'inbox#create', via: :post, as: :generate_question
match '/delete_inbox', to: 'inbox#remove', via: :post, as: :delete_inbox
match '/delete_all_inbox', to: 'inbox#remove_all', via: :post, as: :delete_all_inbox
match '/delete_all_inbox/:author', to: 'inbox#remove_all_author', via: :post, as: :delete_all_author
match '/answer', to: 'answer#create', via: :post, as: :answer
2014-11-26 17:05:46 +01:00
match '/destroy_answer', to: 'answer#destroy', via: :post, as: :destroy_answer
2014-11-30 14:45:32 +01:00
match '/create_friend', to: 'friend#create', via: :post, as: :create_friend
match '/destroy_friend', to: 'friend#destroy', via: :post, as: :destroy_friend
2014-11-30 20:31:22 +01:00
match '/create_smile', to: 'smile#create', via: :post, as: :create_smile
match '/destroy_smile', to: 'smile#destroy', via: :post, as: :destroy_smile
match '/create_comment_smile', to: 'smile#create_comment', via: :post, as: :create_comment_smile
match '/destroy_comment_smile', to: 'smile#destroy_comment', via: :post, as: :destroy_comment_smile
2014-12-07 14:29:35 +01:00
match '/create_comment', to: 'comment#create', via: :post, as: :create_comment
match '/destroy_comment', to: 'comment#destroy', via: :post, as: :destroy_comment
2014-12-28 19:55:50 +01:00
match '/report', to: 'report#create', via: :post, as: :report
2015-01-17 18:24:36 +01:00
match '/create_group', to: 'group#create', via: :post, as: :create_group
2015-01-17 18:57:23 +01:00
match '/destroy_group', to: 'group#destroy', via: :post, as: :destroy_group
match '/group_membership', to: 'group#membership', via: :post, as: :group_membership
match '/preview', to: "question#preview", via: :post, as: :preview
2015-04-21 03:12:11 +02:00
match '/subscribe', to: 'subscription#subscribe', via: :post, as: :subscribe_answer
match '/unsubscribe', to: 'subscription#unsubscribe', via: :post, as: :unsubscribe_answer
end
2014-11-03 13:21:41 +01:00
match '/discover', to: 'discover#index', via: :get, as: :discover
2014-12-11 06:39:35 +01:00
match '/public', to: 'public#index', via: :get, as: :public_timeline
2015-01-13 13:23:12 +01:00
match '/group/:group_name', to: 'group#index', via: :get, as: :group_timeline
2014-12-11 06:39:35 +01:00
2014-12-14 15:17:52 +01:00
match '/notifications(/:type)', to: 'notifications#index', via: :get, as: :notifications, defaults: {type: 'all'}
2014-11-11 07:10:41 +01:00
match '/inbox', to: 'inbox#show', via: 'get'
match '/inbox/:author', to: 'inbox#show', via: 'get'
2014-11-12 20:40:24 +01:00
match '/user/:username(/p/:page)', to: 'user#show', via: 'get', defaults: {page: 1}
2015-01-17 16:29:11 +01:00
match '/@:username(/p/:page)', to: 'user#show', via: 'get', as: :show_user_profile_alt, defaults: {page: 1}
match '/@:username/a/:id', to: 'answer#show', via: 'get', as: :show_user_answer_alt
match '/@:username/q/:id', to: 'question#show', via: 'get', as: :show_user_question_alt
match '/@:username/followers(/p/:page)', to: 'user#followers', via: 'get', as: :show_user_followers_alt, defaults: {page: 1}
match '/@:username/friends(/p/:page)', to: 'user#friends', via: 'get', as: :show_user_friends_alt, defaults: {page: 1}
match '/:username(/p/:page)', to: 'user#show', via: 'get', as: :show_user_profile, defaults: {page: 1}
match '/:username/a/:id', to: 'answer#show', via: 'get', as: :show_user_answer
match '/:username/q/:id', to: 'question#show', via: 'get', as: :show_user_question
match '/:username/followers(/p/:page)', to: 'user#followers', via: 'get', as: :show_user_followers, defaults: {page: 1}
match '/:username/friends(/p/:page)', to: 'user#friends', via: 'get', as: :show_user_friends, defaults: {page: 1}
match '/:username/groups(/p/:page)', to: 'user#groups', via: 'get', as: :show_user_groups, defaults: {page: 1}
2014-12-19 22:34:24 +01:00
match '/:username/questions(/p/:page)', to: 'user#questions', via: 'get', as: :show_user_questions, defaults: {page: 1}
2014-08-01 11:23:47 +02:00
end