2013-12-23 18:50:36 -05:00
|
|
|
require "sidekiq/web"
|
2014-02-05 18:14:41 -05:00
|
|
|
require_dependency "scheduler/web"
|
2013-12-23 18:50:36 -05:00
|
|
|
require_dependency "admin_constraint"
|
|
|
|
require_dependency "staff_constraint"
|
|
|
|
require_dependency "homepage_constraint"
|
2014-08-29 11:28:16 -04:00
|
|
|
require_dependency "permalink_constraint"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
# This used to be User#username_format, but that causes a preload of the User object
|
2013-02-14 14:11:13 -05:00
|
|
|
# and makes Guard not work properly.
|
2013-03-25 21:08:23 -04:00
|
|
|
USERNAME_ROUTE_FORMAT = /[A-Za-z0-9\_]+/ unless defined? USERNAME_ROUTE_FORMAT
|
2014-03-06 23:59:10 -05:00
|
|
|
BACKUP_ROUTE_FORMAT = /[a-zA-Z0-9\-_]*\d{4}(-\d{2}){2}-\d{6}\.tar\.gz/i unless defined? BACKUP_ROUTE_FORMAT
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
Discourse::Application.routes.draw do
|
|
|
|
|
2013-07-01 14:00:06 -04:00
|
|
|
match "/404", to: "exceptions#not_found", via: [:get, :post]
|
2014-04-29 15:17:40 -04:00
|
|
|
get "/404-body" => "exceptions#not_found_body"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2014-08-18 02:42:48 -04:00
|
|
|
if Rails.env.development?
|
2014-05-24 08:50:39 -04:00
|
|
|
mount Sidekiq::Web => "/sidekiq"
|
|
|
|
mount Logster::Web => "/logs"
|
|
|
|
else
|
|
|
|
mount Sidekiq::Web => "/sidekiq", constraints: AdminConstraint.new
|
|
|
|
mount Logster::Web => "/logs", constraints: AdminConstraint.new
|
2014-05-06 18:23:52 -04:00
|
|
|
end
|
|
|
|
|
2014-08-11 16:59:00 -04:00
|
|
|
resources :about
|
|
|
|
|
2014-02-16 20:26:25 -05:00
|
|
|
get "site" => "site#index"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-06-25 15:05:16 -04:00
|
|
|
resources :forums
|
2013-12-23 18:50:36 -05:00
|
|
|
get "srv/status" => "forums#status"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-05-02 03:22:27 -04:00
|
|
|
namespace :admin, constraints: StaffConstraint.new do
|
2013-12-23 18:50:36 -05:00
|
|
|
get "" => "admin#index"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-11-13 14:02:47 -05:00
|
|
|
resources :site_settings, constraints: AdminConstraint.new do
|
|
|
|
collection do
|
2013-12-23 18:50:36 -05:00
|
|
|
get "category/:id" => "site_settings#index"
|
2013-11-13 14:02:47 -05:00
|
|
|
end
|
|
|
|
end
|
2013-05-02 01:15:17 -04:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "reports/:type" => "reports#show"
|
2013-02-27 22:39:42 -05:00
|
|
|
|
2013-05-08 01:20:38 -04:00
|
|
|
resources :groups, constraints: AdminConstraint.new do
|
|
|
|
collection do
|
2013-12-23 18:50:36 -05:00
|
|
|
post "refresh_automatic_groups" => "groups#refresh_automatic_groups"
|
2013-05-08 01:20:38 -04:00
|
|
|
end
|
2013-12-23 18:50:36 -05:00
|
|
|
get "users"
|
2013-05-08 01:20:38 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
resources :users, id: USERNAME_ROUTE_FORMAT do
|
|
|
|
collection do
|
2013-12-23 18:50:36 -05:00
|
|
|
get "list/:query" => "users#index"
|
2014-07-07 16:18:18 -04:00
|
|
|
get "ip-info" => "users#ip_info"
|
2013-12-23 18:50:36 -05:00
|
|
|
put "approve-bulk" => "users#approve_bulk"
|
|
|
|
delete "reject-bulk" => "users#reject_bulk"
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-12-23 18:50:36 -05:00
|
|
|
put "suspend"
|
|
|
|
put "delete_all_posts"
|
|
|
|
put "unsuspend"
|
|
|
|
put "revoke_admin", constraints: AdminConstraint.new
|
|
|
|
put "grant_admin", constraints: AdminConstraint.new
|
|
|
|
post "generate_api_key", constraints: AdminConstraint.new
|
|
|
|
delete "revoke_api_key", constraints: AdminConstraint.new
|
|
|
|
put "revoke_moderation", constraints: AdminConstraint.new
|
|
|
|
put "grant_moderation", constraints: AdminConstraint.new
|
|
|
|
put "approve"
|
|
|
|
post "refresh_browsers", constraints: AdminConstraint.new
|
2014-06-05 23:02:52 -04:00
|
|
|
post "log_out", constraints: AdminConstraint.new
|
2013-12-23 18:50:36 -05:00
|
|
|
put "activate"
|
|
|
|
put "deactivate"
|
|
|
|
put "block"
|
|
|
|
put "unblock"
|
|
|
|
put "trust_level"
|
2014-02-10 16:59:36 -05:00
|
|
|
put "primary_group"
|
2014-07-13 14:11:38 -04:00
|
|
|
post "groups" => "users#add_group", constraints: AdminConstraint.new
|
|
|
|
delete "groups/:group_id" => "users#remove_group", constraints: AdminConstraint.new
|
2014-03-19 10:27:21 -04:00
|
|
|
get "badges"
|
2014-01-23 16:40:10 -05:00
|
|
|
get "leader_requirements"
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-05-02 01:15:17 -04:00
|
|
|
resources :impersonate, constraints: AdminConstraint.new
|
2013-06-03 16:12:24 -04:00
|
|
|
|
|
|
|
resources :email do
|
2013-02-05 14:16:51 -05:00
|
|
|
collection do
|
2013-12-23 18:50:36 -05:00
|
|
|
post "test"
|
2014-02-14 19:17:13 -05:00
|
|
|
get "all"
|
2014-02-14 18:50:08 -05:00
|
|
|
get "sent"
|
2014-02-14 13:06:21 -05:00
|
|
|
get "skipped"
|
2013-12-23 18:50:36 -05:00
|
|
|
get "preview-digest" => "email#preview_digest"
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
2013-06-03 16:12:24 -04:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
scope "/logs" do
|
2013-10-21 14:49:51 -04:00
|
|
|
resources :staff_action_logs, only: [:index]
|
2014-06-02 02:52:43 -04:00
|
|
|
resources :screened_emails, only: [:index, :destroy]
|
2013-10-24 17:18:10 -04:00
|
|
|
resources :screened_ip_addresses, only: [:index, :create, :update, :destroy]
|
2013-10-21 14:49:51 -04:00
|
|
|
resources :screened_urls, only: [:index]
|
2013-08-01 21:30:13 -04:00
|
|
|
end
|
|
|
|
|
2014-07-13 23:21:29 -04:00
|
|
|
get "/logs" => "staff_action_logs#index"
|
|
|
|
|
2014-04-16 09:49:06 -04:00
|
|
|
get "customize" => "color_schemes#index", constraints: AdminConstraint.new
|
|
|
|
get "customize/css_html" => "site_customizations#index", constraints: AdminConstraint.new
|
|
|
|
get "customize/colors" => "color_schemes#index", constraints: AdminConstraint.new
|
2013-12-23 18:50:36 -05:00
|
|
|
get "flags" => "flags#index"
|
|
|
|
get "flags/:filter" => "flags#index"
|
|
|
|
post "flags/agree/:id" => "flags#agree"
|
|
|
|
post "flags/disagree/:id" => "flags#disagree"
|
|
|
|
post "flags/defer/:id" => "flags#defer"
|
2013-05-02 01:15:17 -04:00
|
|
|
resources :site_customizations, constraints: AdminConstraint.new
|
2014-09-23 17:12:01 -04:00
|
|
|
scope "/customize" do
|
2014-09-24 14:45:35 -04:00
|
|
|
resources :site_text, constraints: AdminConstraint.new
|
|
|
|
resources :site_text_types, constraints: AdminConstraint.new
|
2014-09-25 11:32:08 -04:00
|
|
|
resources :user_fields, constraints: AdminConstraint.new
|
2014-09-23 17:12:01 -04:00
|
|
|
end
|
|
|
|
|
2014-04-16 09:49:06 -04:00
|
|
|
resources :color_schemes, constraints: AdminConstraint.new
|
2014-02-12 23:33:40 -05:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "version_check" => "versions#show"
|
2014-02-12 23:33:40 -05:00
|
|
|
|
2013-03-29 15:48:26 -04:00
|
|
|
resources :dashboard, only: [:index] do
|
|
|
|
collection do
|
2013-12-23 18:50:36 -05:00
|
|
|
get "problems"
|
2013-03-29 15:48:26 -04:00
|
|
|
end
|
|
|
|
end
|
2014-02-12 23:33:40 -05:00
|
|
|
|
2013-05-02 01:15:17 -04:00
|
|
|
resources :api, only: [:index], constraints: AdminConstraint.new do
|
2013-03-25 21:04:28 -04:00
|
|
|
collection do
|
2013-12-23 18:50:36 -05:00
|
|
|
post "key" => "api#create_master_key"
|
|
|
|
put "key" => "api#regenerate_key"
|
|
|
|
delete "key" => "api#revoke_key"
|
2013-03-25 21:04:28 -04:00
|
|
|
end
|
|
|
|
end
|
2014-02-12 23:33:40 -05:00
|
|
|
|
|
|
|
resources :backups, only: [:index, :create], constraints: AdminConstraint.new do
|
|
|
|
member do
|
|
|
|
get "" => "backups#show", constraints: { id: BACKUP_ROUTE_FORMAT }
|
|
|
|
delete "" => "backups#destroy", constraints: { id: BACKUP_ROUTE_FORMAT }
|
|
|
|
post "restore" => "backups#restore", constraints: { id: BACKUP_ROUTE_FORMAT }
|
|
|
|
end
|
|
|
|
collection do
|
|
|
|
get "logs" => "backups#logs"
|
|
|
|
get "status" => "backups#status"
|
|
|
|
get "cancel" => "backups#cancel"
|
|
|
|
get "rollback" => "backups#rollback"
|
|
|
|
put "readonly" => "backups#readonly"
|
2014-05-27 16:14:37 -04:00
|
|
|
get "upload" => "backups#check_backup_chunk"
|
|
|
|
post "upload" => "backups#upload_backup_chunk"
|
2014-02-12 23:33:40 -05:00
|
|
|
end
|
|
|
|
end
|
2014-02-14 18:50:08 -05:00
|
|
|
|
2014-08-09 06:28:57 -04:00
|
|
|
resources :export_csv, constraints: AdminConstraint.new do
|
|
|
|
member do
|
|
|
|
get "download" => "export_csv#download", constraints: { id: /[^\/]+/ }
|
|
|
|
end
|
|
|
|
collection do
|
|
|
|
get "users" => "export_csv#export_user_list"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-03-05 07:52:20 -05:00
|
|
|
resources :badges, constraints: AdminConstraint.new do
|
|
|
|
collection do
|
|
|
|
get "types" => "badges#badge_types"
|
2014-07-27 04:22:01 -04:00
|
|
|
post "badge_groupings" => "badges#save_badge_groupings"
|
2014-07-24 04:28:09 -04:00
|
|
|
post "preview" => "badges#preview"
|
2014-03-05 07:52:20 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-13 23:43:08 -05:00
|
|
|
get "memory_stats"=> "diagnostics#memory_stats", constraints: AdminConstraint.new
|
2014-02-12 23:33:40 -05:00
|
|
|
|
2013-11-12 00:42:35 -05:00
|
|
|
end # admin namespace
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "email_preferences" => "email#preferences_redirect", :as => "email_preferences_redirect"
|
|
|
|
get "email/unsubscribe/:key" => "email#unsubscribe", as: "email_unsubscribe"
|
|
|
|
post "email/resubscribe/:key" => "email#resubscribe", as: "email_resubscribe"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-03-23 11:02:59 -04:00
|
|
|
resources :session, id: USERNAME_ROUTE_FORMAT, only: [:create, :destroy] do
|
2013-02-14 14:11:13 -05:00
|
|
|
collection do
|
2013-12-23 18:50:36 -05:00
|
|
|
post "forgot_password"
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-02-14 14:11:13 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2014-02-24 22:30:49 -05:00
|
|
|
get "session/sso" => "session#sso"
|
|
|
|
get "session/sso_login" => "session#sso_login"
|
2014-02-05 13:46:24 -05:00
|
|
|
get "session/current" => "session#current"
|
2013-12-23 18:50:36 -05:00
|
|
|
get "session/csrf" => "session#csrf"
|
|
|
|
get "composer-messages" => "composer_messages#index"
|
2013-07-29 01:13:13 -04:00
|
|
|
|
2014-02-13 11:42:35 -05:00
|
|
|
resources :users, except: [:show, :update, :destroy] do
|
2013-02-14 14:11:13 -05:00
|
|
|
collection do
|
2013-12-23 18:50:36 -05:00
|
|
|
get "check_username"
|
|
|
|
get "is_local_username"
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :static
|
2013-12-23 18:50:36 -05:00
|
|
|
post "login" => "static#enter"
|
|
|
|
get "login" => "static#show", id: "login"
|
|
|
|
get "faq" => "static#show", id: "faq"
|
2014-07-10 12:58:34 -04:00
|
|
|
get "guidelines" => "static#show", id: "guidelines"
|
2013-12-23 18:50:36 -05:00
|
|
|
get "tos" => "static#show", id: "tos"
|
|
|
|
get "privacy" => "static#show", id: "privacy"
|
2014-02-18 17:18:42 -05:00
|
|
|
get "signup" => "list#latest"
|
2013-12-23 18:50:36 -05:00
|
|
|
|
2014-07-11 03:32:29 -04:00
|
|
|
post "users/read-faq" => "users#read_faq"
|
2013-12-23 18:50:36 -05:00
|
|
|
get "users/search/users" => "users#search_users"
|
2014-09-23 09:50:57 -04:00
|
|
|
get "users/account-created/" => "users#account_created"
|
2013-12-23 18:50:36 -05:00
|
|
|
get "users/password-reset/:token" => "users#password_reset"
|
|
|
|
put "users/password-reset/:token" => "users#password_reset"
|
|
|
|
get "users/activate-account/:token" => "users#activate_account"
|
2014-07-14 12:25:42 -04:00
|
|
|
put "users/activate-account/:token" => "users#perform_account_activation", as: 'perform_activate_account'
|
2013-12-23 18:50:36 -05:00
|
|
|
get "users/authorize-email/:token" => "users#authorize_email"
|
|
|
|
get "users/hp" => "users#get_honeypot_value"
|
2014-06-14 13:51:06 -04:00
|
|
|
get "my/*path", to: 'users#my_redirect'
|
2013-12-23 18:50:36 -05:00
|
|
|
|
|
|
|
get "user_preferences" => "users#user_preferences_redirect"
|
|
|
|
get "users/:username/private-messages" => "user_actions#private_messages", constraints: {username: USERNAME_ROUTE_FORMAT}
|
|
|
|
get "users/:username/private-messages/:filter" => "user_actions#private_messages", constraints: {username: USERNAME_ROUTE_FORMAT}
|
2014-06-04 16:51:48 -04:00
|
|
|
get "users/:username" => "users#show", as: 'user', constraints: {username: USERNAME_ROUTE_FORMAT}
|
2013-12-23 18:50:36 -05:00
|
|
|
put "users/:username" => "users#update", constraints: {username: USERNAME_ROUTE_FORMAT}
|
|
|
|
get "users/:username/preferences" => "users#preferences", constraints: {username: USERNAME_ROUTE_FORMAT}, as: :email_preferences
|
|
|
|
get "users/:username/preferences/email" => "users#preferences", constraints: {username: USERNAME_ROUTE_FORMAT}
|
|
|
|
put "users/:username/preferences/email" => "users#change_email", constraints: {username: USERNAME_ROUTE_FORMAT}
|
|
|
|
get "users/:username/preferences/about-me" => "users#preferences", constraints: {username: USERNAME_ROUTE_FORMAT}
|
2014-04-17 23:10:53 -04:00
|
|
|
get "users/:username/preferences/badge_title" => "users#preferences", constraints: {username: USERNAME_ROUTE_FORMAT}
|
|
|
|
put "users/:username/preferences/badge_title" => "users#badge_title", constraints: {username: USERNAME_ROUTE_FORMAT}
|
2013-12-23 18:50:36 -05:00
|
|
|
get "users/:username/preferences/username" => "users#preferences", constraints: {username: USERNAME_ROUTE_FORMAT}
|
|
|
|
put "users/:username/preferences/username" => "users#username", constraints: {username: USERNAME_ROUTE_FORMAT}
|
|
|
|
get "users/:username/avatar(/:size)" => "users#avatar", constraints: {username: USERNAME_ROUTE_FORMAT} # LEGACY ROUTE
|
2014-04-14 16:55:57 -04:00
|
|
|
post "users/:username/preferences/avatar" => "users#upload_avatar", constraints: {username: USERNAME_ROUTE_FORMAT} # LEGACY ROUTE
|
2014-02-28 15:12:51 -05:00
|
|
|
post "users/:username/preferences/user_image" => "users#upload_user_image", constraints: {username: USERNAME_ROUTE_FORMAT}
|
2014-06-27 14:48:39 -04:00
|
|
|
delete "users/:username/preferences/user_image" => "users#destroy_user_image", constraints: {username: USERNAME_ROUTE_FORMAT}
|
2014-05-26 05:46:43 -04:00
|
|
|
put "users/:username/preferences/avatar/pick" => "users#pick_avatar", constraints: {username: USERNAME_ROUTE_FORMAT}
|
2013-12-23 18:50:36 -05:00
|
|
|
get "users/:username/invited" => "users#invited", constraints: {username: USERNAME_ROUTE_FORMAT}
|
2014-09-25 03:42:48 -04:00
|
|
|
post "users/action/send_activation_email" => "users#send_activation_email"
|
2013-12-23 18:50:36 -05:00
|
|
|
get "users/:username/activity" => "users#show", constraints: {username: USERNAME_ROUTE_FORMAT}
|
|
|
|
get "users/:username/activity/:filter" => "users#show", constraints: {username: USERNAME_ROUTE_FORMAT}
|
2014-04-16 14:49:28 -04:00
|
|
|
get "users/:username/badges" => "users#show", constraints: {username: USERNAME_ROUTE_FORMAT}
|
2014-09-02 21:32:27 -04:00
|
|
|
get "users/:username/notifications" => "users#show", constraints: {username: USERNAME_ROUTE_FORMAT}
|
2014-02-13 11:42:35 -05:00
|
|
|
delete "users/:username" => "users#destroy", constraints: {username: USERNAME_ROUTE_FORMAT}
|
2014-06-18 14:40:15 -04:00
|
|
|
get "users/by-external/:external_id" => "users#show"
|
2014-07-16 15:04:55 -04:00
|
|
|
get "users/:username/flagged-posts" => "users#show", constraints: {username: USERNAME_ROUTE_FORMAT}
|
|
|
|
get "users/:username/deleted-posts" => "users#show", constraints: {username: USERNAME_ROUTE_FORMAT}
|
2014-08-25 13:38:20 -04:00
|
|
|
get "users/:username/badges_json" => "user_badges#username"
|
2013-12-23 18:50:36 -05:00
|
|
|
|
2014-05-26 05:46:43 -04:00
|
|
|
post "user_avatar/:username/refresh_gravatar" => "user_avatars#refresh_gravatar"
|
2014-05-30 00:17:35 -04:00
|
|
|
get "letter_avatar/:username/:size/:version.png" => "user_avatars#show_letter",
|
|
|
|
format: false, constraints: {hostname: /[\w\.-]+/}
|
2014-05-27 09:30:57 -04:00
|
|
|
get "user_avatar/:hostname/:username/:size/:version.png" => "user_avatars#show",
|
2014-05-28 19:31:17 -04:00
|
|
|
format: false, constraints: {hostname: /[\w\.-]+/}
|
2014-05-26 05:46:43 -04:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "uploads/:site/:id/:sha.:extension" => "uploads#show", constraints: {site: /\w+/, id: /\d+/, sha: /[a-z0-9]{15,16}/i, extension: /\w{2,}/}
|
2014-09-23 02:45:19 -04:00
|
|
|
get "uploads/:site/:sha" => "uploads#show", constraints: { site: /\w+/, sha: /[a-z0-9]{40}/}
|
2013-12-23 18:50:36 -05:00
|
|
|
post "uploads" => "uploads#create"
|
|
|
|
|
|
|
|
get "posts/by_number/:topic_id/:post_number" => "posts#by_number"
|
|
|
|
get "posts/:id/reply-history" => "posts#reply_history"
|
2014-07-16 15:04:55 -04:00
|
|
|
get "posts/:username/deleted" => "posts#deleted_posts", constraints: {username: USERNAME_ROUTE_FORMAT}
|
|
|
|
get "posts/:username/flagged" => "posts#flagged_posts", constraints: {username: USERNAME_ROUTE_FORMAT}
|
2013-12-23 18:50:36 -05:00
|
|
|
|
2014-02-06 13:06:19 -05:00
|
|
|
resources :groups do
|
|
|
|
get 'members'
|
2014-02-07 10:44:03 -05:00
|
|
|
get 'posts'
|
2014-02-18 16:17:04 -05:00
|
|
|
get 'counts'
|
2014-02-06 13:06:19 -05:00
|
|
|
end
|
2014-01-30 17:10:36 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
resources :posts do
|
2013-12-23 18:50:36 -05:00
|
|
|
put "bookmark"
|
2014-05-13 08:53:11 -04:00
|
|
|
put "wiki"
|
2014-09-10 17:08:33 -04:00
|
|
|
put "post_type"
|
2014-09-11 10:04:40 -04:00
|
|
|
put "rebake"
|
2014-09-22 12:55:13 -04:00
|
|
|
put "unhide"
|
2013-12-23 18:50:36 -05:00
|
|
|
get "replies"
|
|
|
|
get "revisions/:revision" => "posts#revisions"
|
|
|
|
put "recover"
|
2013-02-05 14:16:51 -05:00
|
|
|
collection do
|
2013-12-23 18:50:36 -05:00
|
|
|
delete "destroy_many"
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-09-02 21:32:27 -04:00
|
|
|
get "notifications" => "notifications#recent"
|
|
|
|
get "notifications/history" => "notifications#history"
|
2013-02-12 01:51:44 -05:00
|
|
|
|
2013-07-01 14:00:06 -04:00
|
|
|
match "/auth/:provider/callback", to: "users/omniauth_callbacks#complete", via: [:get, :post]
|
|
|
|
match "/auth/failure", to: "users/omniauth_callbacks#failure", via: [:get, :post]
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
resources :clicks do
|
|
|
|
collection do
|
2013-12-23 18:50:36 -05:00
|
|
|
get "track"
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "excerpt" => "excerpt#show"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
resources :post_actions do
|
|
|
|
collection do
|
2013-12-23 18:50:36 -05:00
|
|
|
get "users"
|
2014-07-28 13:17:37 -04:00
|
|
|
post "defer_flags"
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
resources :user_actions
|
|
|
|
|
2014-04-16 09:12:06 -04:00
|
|
|
resources :badges, only: [:index]
|
2014-04-16 10:56:11 -04:00
|
|
|
get "/badges/:id(/:slug)" => "badges#show"
|
2014-03-05 07:52:20 -05:00
|
|
|
resources :user_badges, only: [:index, :create, :destroy]
|
|
|
|
|
2014-01-13 19:02:14 -05:00
|
|
|
# We've renamed popular to latest. If people access it we want a permanent redirect.
|
|
|
|
get "popular" => "list#popular_redirect"
|
|
|
|
|
2013-07-02 01:21:26 -04:00
|
|
|
resources :categories, :except => :show
|
2013-12-23 18:50:36 -05:00
|
|
|
get "category/:id/show" => "categories#show"
|
2014-06-27 15:35:25 -04:00
|
|
|
post "category/uploads" => "categories#upload"
|
2014-01-17 17:52:06 -05:00
|
|
|
post "category/:category_id/move" => "categories#move"
|
|
|
|
get "category/:category.rss" => "list#category_feed", format: :rss
|
|
|
|
get "category/:parent_category/:category.rss" => "list#category_feed", format: :rss
|
2014-02-03 10:08:00 -05:00
|
|
|
get "category/:category" => "list#category_latest"
|
|
|
|
get "category/:category/none" => "list#category_none_latest"
|
|
|
|
get "category/:parent_category/:category" => "list#parent_category_category_latest"
|
2014-04-17 05:17:39 -04:00
|
|
|
post "category/:category_id/notifications" => "categories#set_notifications"
|
2014-01-17 17:52:06 -05:00
|
|
|
|
|
|
|
get "top" => "list#top"
|
2014-02-03 10:08:00 -05:00
|
|
|
get "category/:category/l/top" => "list#category_top", as: "category_top"
|
|
|
|
get "category/:category/none/l/top" => "list#category_none_top", as: "category_none_top"
|
|
|
|
get "category/:parent_category/:category/l/top" => "list#parent_category_category_top", as: "parent_category_category_top"
|
2014-01-13 19:02:14 -05:00
|
|
|
|
|
|
|
TopTopic.periods.each do |period|
|
|
|
|
get "top/#{period}" => "list#top_#{period}"
|
2014-02-03 10:08:00 -05:00
|
|
|
get "category/:category/l/top/#{period}" => "list#category_top_#{period}", as: "category_top_#{period}"
|
|
|
|
get "category/:category/none/l/top/#{period}" => "list#category_none_top_#{period}", as: "category_none_top_#{period}"
|
|
|
|
get "category/:parent_category/:category/l/top/#{period}" => "list#parent_category_category_top_#{period}", as: "parent_category_category_top_#{period}"
|
2014-01-13 19:02:14 -05:00
|
|
|
end
|
2013-03-27 16:17:49 -04:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
Discourse.anonymous_filters.each do |filter|
|
2013-10-11 12:35:12 -04:00
|
|
|
get "#{filter}.rss" => "list##{filter}_feed", format: :rss
|
2013-07-05 16:49:06 -04:00
|
|
|
end
|
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
Discourse.filters.each do |filter|
|
2013-03-28 09:01:13 -04:00
|
|
|
get "#{filter}" => "list##{filter}"
|
2014-02-03 10:08:00 -05:00
|
|
|
get "category/:category/l/#{filter}" => "list#category_#{filter}", as: "category_#{filter}"
|
|
|
|
get "category/:category/none/l/#{filter}" => "list#category_none_#{filter}", as: "category_none_#{filter}"
|
|
|
|
get "category/:parent_category/:category/l/#{filter}" => "list#parent_category_category_#{filter}", as: "parent_category_category_#{filter}"
|
2013-03-28 09:01:13 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "search" => "search#query"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
# Topics resource
|
2013-12-23 18:50:36 -05:00
|
|
|
get "t/:id" => "topics#show"
|
|
|
|
post "t" => "topics#create"
|
2014-01-13 19:02:14 -05:00
|
|
|
put "t/:id" => "topics#update"
|
|
|
|
delete "t/:id" => "topics#destroy"
|
2014-01-29 15:48:52 -05:00
|
|
|
put "topics/bulk"
|
2014-03-03 15:46:38 -05:00
|
|
|
put "topics/reset-new" => 'topics#reset_new'
|
2013-12-23 18:50:36 -05:00
|
|
|
post "topics/timings"
|
|
|
|
get "topics/similar_to"
|
|
|
|
get "topics/created-by/:username" => "list#topics_by", as: "topics_by", constraints: {username: USERNAME_ROUTE_FORMAT}
|
|
|
|
get "topics/private-messages/:username" => "list#private_messages", as: "topics_private_messages", constraints: {username: USERNAME_ROUTE_FORMAT}
|
|
|
|
get "topics/private-messages-sent/:username" => "list#private_messages_sent", as: "topics_private_messages_sent", constraints: {username: USERNAME_ROUTE_FORMAT}
|
|
|
|
get "topics/private-messages-unread/:username" => "list#private_messages_unread", as: "topics_private_messages_unread", constraints: {username: USERNAME_ROUTE_FORMAT}
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2014-01-03 12:52:24 -05:00
|
|
|
get 'embed/comments' => 'embed#comments'
|
2014-01-13 12:47:24 -05:00
|
|
|
get 'embed/count' => 'embed#count'
|
2013-12-31 14:37:43 -05:00
|
|
|
|
2013-02-14 14:11:13 -05:00
|
|
|
# Topic routes
|
2014-09-17 11:18:41 -04:00
|
|
|
get "t/id_for/:slug" => "topics#id_for_slug"
|
2013-12-23 18:50:36 -05:00
|
|
|
get "t/:slug/:topic_id/wordpress" => "topics#wordpress", constraints: {topic_id: /\d+/}
|
|
|
|
get "t/:slug/:topic_id/moderator-liked" => "topics#moderator_liked", constraints: {topic_id: /\d+/}
|
|
|
|
get "t/:topic_id/wordpress" => "topics#wordpress", constraints: {topic_id: /\d+/}
|
|
|
|
get "t/:slug/:topic_id/summary" => "topics#show", defaults: {summary: true}, constraints: {topic_id: /\d+/, post_number: /\d+/}
|
|
|
|
get "t/:topic_id/summary" => "topics#show", constraints: {topic_id: /\d+/, post_number: /\d+/}
|
|
|
|
put "t/:slug/:topic_id" => "topics#update", constraints: {topic_id: /\d+/}
|
|
|
|
put "t/:slug/:topic_id/star" => "topics#star", constraints: {topic_id: /\d+/}
|
|
|
|
put "t/:topic_id/star" => "topics#star", constraints: {topic_id: /\d+/}
|
|
|
|
put "t/:slug/:topic_id/status" => "topics#status", constraints: {topic_id: /\d+/}
|
|
|
|
put "t/:topic_id/status" => "topics#status", constraints: {topic_id: /\d+/}
|
|
|
|
put "t/:topic_id/clear-pin" => "topics#clear_pin", constraints: {topic_id: /\d+/}
|
2014-04-09 20:56:56 -04:00
|
|
|
put "t/:topic_id/re-pin" => "topics#re_pin", constraints: {topic_id: /\d+/}
|
2013-12-23 18:50:36 -05:00
|
|
|
put "t/:topic_id/mute" => "topics#mute", constraints: {topic_id: /\d+/}
|
|
|
|
put "t/:topic_id/unmute" => "topics#unmute", constraints: {topic_id: /\d+/}
|
|
|
|
put "t/:topic_id/autoclose" => "topics#autoclose", constraints: {topic_id: /\d+/}
|
2014-06-16 12:28:07 -04:00
|
|
|
put "t/:topic_id/make-banner" => "topics#make_banner", constraints: {topic_id: /\d+/}
|
|
|
|
put "t/:topic_id/remove-banner" => "topics#remove_banner", constraints: {topic_id: /\d+/}
|
2013-12-23 18:50:36 -05:00
|
|
|
put "t/:topic_id/remove-allowed-user" => "topics#remove_allowed_user", constraints: {topic_id: /\d+/}
|
|
|
|
put "t/:topic_id/recover" => "topics#recover", constraints: {topic_id: /\d+/}
|
|
|
|
get "t/:topic_id/:post_number" => "topics#show", constraints: {topic_id: /\d+/, post_number: /\d+/}
|
2014-01-30 15:23:42 -05:00
|
|
|
get "t/:topic_id/last" => "topics#show", post_number: 99999999, constraints: {topic_id: /\d+/}
|
2013-12-23 18:50:36 -05:00
|
|
|
get "t/:slug/:topic_id.rss" => "topics#feed", format: :rss, constraints: {topic_id: /\d+/}
|
|
|
|
get "t/:slug/:topic_id" => "topics#show", constraints: {topic_id: /\d+/}
|
|
|
|
get "t/:slug/:topic_id/:post_number" => "topics#show", constraints: {topic_id: /\d+/, post_number: /\d+/}
|
2014-01-30 15:23:42 -05:00
|
|
|
get "t/:slug/:topic_id/last" => "topics#show", post_number: 99999999, constraints: {topic_id: /\d+/}
|
2013-12-23 18:50:36 -05:00
|
|
|
get "t/:topic_id/posts" => "topics#posts", constraints: {topic_id: /\d+/}
|
|
|
|
post "t/:topic_id/timings" => "topics#timings", constraints: {topic_id: /\d+/}
|
|
|
|
post "t/:topic_id/invite" => "topics#invite", constraints: {topic_id: /\d+/}
|
|
|
|
post "t/:topic_id/move-posts" => "topics#move_posts", constraints: {topic_id: /\d+/}
|
|
|
|
post "t/:topic_id/merge-topic" => "topics#merge_topic", constraints: {topic_id: /\d+/}
|
2014-03-27 21:28:14 -04:00
|
|
|
post "t/:topic_id/change-owner" => "topics#change_post_owners", constraints: {topic_id: /\d+/}
|
2013-12-23 18:50:36 -05:00
|
|
|
delete "t/:topic_id/timings" => "topics#destroy_timings", constraints: {topic_id: /\d+/}
|
|
|
|
|
|
|
|
post "t/:topic_id/notifications" => "topics#set_notifications" , constraints: {topic_id: /\d+/}
|
|
|
|
|
2014-07-11 17:34:26 -04:00
|
|
|
get "p/:post_id(/:user_id)" => "posts#short_link"
|
2014-06-20 17:06:44 -04:00
|
|
|
get "/posts/:id/cooked" => "posts#cooked"
|
2014-04-01 17:45:16 -04:00
|
|
|
get "/posts/:id/expand-embed" => "posts#expand_embed"
|
2014-07-11 17:34:26 -04:00
|
|
|
get "/posts/:id/raw" => "posts#markdown_id"
|
|
|
|
get "raw/:topic_id(/:post_number)" => "posts#markdown_num"
|
2013-04-30 02:29:57 -04:00
|
|
|
|
2014-05-27 16:14:37 -04:00
|
|
|
resources :invites do
|
|
|
|
collection do
|
|
|
|
get "upload" => "invites#check_csv_chunk"
|
|
|
|
post "upload" => "invites#upload_csv_chunk"
|
|
|
|
end
|
|
|
|
end
|
2014-07-14 11:56:26 -04:00
|
|
|
post "invites/disposable" => "invites#create_disposable_invite"
|
|
|
|
get "invites/redeem/:token" => "invites#redeem_disposable_invite"
|
2013-12-23 18:50:36 -05:00
|
|
|
delete "invites" => "invites#destroy"
|
2013-02-14 14:11:13 -05:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "onebox" => "onebox#show"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "error" => "forums#error"
|
2014-06-16 14:25:33 -04:00
|
|
|
get "exception" => "list#latest"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "message-bus/poll" => "message_bus#poll"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "draft" => "draft#show"
|
|
|
|
post "draft" => "draft#update"
|
|
|
|
delete "draft" => "draft#destroy"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2014-05-18 18:46:09 -04:00
|
|
|
get "cdn_asset/:site/*path" => "static#cdn_asset", format: false
|
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "robots.txt" => "robots_txt#index"
|
2013-02-10 19:02:57 -05:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
Discourse.filters.each do |filter|
|
2013-07-01 14:00:06 -04:00
|
|
|
root to: "list##{filter}", constraints: HomePageConstraint.new("#{filter}"), :as => "list_#{filter}"
|
2013-03-28 09:01:13 -04:00
|
|
|
end
|
|
|
|
# special case for categories
|
2013-07-01 14:00:06 -04:00
|
|
|
root to: "categories#index", constraints: HomePageConstraint.new("categories"), :as => "categories_index"
|
2014-01-03 13:36:49 -05:00
|
|
|
# special case for top
|
2014-01-17 17:52:06 -05:00
|
|
|
root to: "list#top", constraints: HomePageConstraint.new("top"), :as => "top_lists"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2014-08-29 11:28:16 -04:00
|
|
|
get "*url", to: 'permalinks#show', constraints: PermalinkConstraint.new
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|