2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
require "sidekiq/web"
|
2018-07-31 17:12:55 -04:00
|
|
|
require "mini_scheduler/web"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2017-12-21 17:17:25 -05:00
|
|
|
# The following constants have been replaced with `RouteFormat` and are deprecated.
|
2019-04-23 06:22:47 -04:00
|
|
|
USERNAME_ROUTE_FORMAT = /[%\w.\-]+?/ unless defined? USERNAME_ROUTE_FORMAT
|
2017-12-21 17:17:25 -05:00
|
|
|
BACKUP_ROUTE_FORMAT = /.+\.(sql\.gz|tar\.gz|tgz)/i unless defined? BACKUP_ROUTE_FORMAT
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
Discourse::Application.routes.draw do
|
2021-08-03 09:26:48 -04:00
|
|
|
def patch(*) end # Disable PATCH requests
|
|
|
|
|
2019-07-23 13:17:44 -04:00
|
|
|
scope path: nil, constraints: { format: /(json|html|\*\/\*)/ } do
|
|
|
|
relative_url_root = (defined?(Rails.configuration.relative_url_root) && Rails.configuration.relative_url_root) ? Rails.configuration.relative_url_root + '/' : '/'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
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"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2020-06-03 14:45:23 -04:00
|
|
|
get "/bootstrap" => "bootstrap#index"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2019-02-13 15:26:40 -05:00
|
|
|
post "webhooks/aws" => "webhooks#aws"
|
2016-06-06 13:47:45 -04:00
|
|
|
post "webhooks/mailgun" => "webhooks#mailgun"
|
|
|
|
post "webhooks/mailjet" => "webhooks#mailjet"
|
2016-06-13 06:31:01 -04:00
|
|
|
post "webhooks/mandrill" => "webhooks#mandrill"
|
2020-02-11 10:09:07 -05:00
|
|
|
post "webhooks/postmark" => "webhooks#postmark"
|
2019-02-13 15:26:40 -05:00
|
|
|
post "webhooks/sendgrid" => "webhooks#sendgrid"
|
2016-09-27 01:13:34 -04:00
|
|
|
post "webhooks/sparkpost" => "webhooks#sparkpost"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2019-07-23 13:17:44 -04:00
|
|
|
scope path: nil, constraints: { format: /.*/ } do
|
|
|
|
if Rails.env.development?
|
|
|
|
mount Sidekiq::Web => "/sidekiq"
|
|
|
|
mount Logster::Web => "/logs"
|
|
|
|
else
|
|
|
|
# only allow sidekiq in master site
|
|
|
|
mount Sidekiq::Web => "/sidekiq", constraints: AdminConstraint.new(require_master: true)
|
|
|
|
mount Logster::Web => "/logs", constraints: AdminConstraint.new
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2019-07-23 13:17:44 -04:00
|
|
|
end
|
2014-05-06 18:23:52 -04:00
|
|
|
|
2015-08-27 17:28:33 -04:00
|
|
|
resources :about do
|
|
|
|
collection do
|
|
|
|
get "live_post_counts"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2015-08-27 17:28:33 -04:00
|
|
|
end
|
2014-08-11 16:59:00 -04:00
|
|
|
|
2016-10-18 11:44:25 -04:00
|
|
|
get "finish-installation" => "finish_installation#index"
|
|
|
|
get "finish-installation/register" => "finish_installation#register"
|
|
|
|
post "finish-installation/register" => "finish_installation#register"
|
|
|
|
get "finish-installation/confirm-email" => "finish_installation#confirm_email"
|
2016-10-21 11:34:19 -04:00
|
|
|
put "finish-installation/resend-email" => "finish_installation#resend_email"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2020-04-08 12:52:36 -04:00
|
|
|
get "pub/check-slug" => "published_pages#check_slug"
|
|
|
|
get "pub/by-topic/:topic_id" => "published_pages#details"
|
|
|
|
put "pub/by-topic/:topic_id" => "published_pages#upsert"
|
|
|
|
delete "pub/by-topic/:topic_id" => "published_pages#destroy"
|
|
|
|
get "pub/:slug" => "published_pages#show"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2015-03-16 15:14:33 -04:00
|
|
|
resources :directory_items
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2015-03-04 23:49:03 -05:00
|
|
|
get "site" => "site#site"
|
|
|
|
namespace :site do
|
|
|
|
get "settings"
|
|
|
|
get "custom_html"
|
|
|
|
get "banner"
|
|
|
|
get "emoji"
|
|
|
|
end
|
2016-08-12 03:10:08 -04:00
|
|
|
|
|
|
|
get "site/basic-info" => 'site#basic_info'
|
2017-03-10 08:16:00 -05:00
|
|
|
get "site/statistics" => 'site#statistics'
|
2016-08-12 03:10:08 -04:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "srv/status" => "forums#status"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2016-08-25 13:14:56 -04:00
|
|
|
get "wizard" => "wizard#index"
|
|
|
|
get 'wizard/steps' => 'steps#index'
|
2016-09-07 18:04:01 -04:00
|
|
|
get 'wizard/steps/:id' => "wizard#index"
|
2016-08-25 13:14:56 -04:00
|
|
|
put 'wizard/steps/:id' => "steps#update"
|
2016-08-24 14:35:07 -04: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
|
|
|
|
2015-02-06 17:32:59 -05:00
|
|
|
get 'plugins' => 'plugins#index'
|
|
|
|
|
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
|
2019-11-17 13:39:38 -05:00
|
|
|
|
|
|
|
put "user_count" => "site_settings#user_count"
|
2013-11-13 14:02:47 -05:00
|
|
|
end
|
2013-05-02 01:15:17 -04:00
|
|
|
|
2018-06-18 06:31:56 -04:00
|
|
|
get "reports" => "reports#index"
|
2018-08-24 09:28:01 -04:00
|
|
|
get "reports/bulk" => "reports#bulk"
|
2013-12-23 18:50:36 -05:00
|
|
|
get "reports/:type" => "reports#show"
|
2013-02-27 22:39:42 -05:00
|
|
|
|
2020-10-19 16:30:21 -04:00
|
|
|
resources :groups, only: [:create] do
|
|
|
|
member do
|
|
|
|
put "owners" => "groups#add_owners"
|
|
|
|
delete "owners" => "groups#remove_owner"
|
2021-02-03 09:11:08 -05:00
|
|
|
put "primary" => "groups#set_primary"
|
2020-10-19 16:30:21 -04:00
|
|
|
end
|
|
|
|
end
|
2020-08-19 10:41:40 -04:00
|
|
|
resources :groups, except: [:create], constraints: AdminConstraint.new do
|
2013-05-08 01:20:38 -04:00
|
|
|
collection do
|
2020-04-22 12:37:39 -04:00
|
|
|
put "automatic_membership_count" => "groups#automatic_membership_count"
|
2013-05-08 01:20:38 -04:00
|
|
|
end
|
2015-01-21 14:52:48 -05:00
|
|
|
end
|
2013-05-08 01:20:38 -04:00
|
|
|
|
2015-01-21 14:52:48 -05:00
|
|
|
get "groups/:type" => "groups#show", constraints: AdminConstraint.new
|
|
|
|
get "groups/:type/:id" => "groups#show", constraints: AdminConstraint.new
|
|
|
|
|
2017-12-21 15:30:32 -05:00
|
|
|
resources :users, id: RouteFormat.username, except: [:show] do
|
2013-02-05 14:16:51 -05:00
|
|
|
collection do
|
2017-04-26 23:02:59 -04:00
|
|
|
get "list" => "users#index"
|
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"
|
2014-11-20 13:59:20 -05:00
|
|
|
delete "delete-others-with-same-ip" => "users#delete_other_accounts_with_same_ip"
|
2014-11-24 13:34:04 -05:00
|
|
|
get "total-others-with-same-ip" => "users#total_other_accounts_with_same_ip"
|
2013-12-23 18:50:36 -05:00
|
|
|
put "approve-bulk" => "users#approve_bulk"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2018-05-25 11:45:42 -04:00
|
|
|
delete "penalty_history", constraints: AdminConstraint.new
|
2013-12-23 18:50:36 -05:00
|
|
|
put "suspend"
|
2018-12-14 05:04:18 -05:00
|
|
|
put "delete_posts_batch"
|
2013-12-23 18:50:36 -05:00
|
|
|
put "unsuspend"
|
|
|
|
put "revoke_admin", constraints: AdminConstraint.new
|
|
|
|
put "grant_admin", constraints: AdminConstraint.new
|
|
|
|
put "revoke_moderation", constraints: AdminConstraint.new
|
|
|
|
put "grant_moderation", constraints: AdminConstraint.new
|
|
|
|
put "approve"
|
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"
|
2017-11-10 12:18:08 -05:00
|
|
|
put "silence"
|
|
|
|
put "unsilence"
|
2013-12-23 18:50:36 -05:00
|
|
|
put "trust_level"
|
2014-09-13 16:55:26 -04:00
|
|
|
put "trust_level_lock"
|
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-09-24 20:19:26 -04:00
|
|
|
get "leader_requirements" => "users#tl3_requirements"
|
|
|
|
get "tl3_requirements"
|
2015-03-06 16:44:54 -05:00
|
|
|
put "anonymize"
|
2020-04-22 04:37:51 -04:00
|
|
|
post "merge"
|
2016-05-06 13:34:33 -04:00
|
|
|
post "reset_bounce_score"
|
2017-12-21 20:18:12 -05:00
|
|
|
put "disable_second_factor"
|
2020-09-15 10:00:10 -04:00
|
|
|
delete "sso_record"
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2018-05-25 11:45:42 -04:00
|
|
|
get "users/:id.json" => 'users#show', defaults: { format: 'json' }
|
2014-07-13 14:11:38 -04:00
|
|
|
get 'users/:id/:username' => 'users#show', constraints: { username: RouteFormat.username }
|
2016-03-28 16:58:45 -04:00
|
|
|
get 'users/:id/:username/badges' => 'users#show'
|
2017-03-16 11:05:28 -04:00
|
|
|
get 'users/:id/:username/tl3_requirements' => 'users#show'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2014-10-27 20:25:02 -04:00
|
|
|
post "users/sync_sso" => "users#sync_sso", constraints: AdminConstraint.new
|
|
|
|
|
2013-05-02 01:15:17 -04:00
|
|
|
resources :impersonate, constraints: AdminConstraint.new
|
2013-06-03 16:12:24 -04:00
|
|
|
|
2014-06-02 02:52:43 -04:00
|
|
|
resources :email, constraints: AdminConstraint.new do
|
2014-11-24 11:25:48 -05:00
|
|
|
collection do
|
|
|
|
post "test"
|
2014-02-14 18:50:08 -05:00
|
|
|
get "sent"
|
2014-02-14 13:06:21 -05:00
|
|
|
get "skipped"
|
2016-05-02 17:15:32 -04:00
|
|
|
get "bounced"
|
2014-11-24 11:25:48 -05:00
|
|
|
get "received"
|
2016-01-18 18:57:55 -05:00
|
|
|
get "rejected"
|
2016-02-01 15:41:49 -05:00
|
|
|
get "/incoming/:id/raw" => "email#raw_email"
|
2016-02-10 16:00:27 -05:00
|
|
|
get "/incoming/:id" => "email#incoming"
|
2014-11-24 11:25:48 -05:00
|
|
|
get "/incoming_from_bounced/:id" => "email#incoming_from_bounced"
|
2013-12-23 18:50:36 -05:00
|
|
|
get "preview-digest" => "email#preview_digest"
|
2016-11-23 17:46:57 -05:00
|
|
|
get "send-digest" => "email#send_digest"
|
2017-04-05 02:32:50 -04:00
|
|
|
get "smtp_should_reject"
|
2015-10-18 17:33:24 -04:00
|
|
|
post "handle_mail"
|
2018-11-28 18:03:50 -05:00
|
|
|
get "advanced-test"
|
|
|
|
post "advanced-test" => "email#advanced_test"
|
2014-11-24 11:25:48 -05:00
|
|
|
end
|
|
|
|
end
|
2020-06-04 22:49:31 -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]
|
2017-04-12 10:52:52 -04:00
|
|
|
get 'staff_action_logs/:id/diff' => 'staff_action_logs#diff'
|
2014-11-24 11:25:48 -05:00
|
|
|
resources :screened_emails, only: [:index, :destroy]
|
|
|
|
resources :screened_ip_addresses, only: [:index, :create, :update, :destroy] do
|
|
|
|
collection do
|
2017-03-22 22:29:35 -04:00
|
|
|
post "roll_up"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
|
|
|
end
|
2013-10-21 14:49:51 -04:00
|
|
|
resources :screened_urls, only: [:index]
|
2017-11-14 19:13:50 -05:00
|
|
|
resources :search_logs, only: [:index]
|
2019-03-28 21:48:20 -04:00
|
|
|
get 'search_logs/term/' => 'search_logs#term'
|
2017-07-31 17:06:26 -04:00
|
|
|
end
|
2013-08-01 21:30:13 -04:00
|
|
|
|
2014-07-13 23:21:29 -04:00
|
|
|
get "/logs" => "staff_action_logs#index"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2021-04-01 02:14:17 -04:00
|
|
|
# alias
|
2021-04-23 09:21:45 -04:00
|
|
|
get '/logs/watched_words', to: redirect(relative_url_root + 'admin/customize/watched_words')
|
|
|
|
get '/logs/watched_words/*path', to: redirect(relative_url_root + 'admin/customize/watched_words/%{path}')
|
2021-04-01 02:14:17 -04:00
|
|
|
|
2014-04-16 09:49:06 -04:00
|
|
|
get "customize" => "color_schemes#index", constraints: AdminConstraint.new
|
2017-04-12 10:52:52 -04:00
|
|
|
get "customize/themes" => "themes#index", constraints: AdminConstraint.new
|
2014-04-16 09:49:06 -04:00
|
|
|
get "customize/colors" => "color_schemes#index", constraints: AdminConstraint.new
|
2017-04-12 10:52:52 -04:00
|
|
|
get "customize/colors/:id" => "color_schemes#index", constraints: AdminConstraint.new
|
2015-07-15 08:54:28 -04:00
|
|
|
get "customize/permalinks" => "permalinks#index", constraints: AdminConstraint.new
|
2015-08-18 17:15:46 -04:00
|
|
|
get "customize/embedding" => "embedding#show", constraints: AdminConstraint.new
|
|
|
|
put "customize/embedding" => "embedding#update", constraints: AdminConstraint.new
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2017-04-12 10:52:52 -04:00
|
|
|
resources :themes, constraints: AdminConstraint.new
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2017-04-12 10:52:52 -04:00
|
|
|
post "themes/import" => "themes#import"
|
2017-05-09 17:20:28 -04:00
|
|
|
post "themes/upload_asset" => "themes#upload_asset"
|
2018-03-09 00:14:21 -05:00
|
|
|
post "themes/generate_key_pair" => "themes#generate_key_pair"
|
2017-04-14 13:35:12 -04:00
|
|
|
get "themes/:id/preview" => "themes#preview"
|
2019-06-21 13:49:14 -04:00
|
|
|
put "themes/:id/setting" => "themes#update_single_setting"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2017-01-06 14:42:36 -05:00
|
|
|
scope "/customize", constraints: AdminConstraint.new do
|
2014-09-25 11:32:08 -04:00
|
|
|
resources :user_fields, constraints: AdminConstraint.new
|
2014-12-22 19:12:26 -05:00
|
|
|
resources :emojis, constraints: AdminConstraint.new
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2017-04-12 10:52:52 -04:00
|
|
|
get 'themes/:id/:target/:field_name/edit' => 'themes#index'
|
|
|
|
get 'themes/:id' => 'themes#index'
|
2019-01-23 09:40:21 -05:00
|
|
|
get "themes/:id/export" => "themes#export"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2015-11-12 16:08:19 -05:00
|
|
|
# They have periods in their URLs often:
|
2018-06-11 00:59:21 -04:00
|
|
|
get 'site_texts' => 'site_texts#index'
|
2019-07-15 07:09:27 -04:00
|
|
|
get 'site_texts/:id.json' => 'site_texts#show', constraints: { id: /[\w.\-\+\%\&]+/i }
|
|
|
|
get 'site_texts/:id' => 'site_texts#show', constraints: { id: /[\w.\-\+\%\&]+/i }
|
|
|
|
put 'site_texts/:id.json' => 'site_texts#update', constraints: { id: /[\w.\-\+\%\&]+/i }
|
|
|
|
put 'site_texts/:id' => 'site_texts#update', constraints: { id: /[\w.\-\+\%\&]+/i }
|
|
|
|
delete 'site_texts/:id.json' => 'site_texts#revert', constraints: { id: /[\w.\-\+\%\&]+/i }
|
|
|
|
delete 'site_texts/:id' => 'site_texts#revert', constraints: { id: /[\w.\-\+\%\&]+/i }
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2019-03-18 16:09:13 -04:00
|
|
|
get 'reseed' => 'site_texts#get_reseed_options'
|
|
|
|
post 'reseed' => 'site_texts#reseed'
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2016-04-06 15:57:54 -04:00
|
|
|
get 'email_templates' => 'email_templates#index'
|
|
|
|
get 'email_templates/(:id)' => 'email_templates#show', constraints: { id: /[0-9a-z_.]+/ }
|
|
|
|
put 'email_templates/(:id)' => 'email_templates#update', constraints: { id: /[0-9a-z_.]+/ }
|
|
|
|
delete 'email_templates/(:id)' => 'email_templates#revert', constraints: { id: /[0-9a-z_.]+/ }
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2019-07-15 13:47:44 -04:00
|
|
|
get 'robots' => 'robots_txt#show'
|
|
|
|
put 'robots.json' => 'robots_txt#update'
|
|
|
|
delete 'robots.json' => 'robots_txt#reset'
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2019-07-30 15:05:08 -04:00
|
|
|
resource :email_style, only: [:show, :update]
|
|
|
|
get 'email_style/:field' => 'email_styles#show', constraints: { field: /html|css/ }
|
2021-04-23 09:21:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
resources :embeddable_hosts, constraints: AdminConstraint.new
|
|
|
|
resources :color_schemes, constraints: AdminConstraint.new
|
|
|
|
resources :permalinks, constraints: AdminConstraint.new
|
2021-04-01 02:14:17 -04:00
|
|
|
|
2021-04-23 09:21:45 -04:00
|
|
|
scope "/customize" do
|
2021-04-01 02:14:17 -04:00
|
|
|
resources :watched_words, only: [:index, :create, :update, :destroy] do
|
|
|
|
collection do
|
|
|
|
get "action/:id" => "watched_words#index"
|
|
|
|
get "action/:id/download" => "watched_words#download"
|
|
|
|
delete "action/:id" => "watched_words#clear_all"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
post "watched_words/upload" => "watched_words#upload"
|
2014-09-23 17:12:01 -04:00
|
|
|
end
|
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "version_check" => "versions#show"
|
2014-02-12 23:33:40 -05:00
|
|
|
|
2019-04-01 06:39:49 -04:00
|
|
|
get "dashboard" => "dashboard#index"
|
|
|
|
get "dashboard/general" => "dashboard#general"
|
|
|
|
get "dashboard/moderation" => "dashboard#moderation"
|
|
|
|
get "dashboard/security" => "dashboard#security"
|
|
|
|
get "dashboard/reports" => "dashboard#reports"
|
2021-01-22 10:09:02 -05:00
|
|
|
get "dashboard/new-features" => "dashboard#new_features"
|
|
|
|
put "dashboard/mark-new-features-as-seen" => "dashboard#mark_new_features_as_seen"
|
2018-04-16 04:42:06 -04: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"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2013-03-29 15:48:26 -04:00
|
|
|
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
|
2019-11-05 09:10:23 -05:00
|
|
|
resources :keys, controller: 'api', only: [:index, :show, :update, :create, :destroy] do
|
2020-07-16 14:51:24 -04:00
|
|
|
collection do
|
|
|
|
get 'scopes' => 'api#scopes'
|
|
|
|
end
|
|
|
|
|
2019-11-05 09:10:23 -05:00
|
|
|
member do
|
|
|
|
post "revoke" => "api#revoke_key"
|
|
|
|
post "undo-revoke" => "api#undo_revoke_key"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2019-11-05 09:10:23 -05:00
|
|
|
end
|
2016-09-19 04:43:06 -04:00
|
|
|
|
|
|
|
resources :web_hooks
|
|
|
|
get 'web_hook_events/:id' => 'web_hooks#list_events', as: :web_hook_events
|
|
|
|
get 'web_hooks/:id/events' => 'web_hooks#list_events'
|
|
|
|
get 'web_hooks/:id/events/bulk' => 'web_hooks#bulk_events'
|
|
|
|
post 'web_hooks/:web_hook_id/events/:event_id/redeliver' => 'web_hooks#redeliver_event'
|
|
|
|
post 'web_hooks/:id/ping' => 'web_hooks#ping'
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2013-03-25 21:04:28 -04:00
|
|
|
end
|
2014-02-12 23:33:40 -05:00
|
|
|
|
|
|
|
resources :backups, only: [:index, :create], constraints: AdminConstraint.new do
|
|
|
|
member do
|
2017-12-21 15:30:32 -05:00
|
|
|
get "" => "backups#show", constraints: { id: RouteFormat.backup }
|
|
|
|
put "" => "backups#email", constraints: { id: RouteFormat.backup }
|
|
|
|
delete "" => "backups#destroy", constraints: { id: RouteFormat.backup }
|
|
|
|
post "restore" => "backups#restore", constraints: { id: RouteFormat.backup }
|
2014-02-12 23:33:40 -05:00
|
|
|
end
|
|
|
|
collection do
|
|
|
|
get "logs" => "backups#logs"
|
|
|
|
get "status" => "backups#status"
|
2017-03-22 22:29:35 -04:00
|
|
|
delete "cancel" => "backups#cancel"
|
|
|
|
post "rollback" => "backups#rollback"
|
2014-02-12 23:33:40 -05:00
|
|
|
put "readonly" => "backups#readonly"
|
2014-05-27 16:14:37 -04:00
|
|
|
get "upload" => "backups#check_backup_chunk"
|
|
|
|
post "upload" => "backups#upload_backup_chunk"
|
2018-10-14 21:43:31 -04:00
|
|
|
get "upload_url" => "backups#create_upload_url"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2014-02-12 23:33:40 -05:00
|
|
|
end
|
2014-02-14 18:50:08 -05:00
|
|
|
|
2014-03-05 07:52:20 -05:00
|
|
|
resources :badges, constraints: AdminConstraint.new do
|
|
|
|
collection do
|
2020-01-13 09:20:26 -05:00
|
|
|
get "/award/:badge_id" => "badges#award"
|
|
|
|
post "/award/:badge_id" => "badges#mass_award"
|
2014-03-05 07:52:20 -05:00
|
|
|
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"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2014-03-05 07:52:20 -05:00
|
|
|
end
|
2018-11-26 16:49:57 -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/unsubscribe/:key" => "email#unsubscribe", as: "email_unsubscribe"
|
2016-06-16 21:27:52 -04:00
|
|
|
get "email/unsubscribed" => "email#unsubscribed", as: "email_unsubscribed"
|
|
|
|
post "email/unsubscribe/:key" => "email#perform_unsubscribe", as: "email_perform_unsubscribe"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2016-08-25 16:33:29 -04:00
|
|
|
get "extra-locales/:bundle" => "extra_locales#show"
|
|
|
|
|
2017-12-21 15:30:32 -05:00
|
|
|
resources :session, id: RouteFormat.username, only: [:create, :destroy, :become] do
|
2018-03-27 23:31:43 -04:00
|
|
|
if !Rails.env.production?
|
2018-03-27 23:22:43 -04:00
|
|
|
get 'become'
|
|
|
|
end
|
|
|
|
|
2013-02-14 14:11:13 -05:00
|
|
|
collection do
|
2013-12-23 18:50:36 -05:00
|
|
|
post "forgot_password"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2019-01-03 12:03:01 -05:00
|
|
|
get "review" => "reviewables#index" # For ember app
|
|
|
|
get "review/:reviewable_id" => "reviewables#show", constraints: { reviewable_id: /\d+/ }
|
2019-09-04 11:56:25 -04:00
|
|
|
get "review/:reviewable_id/explain" => "reviewables#explain", constraints: { reviewable_id: /\d+/ }
|
2020-08-07 12:13:02 -04:00
|
|
|
get "review/count" => "reviewables#count"
|
2019-01-03 12:03:01 -05:00
|
|
|
get "review/topics" => "reviewables#topics"
|
2019-04-02 17:00:15 -04:00
|
|
|
get "review/settings" => "reviewables#settings"
|
|
|
|
put "review/settings" => "reviewables#settings"
|
2019-01-03 12:03:01 -05:00
|
|
|
put "review/:reviewable_id/perform/:action_id" => "reviewables#perform", constraints: {
|
|
|
|
reviewable_id: /\d+/,
|
|
|
|
action_id: /[a-z\_]+/
|
|
|
|
}
|
|
|
|
put "review/:reviewable_id" => "reviewables#update", constraints: { reviewable_id: /\d+/ }
|
2019-04-12 09:55:27 -04:00
|
|
|
delete "review/:reviewable_id" => "reviewables#destroy", constraints: { reviewable_id: /\d+/ }
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2019-05-08 10:20:51 -04:00
|
|
|
resources :reviewable_claimed_topics
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2014-02-24 22:30:49 -05:00
|
|
|
get "session/sso" => "session#sso"
|
|
|
|
get "session/sso_login" => "session#sso_login"
|
2014-11-26 01:25:54 -05:00
|
|
|
get "session/sso_provider" => "session#sso_provider"
|
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"
|
2020-10-01 19:01:40 -04:00
|
|
|
get "session/hp" => "session#get_honeypot_value"
|
2019-06-12 10:37:26 -04:00
|
|
|
get "session/email-login/:token" => "session#email_login_info"
|
2017-12-21 20:18:12 -05:00
|
|
|
post "session/email-login/:token" => "session#email_login"
|
2019-04-01 13:18:53 -04:00
|
|
|
get "session/otp/:token" => "session#one_time_password", constraints: { token: /[0-9a-f]+/ }
|
2019-06-12 13:32:13 -04:00
|
|
|
post "session/otp/:token" => "session#one_time_password", constraints: { token: /[0-9a-f]+/ }
|
2016-06-06 13:52:24 -04:00
|
|
|
get "composer_messages" => "composer_messages#index"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
resources :static
|
2019-07-23 13:17:44 -04:00
|
|
|
post "login" => "static#enter"
|
|
|
|
get "login" => "static#show", id: "login"
|
|
|
|
get "password-reset" => "static#show", id: "password_reset"
|
|
|
|
get "faq" => "static#show", id: "faq"
|
|
|
|
get "tos" => "static#show", id: "tos", as: 'tos'
|
|
|
|
get "privacy" => "static#show", id: "privacy", as: 'privacy'
|
|
|
|
get "signup" => "static#show", id: "signup"
|
|
|
|
get "login-preferences" => "static#show", id: "login"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2018-12-18 16:40:05 -05:00
|
|
|
%w{guidelines rules conduct}.each do |faq_alias|
|
2019-07-23 13:17:44 -04:00
|
|
|
get faq_alias => "static#show", id: "guidelines", as: faq_alias
|
2018-12-18 16:40:05 -05:00
|
|
|
end
|
|
|
|
|
2017-03-27 15:34:54 -04:00
|
|
|
get "my/*path", to: 'users#my_redirect'
|
2021-10-08 13:53:14 -04:00
|
|
|
get ".well-known/change-password", to: redirect(relative_url_root + 'my/preferences/security', status: 302)
|
2017-03-27 15:34:54 -04:00
|
|
|
|
2020-03-06 07:23:22 -05:00
|
|
|
get "user-cards" => "users#cards", format: :json
|
2021-06-07 13:34:01 -04:00
|
|
|
get "directory-columns" => "directory_columns#index", format: :json
|
2021-06-22 14:00:04 -04:00
|
|
|
get "edit-directory-columns" => "edit_directory_columns#index", format: :json
|
|
|
|
put "edit-directory-columns" => "edit_directory_columns#update", format: :json
|
2020-03-06 07:23:22 -05:00
|
|
|
|
2017-03-30 22:04:00 -04:00
|
|
|
%w{users u}.each_with_index do |root_path, index|
|
2017-06-26 21:03:00 -04:00
|
|
|
get "#{root_path}" => "users#index", constraints: { format: 'html' }
|
|
|
|
|
|
|
|
resources :users, except: [:index, :new, :show, :update, :destroy], path: root_path do
|
2017-03-30 22:04:00 -04:00
|
|
|
collection do
|
|
|
|
get "check_username"
|
2021-03-22 11:46:03 -04:00
|
|
|
get "check_email"
|
2017-03-30 22:04:00 -04:00
|
|
|
get "is_local_username"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2017-03-30 22:04:00 -04:00
|
|
|
end
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2019-06-26 19:58:06 -04:00
|
|
|
post "#{root_path}/second_factors" => "users#list_second_factors"
|
2018-02-20 01:44:51 -05:00
|
|
|
put "#{root_path}/second_factor" => "users#update_second_factor"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2019-10-01 22:08:41 -04:00
|
|
|
post "#{root_path}/create_second_factor_security_key" => "users#create_second_factor_security_key"
|
|
|
|
post "#{root_path}/register_second_factor_security_key" => "users#register_second_factor_security_key"
|
|
|
|
put "#{root_path}/security_key" => "users#update_security_key"
|
2019-06-26 19:58:06 -04:00
|
|
|
post "#{root_path}/create_second_factor_totp" => "users#create_second_factor_totp"
|
|
|
|
post "#{root_path}/enable_second_factor_totp" => "users#enable_second_factor_totp"
|
|
|
|
put "#{root_path}/disable_second_factor" => "users#disable_second_factor"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2018-06-28 04:12:32 -04:00
|
|
|
put "#{root_path}/second_factors_backup" => "users#create_second_factor_backup"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2017-04-05 16:14:22 -04:00
|
|
|
put "#{root_path}/update-activation-email" => "users#update_activation_email"
|
2017-04-20 11:17:24 -04:00
|
|
|
post "#{root_path}/email-login" => "users#email_login"
|
2017-03-30 22:04:00 -04:00
|
|
|
get "#{root_path}/admin-login" => "users#admin_login"
|
|
|
|
put "#{root_path}/admin-login" => "users#admin_login"
|
|
|
|
post "#{root_path}/toggle-anon" => "users#toggle_anon"
|
|
|
|
post "#{root_path}/read-faq" => "users#read_faq"
|
|
|
|
get "#{root_path}/search/users" => "users#search_users"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2017-05-11 11:18:06 -04:00
|
|
|
get({ "#{root_path}/account-created/" => "users#account_created" }.merge(index == 1 ? { as: :users_account_created } : { as: :old_account_created }))
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2017-05-02 15:57:55 -04:00
|
|
|
get "#{root_path}/account-created/resent" => "users#account_created"
|
|
|
|
get "#{root_path}/account-created/edit-email" => "users#account_created"
|
2020-01-15 05:27:12 -05:00
|
|
|
get({ "#{root_path}/password-reset/:token" => "users#password_reset_show" }.merge(index == 1 ? { as: :password_reset_token } : {}))
|
2017-03-30 22:04:00 -04:00
|
|
|
get "#{root_path}/confirm-email-token/:token" => "users#confirm_email_token", constraints: { format: 'json' }
|
2020-01-15 05:27:12 -05:00
|
|
|
put "#{root_path}/password-reset/:token" => "users#password_reset_update"
|
2017-03-30 22:04:00 -04:00
|
|
|
get "#{root_path}/activate-account/:token" => "users#activate_account"
|
|
|
|
put({ "#{root_path}/activate-account/:token" => "users#perform_account_activation" }.merge(index == 1 ? { as: 'perform_activate_account' } : {}))
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2019-11-20 02:31:25 -05:00
|
|
|
get "#{root_path}/confirm-old-email/:token" => "users_email#show_confirm_old_email"
|
|
|
|
put "#{root_path}/confirm-old-email" => "users_email#confirm_old_email"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2019-11-20 02:31:25 -05:00
|
|
|
get "#{root_path}/confirm-new-email/:token" => "users_email#show_confirm_new_email"
|
|
|
|
put "#{root_path}/confirm-new-email" => "users_email#confirm_new_email"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
|
|
|
get({
|
2017-04-04 13:59:22 -04:00
|
|
|
"#{root_path}/confirm-admin/:token" => "users#confirm_admin",
|
|
|
|
constraints: { token: /[0-9a-f]+/ }
|
|
|
|
}.merge(index == 1 ? { as: 'confirm_admin' } : {}))
|
|
|
|
post "#{root_path}/confirm-admin/:token" => "users#confirm_admin", constraints: { token: /[0-9a-f]+/ }
|
2017-12-21 15:30:32 -05:00
|
|
|
get "#{root_path}/:username/private-messages" => "user_actions#private_messages", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/private-messages/:filter" => "user_actions#private_messages", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/messages" => "user_actions#private_messages", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/messages/:filter" => "user_actions#private_messages", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/messages/group/:group_name" => "user_actions#private_messages", constraints: { username: RouteFormat.username, group_name: RouteFormat.username }
|
2021-08-02 00:41:41 -04:00
|
|
|
get "#{root_path}/:username/messages/group/:group_name/:filter" => "user_actions#private_messages", constraints: { username: RouteFormat.username, group_name: RouteFormat.username }
|
2021-08-05 01:01:01 -04:00
|
|
|
get "#{root_path}/:username/messages/tags/:tag_id" => "user_actions#private_messages", constraints: StaffConstraint.new
|
2017-12-21 15:30:32 -05:00
|
|
|
get "#{root_path}/:username.json" => "users#show", constraints: { username: RouteFormat.username }, defaults: { format: :json }
|
2019-07-23 13:17:44 -04:00
|
|
|
get({ "#{root_path}/:username" => "users#show", constraints: { username: RouteFormat.username } }.merge(index == 1 ? { as: 'user' } : {}))
|
|
|
|
put "#{root_path}/:username" => "users#update", constraints: { username: RouteFormat.username }, defaults: { format: :json }
|
2017-12-21 15:30:32 -05:00
|
|
|
get "#{root_path}/:username/emails" => "users#check_emails", constraints: { username: RouteFormat.username }
|
2020-11-10 14:12:44 -05:00
|
|
|
get "#{root_path}/:username/sso-email" => "users#check_sso_email", constraints: { username: RouteFormat.username }
|
2021-02-17 10:57:51 -05:00
|
|
|
get "#{root_path}/:username/sso-payload" => "users#check_sso_payload", constraints: { username: RouteFormat.username }
|
2020-06-05 12:42:12 -04:00
|
|
|
get "#{root_path}/:username/preferences" => "users#preferences", constraints: { username: RouteFormat.username }
|
2017-12-21 15:30:32 -05:00
|
|
|
get "#{root_path}/:username/preferences/email" => "users_email#index", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/preferences/account" => "users#preferences", constraints: { username: RouteFormat.username }
|
2021-03-03 04:09:22 -05:00
|
|
|
get "#{root_path}/:username/preferences/security" => "users#preferences", constraints: { username: RouteFormat.username }
|
2017-12-21 15:30:32 -05:00
|
|
|
get "#{root_path}/:username/preferences/profile" => "users#preferences", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/preferences/emails" => "users#preferences", constraints: { username: RouteFormat.username }
|
2020-06-10 12:11:49 -04:00
|
|
|
put "#{root_path}/:username/preferences/primary-email" => "users#update_primary_email", format: :json, constraints: { username: RouteFormat.username }
|
|
|
|
delete "#{root_path}/:username/preferences/email" => "users#destroy_email", constraints: { username: RouteFormat.username }
|
2017-12-21 15:30:32 -05:00
|
|
|
get "#{root_path}/:username/preferences/notifications" => "users#preferences", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/preferences/categories" => "users#preferences", constraints: { username: RouteFormat.username }
|
2019-03-05 09:47:51 -05:00
|
|
|
get "#{root_path}/:username/preferences/users" => "users#preferences", constraints: { username: RouteFormat.username }
|
2017-12-21 15:30:32 -05:00
|
|
|
get "#{root_path}/:username/preferences/tags" => "users#preferences", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/preferences/interface" => "users#preferences", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/preferences/apps" => "users#preferences", constraints: { username: RouteFormat.username }
|
2020-06-10 12:11:49 -04:00
|
|
|
post "#{root_path}/:username/preferences/email" => "users_email#create", constraints: { username: RouteFormat.username }
|
2017-12-21 15:30:32 -05:00
|
|
|
put "#{root_path}/:username/preferences/email" => "users_email#update", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/preferences/badge_title" => "users#preferences", constraints: { username: RouteFormat.username }
|
|
|
|
put "#{root_path}/:username/preferences/badge_title" => "users#badge_title", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/preferences/username" => "users#preferences", constraints: { username: RouteFormat.username }
|
|
|
|
put "#{root_path}/:username/preferences/username" => "users#username", constraints: { username: RouteFormat.username }
|
2017-12-21 20:18:12 -05:00
|
|
|
get "#{root_path}/:username/preferences/second-factor" => "users#preferences", constraints: { username: RouteFormat.username }
|
2018-06-28 04:12:32 -04:00
|
|
|
get "#{root_path}/:username/preferences/second-factor-backup" => "users#preferences", constraints: { username: RouteFormat.username }
|
2017-12-21 15:30:32 -05:00
|
|
|
delete "#{root_path}/:username/preferences/user_image" => "users#destroy_user_image", constraints: { username: RouteFormat.username }
|
|
|
|
put "#{root_path}/:username/preferences/avatar/pick" => "users#pick_avatar", constraints: { username: RouteFormat.username }
|
2018-07-18 06:57:43 -04:00
|
|
|
put "#{root_path}/:username/preferences/avatar/select" => "users#select_avatar", constraints: { username: RouteFormat.username }
|
2018-07-23 11:51:57 -04:00
|
|
|
post "#{root_path}/:username/preferences/revoke-account" => "users#revoke_account", constraints: { username: RouteFormat.username }
|
2018-08-31 04:18:06 -04:00
|
|
|
post "#{root_path}/:username/preferences/revoke-auth-token" => "users#revoke_auth_token", constraints: { username: RouteFormat.username }
|
2017-12-21 15:30:32 -05:00
|
|
|
get "#{root_path}/:username/staff-info" => "users#staff_info", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/summary" => "users#summary", constraints: { username: RouteFormat.username }
|
2019-03-27 05:41:50 -04:00
|
|
|
put "#{root_path}/:username/notification_level" => "users#notification_level", constraints: { username: RouteFormat.username }
|
2017-12-21 15:30:32 -05:00
|
|
|
get "#{root_path}/:username/invited" => "users#invited", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/invited/:filter" => "users#invited", constraints: { username: RouteFormat.username }
|
2017-03-30 22:04:00 -04:00
|
|
|
post "#{root_path}/action/send_activation_email" => "users#send_activation_email"
|
2017-12-21 15:30:32 -05:00
|
|
|
get "#{root_path}/:username/summary" => "users#show", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/activity/topics.rss" => "list#user_topics_feed", format: :rss, constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/activity.rss" => "posts#user_posts_feed", format: :rss, constraints: { username: RouteFormat.username }
|
2018-10-09 10:21:41 -04:00
|
|
|
get "#{root_path}/:username/activity.json" => "posts#user_posts_feed", format: :json, constraints: { username: RouteFormat.username }
|
2017-12-21 15:30:32 -05:00
|
|
|
get "#{root_path}/:username/activity" => "users#show", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/activity/:filter" => "users#show", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/badges" => "users#badges", constraints: { username: RouteFormat.username }
|
2020-03-17 18:22:41 -04:00
|
|
|
get "#{root_path}/:username/bookmarks" => "users#bookmarks", constraints: { username: RouteFormat.username, format: /(json|ics)/ }
|
2017-12-21 15:30:32 -05:00
|
|
|
get "#{root_path}/:username/notifications" => "users#show", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/notifications/:filter" => "users#show", constraints: { username: RouteFormat.username }
|
2019-07-23 13:17:44 -04:00
|
|
|
delete "#{root_path}/:username" => "users#destroy", constraints: { username: RouteFormat.username }
|
2017-03-30 22:04:00 -04:00
|
|
|
get "#{root_path}/by-external/:external_id" => "users#show", constraints: { external_id: /[^\/]+/ }
|
2020-11-10 05:41:46 -05:00
|
|
|
get "#{root_path}/by-external/:external_provider/:external_id" => "users#show", constraints: { external_id: /[^\/]+/ }
|
2017-12-21 15:30:32 -05:00
|
|
|
get "#{root_path}/:username/flagged-posts" => "users#show", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/deleted-posts" => "users#show", constraints: { username: RouteFormat.username }
|
|
|
|
get "#{root_path}/:username/topic-tracking-state" => "users#topic_tracking_state", constraints: { username: RouteFormat.username }
|
2021-08-24 23:17:56 -04:00
|
|
|
get "#{root_path}/:username/private-message-topic-tracking-state" => "users#private_message_topic_tracking_state", constraints: { username: RouteFormat.username }
|
2018-10-10 13:00:08 -04:00
|
|
|
get "#{root_path}/:username/profile-hidden" => "users#profile_hidden"
|
2019-12-09 14:15:47 -05:00
|
|
|
put "#{root_path}/:username/feature-topic" => "users#feature_topic", constraints: { username: RouteFormat.username }
|
|
|
|
put "#{root_path}/:username/clear-featured-topic" => "users#clear_featured_topic", constraints: { username: RouteFormat.username }
|
2020-01-28 06:55:46 -05:00
|
|
|
get "#{root_path}/:username/card.json" => "users#show_card", format: :json, constraints: { username: RouteFormat.username }
|
2017-03-30 22:04:00 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
get "user-badges/:username.json" => "user_badges#username", constraints: { username: RouteFormat.username }, defaults: { format: :json }
|
2017-12-21 15:30:32 -05:00
|
|
|
get "user-badges/:username" => "user_badges#username", constraints: { username: RouteFormat.username }
|
2016-08-12 02:35:10 -04:00
|
|
|
|
2017-12-21 15:30:32 -05:00
|
|
|
post "user_avatar/:username/refresh_gravatar" => "user_avatars#refresh_gravatar", constraints: { username: RouteFormat.username }
|
|
|
|
get "letter_avatar/:username/:size/:version.png" => "user_avatars#show_letter", constraints: { hostname: /[\w\.-]+/, size: /\d+/, username: RouteFormat.username, format: :png }
|
|
|
|
get "user_avatar/:hostname/:username/:size/:version.png" => "user_avatars#show", constraints: { hostname: /[\w\.-]+/, size: /\d+/, username: RouteFormat.username, format: :png }
|
2013-12-23 18:50:36 -05:00
|
|
|
|
2019-07-23 13:17:44 -04:00
|
|
|
get "letter_avatar_proxy/:version/letter/:letter/:color/:size.png" => "user_avatars#show_proxy_letter", constraints: { format: :png }
|
2014-05-26 05:46:43 -04:00
|
|
|
|
2021-06-15 02:57:17 -04:00
|
|
|
get "svg-sprite/:hostname/svg-:theme_id-:version.js" => "svg_sprite#show", constraints: { hostname: /[\w\.-]+/, version: /\h{40}/, theme_id: /([0-9]+)?/, format: :js }
|
2019-07-23 13:17:44 -04:00
|
|
|
get "svg-sprite/search/:keyword" => "svg_sprite#search", format: false, constraints: { keyword: /[-a-z0-9\s\%]+/ }
|
|
|
|
get "svg-sprite/picker-search" => "svg_sprite#icon_picker_search", defaults: { format: :json }
|
|
|
|
get "svg-sprite/:hostname/icon(/:color)/:name.svg" => "svg_sprite#svg_icon", constraints: { hostname: /[\w\.-]+/, name: /[-a-z0-9\s\%]+/, color: /(\h{3}{1,2})/, format: :svg }
|
2015-11-24 22:42:46 -05:00
|
|
|
|
2019-07-23 13:17:44 -04:00
|
|
|
get "highlight-js/:hostname/:version.js" => "highlight_js#show", constraints: { hostname: /[\w\.-]+/, format: :js }
|
2018-11-26 16:49:57 -05:00
|
|
|
|
2019-07-23 13:17:44 -04:00
|
|
|
get "stylesheets/:name.css.map" => "stylesheets#show_source_map", constraints: { name: /[-a-z0-9_]+/ }
|
|
|
|
get "stylesheets/:name.css" => "stylesheets#show", constraints: { name: /[-a-z0-9_]+/ }
|
2020-08-28 10:36:52 -04:00
|
|
|
get "color-scheme-stylesheet/:id(/:theme_id)" => "stylesheets#color_scheme", constraints: { format: :json }
|
2019-07-23 13:17:44 -04:00
|
|
|
get "theme-javascripts/:digest.js" => "theme_javascripts#show", constraints: { digest: /\h{40}/ }
|
2021-04-28 16:12:08 -04:00
|
|
|
get "theme-javascripts/tests/:theme_id-:digest.js" => "theme_javascripts#show_tests"
|
2015-03-13 01:15:13 -04:00
|
|
|
|
2017-04-12 10:52:52 -04:00
|
|
|
post "uploads/lookup-metadata" => "uploads#metadata"
|
2018-10-15 11:32:52 -04:00
|
|
|
post "uploads" => "uploads#create"
|
|
|
|
post "uploads/lookup-urls" => "uploads#lookup_urls"
|
2015-05-05 01:50:13 -04:00
|
|
|
|
FEATURE: Uppy direct S3 multipart uploads in composer (#14051)
This pull request introduces the endpoints required, and the JavaScript functionality in the `ComposerUppyUpload` mixin, for direct S3 multipart uploads. There are four new endpoints in the uploads controller:
* `create-multipart.json` - Creates the multipart upload in S3 along with an `ExternalUploadStub` record, storing information about the file in the same way as `generate-presigned-put.json` does for regular direct S3 uploads
* `batch-presign-multipart-parts.json` - Takes a list of part numbers and the unique identifier for an `ExternalUploadStub` record, and generates the presigned URLs for those parts if the multipart upload still exists and if the user has permission to access that upload
* `complete-multipart.json` - Completes the multipart upload in S3. Needs the full list of part numbers and their associated ETags which are returned when the part is uploaded to the presigned URL above. Only works if the user has permission to access the associated `ExternalUploadStub` record and the multipart upload still exists.
After we confirm the upload is complete in S3, we go through the regular `UploadCreator` flow, the same as `complete-external-upload.json`, and promote the temporary upload S3 into a full `Upload` record, moving it to its final destination.
* `abort-multipart.json` - Aborts the multipart upload on S3 and destroys the `ExternalUploadStub` record if the user has permission to access that upload.
Also added are a few new columns to `ExternalUploadStub`:
* multipart - Whether or not this is a multipart upload
* external_upload_identifier - The "upload ID" for an S3 multipart upload
* filesize - The size of the file when the `create-multipart.json` or `generate-presigned-put.json` is called. This is used for validation.
When the user completes a direct S3 upload, either regular or multipart, we take the `filesize` that was captured when the `ExternalUploadStub` was first created and compare it with the final `Content-Length` size of the file where it is stored in S3. Then, if the two do not match, we throw an error, delete the file on S3, and ban the user from uploading files for N (default 5) minutes. This would only happen if the user uploads a different file than what they first specified, or in the case of multipart uploads uploaded larger chunks than needed. This is done to prevent abuse of S3 storage by bad actors.
Also included in this PR is an update to vendor/uppy.js. This has been built locally from the latest uppy source at https://github.com/transloadit/uppy/commit/d613b849a6591083f8a0968aa8d66537e231bbcd. This must be done so that I can get my multipart upload changes into Discourse. When the Uppy team cuts a proper release, we can bump the package.json versions instead.
2021-08-24 18:46:54 -04:00
|
|
|
# direct to s3 uploads
|
|
|
|
post "uploads/generate-presigned-put" => "uploads#generate_presigned_put", format: :json
|
|
|
|
post "uploads/complete-external-upload" => "uploads#complete_external_upload", format: :json
|
|
|
|
|
|
|
|
# multipart uploads
|
|
|
|
post "uploads/create-multipart" => "uploads#create_multipart", format: :json
|
|
|
|
post "uploads/complete-multipart" => "uploads#complete_multipart", format: :json
|
|
|
|
post "uploads/abort-multipart" => "uploads#abort_multipart", format: :json
|
|
|
|
post "uploads/batch-presign-multipart-parts" => "uploads#batch_presign_multipart_parts", format: :json
|
2021-07-27 18:42:25 -04:00
|
|
|
|
2019-02-20 21:13:37 -05:00
|
|
|
# used to download original images
|
|
|
|
get "uploads/:site/:sha(.:extension)" => "uploads#show", constraints: { site: /\w+/, sha: /\h{40}/, extension: /[a-z0-9\._]+/i }
|
2021-03-17 14:01:29 -04:00
|
|
|
get "uploads/short-url/:base62(.:extension)" => "uploads#show_short", constraints: { site: /\w+/, base62: /[a-zA-Z0-9]+/, extension: /[a-zA-Z0-9\._-]+/i }, as: :upload_short
|
2015-12-24 15:22:14 -05:00
|
|
|
# used to download attachments
|
2020-01-02 23:39:07 -05:00
|
|
|
get "uploads/:site/original/:tree:sha(.:extension)" => "uploads#show", constraints: { site: /\w+/, tree: /([a-z0-9]+\/)+/i, sha: /\h{40}/, extension: /[a-z0-9\._]+/i }
|
2017-08-22 16:40:01 -04:00
|
|
|
if Rails.env.test?
|
2020-04-28 09:03:04 -04:00
|
|
|
get "uploads/:site/test_:index/original/:tree:sha(.:extension)" => "uploads#show", constraints: { site: /\w+/, index: /\d+/, tree: /([a-z0-9]+\/)+/i, sha: /\h{40}/, extension: /[a-z0-9\._]+/i }
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2015-05-20 08:55:42 -04:00
|
|
|
# used to download attachments (old route)
|
2019-07-23 13:17:44 -04:00
|
|
|
get "uploads/:site/:id/:sha" => "uploads#show", constraints: { site: /\w+/, id: /\d+/, sha: /\h{16}/, format: /.*/ }
|
2017-08-22 16:40:01 -04:00
|
|
|
get "secure-media-uploads/*path(.:extension)" => "uploads#show_secure", constraints: { extension: /[a-z0-9\._]+/i }
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2017-08-22 16:40:01 -04:00
|
|
|
get "posts" => "posts#latest", id: "latest_posts", constraints: { format: /(json|rss)/ }
|
2019-07-23 13:17:44 -04:00
|
|
|
get "private-posts" => "posts#latest", id: "private_posts", constraints: { format: /(json|rss)/ }
|
2013-12-23 18:50:36 -05:00
|
|
|
get "posts/by_number/:topic_id/:post_number" => "posts#by_number"
|
2018-07-19 10:00:13 -04:00
|
|
|
get "posts/by-date/:topic_id/:date" => "posts#by_date"
|
2013-12-23 18:50:36 -05:00
|
|
|
get "posts/:id/reply-history" => "posts#reply_history"
|
2017-12-13 16:12:06 -05:00
|
|
|
get "posts/:id/reply-ids" => "posts#reply_ids"
|
2018-04-20 17:05:51 -04:00
|
|
|
get "posts/:id/reply-ids/all" => "posts#all_reply_ids"
|
2017-12-21 15:30:32 -05:00
|
|
|
get "posts/:username/deleted" => "posts#deleted_posts", constraints: { username: RouteFormat.username }
|
2021-08-12 14:54:14 -04:00
|
|
|
get "posts/:username/flagged" => "posts#flagged_posts", constraints: { username: RouteFormat.username }
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2017-08-22 16:40:01 -04:00
|
|
|
%w{groups g}.each do |root_path|
|
|
|
|
resources :groups, id: RouteFormat.username, path: root_path do
|
2019-02-21 00:44:25 -05:00
|
|
|
get "posts.rss" => "groups#posts_feed", format: :rss
|
|
|
|
get "mentions.rss" => "groups#mentions_feed", format: :rss
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2019-02-21 00:44:25 -05:00
|
|
|
get 'members'
|
|
|
|
get 'posts'
|
|
|
|
get 'mentions'
|
|
|
|
get 'counts'
|
|
|
|
get 'mentionable'
|
|
|
|
get 'messageable'
|
|
|
|
get 'logs' => 'groups#histories'
|
FEATURE: Improve group email settings UI (#13083)
This overhauls the user interface for the group email settings management, aiming to make it a lot easier to test the settings entered and confirm they are correct before proceeding. We do this by forcing the user to test the settings before they can be saved to the database. It also includes some quality of life improvements around setting up IMAP and SMTP for our first supported provider, GMail. This PR does not remove the old group email config, that will come in a subsequent PR. This is related to https://meta.discourse.org/t/imap-support-for-group-inboxes/160588 so read that if you would like more backstory.
### UI
Both site settings of `enable_imap` and `enable_smtp` must be true to test this. You must enable SMTP first to enable IMAP.
You can prefill the SMTP settings with GMail configuration. To proceed with saving these settings you must test them, which is handled by the EmailSettingsValidator.
If there is an issue with the configuration or credentials a meaningful error message should be shown.
IMAP settings must also be validated when IMAP is enabled, before saving.
When saving IMAP, we fetch the mailboxes for that account and populate them. This mailbox must be selected and saved for IMAP to work (the feature acts as though it is disabled until the mailbox is selected and saved):
### Database & Backend
This adds several columns to the Groups table. The purpose of this change is to make it much more explicit that SMTP/IMAP is enabled for a group, rather than relying on settings not being null. Also included is an UPDATE query to backfill these columns. These columns are automatically filled when updating the group.
For GMail, we now filter the mailboxes returned. This is so users cannot use a mailbox like Sent or Trash for syncing, which would generally be disastrous.
There is a new group endpoint for testing email settings. This may be useful in the future for other places in our UI, at which point it can be extracted to a more generic endpoint or module to be included.
2021-05-27 19:28:18 -04:00
|
|
|
post 'test_email_settings'
|
2013-12-23 18:50:36 -05:00
|
|
|
|
2020-01-02 23:39:07 -05:00
|
|
|
collection do
|
|
|
|
get "check-name" => 'groups#check_name'
|
2020-08-19 10:41:40 -04:00
|
|
|
get 'custom/new' => 'groups#new', constraints: StaffConstraint.new
|
2019-02-21 00:44:25 -05:00
|
|
|
get "search" => "groups#search"
|
|
|
|
end
|
2015-01-08 18:35:52 -05:00
|
|
|
|
2019-02-21 00:44:25 -05:00
|
|
|
member do
|
2020-06-04 22:49:31 -04:00
|
|
|
%w{
|
2019-02-21 00:44:25 -05:00
|
|
|
activity
|
|
|
|
activity/:filter
|
2020-06-04 22:49:31 -04:00
|
|
|
requests
|
2019-02-21 00:44:25 -05:00
|
|
|
messages
|
|
|
|
messages/inbox
|
|
|
|
messages/archive
|
|
|
|
manage
|
|
|
|
manage/profile
|
|
|
|
manage/members
|
|
|
|
manage/membership
|
|
|
|
manage/interaction
|
2020-07-10 05:05:55 -04:00
|
|
|
manage/email
|
2020-08-06 12:27:27 -04:00
|
|
|
manage/categories
|
|
|
|
manage/tags
|
2019-02-21 00:44:25 -05:00
|
|
|
manage/logs
|
|
|
|
}.each do |path|
|
|
|
|
get path => 'groups#show'
|
2018-03-15 04:01:40 -04:00
|
|
|
end
|
|
|
|
|
2020-08-10 10:49:05 -04:00
|
|
|
get "permissions" => "groups#permissions"
|
2019-02-21 00:44:25 -05:00
|
|
|
put "members" => "groups#add_members"
|
2021-07-22 03:11:23 -04:00
|
|
|
put "join" => "groups#join"
|
2019-02-21 00:44:25 -05:00
|
|
|
delete "members" => "groups#remove_member"
|
2021-07-22 12:14:18 -04:00
|
|
|
delete "leave" => "groups#leave"
|
2019-02-21 00:44:25 -05:00
|
|
|
post "request_membership" => "groups#request_membership"
|
|
|
|
put "handle_membership_request" => "groups#handle_membership_request"
|
|
|
|
post "notifications" => "groups#set_notifications"
|
|
|
|
end
|
|
|
|
end
|
2015-11-09 08:52:04 -05:00
|
|
|
end
|
2014-01-30 17:10:36 -05:00
|
|
|
|
2015-11-09 08:52:04 -05:00
|
|
|
# aliases so old API code works
|
|
|
|
delete "admin/groups/:id/members" => "groups#remove_member", constraints: AdminConstraint.new
|
|
|
|
put "admin/groups/:id/members" => "groups#add_members", constraints: AdminConstraint.new
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
resources :posts do
|
2019-12-10 23:04:02 -05:00
|
|
|
delete "bookmark", to: "posts#destroy_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"
|
2018-01-25 15:38:40 -05:00
|
|
|
put "locked"
|
2019-04-19 10:53:58 -04:00
|
|
|
put "notice"
|
2013-12-23 18:50:36 -05:00
|
|
|
get "replies"
|
2014-10-27 17:06:43 -04:00
|
|
|
get "revisions/latest" => "posts#latest_revision"
|
|
|
|
get "revisions/:revision" => "posts#revisions", constraints: { revision: /\d+/ }
|
|
|
|
put "revisions/:revision/hide" => "posts#hide_revision", constraints: { revision: /\d+/ }
|
|
|
|
put "revisions/:revision/show" => "posts#show_revision", constraints: { revision: /\d+/ }
|
2016-03-09 10:40:49 -05:00
|
|
|
put "revisions/:revision/revert" => "posts#revert", constraints: { revision: /\d+/ }
|
2013-12-23 18:50:36 -05:00
|
|
|
put "recover"
|
2013-02-05 14:16:51 -05:00
|
|
|
collection do
|
2013-12-23 18:50:36 -05:00
|
|
|
delete "destroy_many"
|
2016-03-21 19:31:56 -04:00
|
|
|
put "merge_posts"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2021-03-21 19:50:22 -04:00
|
|
|
resources :bookmarks, only: %i[create destroy update] do
|
|
|
|
put "toggle_pin"
|
|
|
|
end
|
2019-12-10 23:04:02 -05:00
|
|
|
|
2018-02-13 01:38:26 -05:00
|
|
|
resources :notifications, except: :show do
|
|
|
|
collection do
|
|
|
|
put 'mark-read' => 'notifications#mark_read'
|
|
|
|
# creating an alias cause the api was extended to mark a single notification
|
|
|
|
# this allows us to cleanly target it
|
|
|
|
put 'read' => 'notifications#mark_read'
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2018-02-13 01:38:26 -05:00
|
|
|
end
|
2013-02-12 01:51:44 -05:00
|
|
|
|
2019-08-08 10:49:09 -04:00
|
|
|
match "/auth/failure", to: "users/omniauth_callbacks#failure", via: [:get, :post]
|
2019-08-08 06:57:28 -04:00
|
|
|
get "/auth/:provider", to: "users/omniauth_callbacks#confirm_request"
|
2013-07-01 14:00:06 -04:00
|
|
|
match "/auth/:provider/callback", to: "users/omniauth_callbacks#complete", via: [:get, :post]
|
2019-07-17 07:34:02 -04:00
|
|
|
get "/associate/:token", to: "users/associate_accounts#connect_info", constraints: { token: /\h{32}/ }
|
|
|
|
post "/associate/:token", to: "users/associate_accounts#connect", constraints: { token: /\h{32}/ }
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
resources :clicks do
|
|
|
|
collection do
|
2019-05-07 02:37:43 -04:00
|
|
|
post "track"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "excerpt" => "excerpt#show"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2015-09-30 12:28:13 -04:00
|
|
|
resources :post_action_users
|
2019-08-27 08:09:00 -04:00
|
|
|
resources :post_readers, only: %i[index]
|
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"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
resources :user_actions
|
|
|
|
|
2014-04-16 09:12:06 -04:00
|
|
|
resources :badges, only: [:index]
|
2019-07-23 13:17:44 -04:00
|
|
|
get "/badges/:id(/:slug)" => "badges#show", constraints: { format: /(json|html|rss)/ }
|
2021-06-01 04:33:40 -04:00
|
|
|
resources :user_badges, only: [:index, :create, :destroy] do
|
|
|
|
put "toggle_favorite" => "user_badges#toggle_favorite", constraints: { format: :json }
|
|
|
|
end
|
2014-03-05 07:52:20 -05:00
|
|
|
|
2018-04-10 16:24:29 -04:00
|
|
|
get '/c', to: redirect(relative_url_root + 'categories')
|
2015-03-30 12:15:02 -04:00
|
|
|
|
2019-10-30 13:22:32 -04:00
|
|
|
resources :categories, except: [:show, :new, :edit]
|
2015-08-27 13:14:59 -04:00
|
|
|
post "categories/reorder" => "categories#reorder"
|
2019-10-30 13:22:32 -04:00
|
|
|
|
|
|
|
scope path: 'category/:category_id' do
|
|
|
|
post "/move" => "categories#move"
|
|
|
|
post "/notifications" => "categories#set_notifications"
|
|
|
|
put "/slug" => "categories#update_slug"
|
|
|
|
end
|
|
|
|
|
|
|
|
get "category/*path" => "categories#redirect"
|
2014-01-17 17:52:06 -05:00
|
|
|
|
2016-08-29 16:47:44 -04:00
|
|
|
get "categories_and_latest" => "categories#categories_and_latest"
|
2018-03-02 21:53:29 -05:00
|
|
|
get "categories_and_top" => "categories#categories_and_top"
|
2016-08-29 16:47:44 -04:00
|
|
|
|
2014-10-16 12:15:31 -04:00
|
|
|
get "c/:id/show" => "categories#show"
|
2019-10-30 13:22:32 -04:00
|
|
|
|
2020-12-08 16:50:26 -05:00
|
|
|
get "c/*category_slug/find_by_slug" => "categories#find_by_slug"
|
|
|
|
get "c/*category_slug/edit(/:tab)" => "categories#find_by_slug", constraints: { format: 'html' }
|
2020-10-23 12:49:02 -04:00
|
|
|
get "/new-category" => "categories#show", constraints: { format: 'html' }
|
2019-10-30 13:22:32 -04:00
|
|
|
|
|
|
|
get "c/*category_slug_path_with_id.rss" => "list#category_feed", format: :rss
|
|
|
|
scope path: 'c/*category_slug_path_with_id' do
|
|
|
|
get "/none" => "list#category_none_latest"
|
|
|
|
|
|
|
|
TopTopic.periods.each do |period|
|
2021-07-06 05:55:11 -04:00
|
|
|
get "/none/l/top/#{period}", to: redirect("/none/l/top?period=#{period}", status: 301)
|
|
|
|
get "/l/top/#{period}", to: redirect("/l/top?period=#{period}", status: 301)
|
2019-10-30 13:22:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
Discourse.filters.each do |filter|
|
|
|
|
get "/none/l/#{filter}" => "list#category_none_#{filter}", as: "category_none_#{filter}"
|
|
|
|
get "/l/#{filter}" => "list#category_#{filter}", as: "category_#{filter}"
|
|
|
|
end
|
|
|
|
|
2020-06-03 15:26:56 -04:00
|
|
|
get "/all" => "list#category_default", as: "category_all", constraints: { format: 'html' }
|
2019-10-30 13:22:32 -04:00
|
|
|
get "/" => "list#category_default", as: "category_default"
|
|
|
|
end
|
2014-10-16 12:15:31 -04:00
|
|
|
|
2020-07-13 12:13:17 -04:00
|
|
|
get "hashtags" => "hashtags#show"
|
2014-01-13 19:02:14 -05:00
|
|
|
|
|
|
|
TopTopic.periods.each do |period|
|
2021-07-06 05:55:11 -04:00
|
|
|
get "top/#{period}.rss", to: redirect("top.rss?period=#{period}", status: 301)
|
|
|
|
get "top/#{period}.json", to: redirect("top.json?period=#{period}", status: 301)
|
|
|
|
get "top/#{period}", to: redirect("top?period=#{period}", status: 301)
|
2013-07-05 16:49:06 -04:00
|
|
|
end
|
|
|
|
|
2014-10-15 23:52:21 -04:00
|
|
|
Discourse.anonymous_filters.each do |filter|
|
|
|
|
get "#{filter}.rss" => "list##{filter}_feed", format: :rss
|
|
|
|
end
|
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
Discourse.filters.each do |filter|
|
2019-07-23 13:17:44 -04:00
|
|
|
get "#{filter}" => "list##{filter}"
|
2013-03-28 09:01:13 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2015-04-03 16:55:32 -04:00
|
|
|
get "search/query" => "search#query"
|
2015-07-27 02:46:50 -04:00
|
|
|
get "search" => "search#show"
|
2017-07-17 15:42:32 -04:00
|
|
|
post "search/click" => "search#click"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
# Topics resource
|
2013-12-23 18:50:36 -05:00
|
|
|
get "t/:id" => "topics#show"
|
2014-01-13 19:02:14 -05:00
|
|
|
put "t/:id" => "topics#update"
|
|
|
|
delete "t/:id" => "topics#destroy"
|
2015-12-29 21:26:21 -05:00
|
|
|
put "t/:id/archive-message" => "topics#archive_message"
|
|
|
|
put "t/:id/move-to-inbox" => "topics#move_to_inbox"
|
2016-05-01 07:48:43 -04:00
|
|
|
put "t/:id/convert-topic/:type" => "topics#convert_topic"
|
2018-03-13 15:59:12 -04:00
|
|
|
put "t/:id/publish" => "topics#publish"
|
2018-03-23 11:12:22 -04:00
|
|
|
put "t/:id/shared-draft" => "topics#update_shared_draft"
|
2018-08-09 20:51:03 -04:00
|
|
|
put "t/:id/reset-bump-date" => "topics#reset_bump_date"
|
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'
|
2021-07-30 05:00:48 -04:00
|
|
|
put "topics/pm-reset-new" => 'topics#private_message_reset_new'
|
2013-12-23 18:50:36 -05:00
|
|
|
post "topics/timings"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2015-06-24 15:08:22 -04:00
|
|
|
get 'topics/similar_to' => 'similar_topics#index'
|
|
|
|
resources :similar_topics
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2015-03-13 20:18:05 -04:00
|
|
|
get "topics/feature_stats"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2018-02-13 15:46:25 -05:00
|
|
|
scope "/topics", username: RouteFormat.username do
|
2019-07-23 13:17:44 -04:00
|
|
|
get "created-by/:username" => "list#topics_by", as: "topics_by", defaults: { format: :json }
|
|
|
|
get "private-messages/:username" => "list#private_messages", as: "topics_private_messages", defaults: { format: :json }
|
|
|
|
get "private-messages-sent/:username" => "list#private_messages_sent", as: "topics_private_messages_sent", defaults: { format: :json }
|
|
|
|
get "private-messages-archive/:username" => "list#private_messages_archive", as: "topics_private_messages_archive", defaults: { format: :json }
|
|
|
|
get "private-messages-unread/:username" => "list#private_messages_unread", as: "topics_private_messages_unread", defaults: { format: :json }
|
2020-06-22 09:48:24 -04:00
|
|
|
get "private-messages-tags/:username/:tag_id.json" => "list#private_messages_tag", as: "topics_private_messages_tag", defaults: { format: :json }
|
2021-08-02 00:41:41 -04:00
|
|
|
get "private-messages-new/:username" => "list#private_messages_new", as: "topics_private_messages_new", defaults: { format: :json }
|
2021-06-14 17:01:17 -04:00
|
|
|
get "private-messages-warnings/:username" => "list#private_messages_warnings", as: "topics_private_messages_warnings", defaults: { format: :json }
|
2018-04-12 05:10:53 -04:00
|
|
|
get "groups/:group_name" => "list#group_topics", as: "group_topics", group_name: RouteFormat.username
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2018-02-13 15:46:25 -05:00
|
|
|
scope "/private-messages-group/:username", group_name: RouteFormat.username do
|
|
|
|
get ":group_name.json" => "list#private_messages_group", as: "topics_private_messages_group"
|
|
|
|
get ":group_name/archive.json" => "list#private_messages_group_archive", as: "topics_private_messages_group_archive"
|
2021-08-02 00:41:41 -04:00
|
|
|
get ":group_name/new.json" => "list#private_messages_group_new", as: "topics_private_messages_group_new"
|
|
|
|
get ":group_name/unread.json" => "list#private_messages_group_unread", as: "topics_private_messages_group_unread"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2018-02-13 15:46:25 -05:00
|
|
|
end
|
2015-12-22 19:09:17 -05:00
|
|
|
|
2019-08-15 13:41:06 -04:00
|
|
|
get 'embed/topics' => 'embed#topics'
|
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'
|
2015-05-05 21:00:31 -04:00
|
|
|
get 'embed/info' => 'embed#info'
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2015-04-27 14:36:02 -04:00
|
|
|
get "new-topic" => "list#latest"
|
2015-11-24 07:46:42 -05:00
|
|
|
get "new-message" => "list#latest"
|
2020-06-04 22:49:31 -04: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"
|
2016-08-01 00:45:05 -04:00
|
|
|
get "t/:slug/:topic_id/print" => "topics#show", format: :html, print: true, constraints: { topic_id: /\d+/ }
|
2013-12-23 18:50:36 -05:00
|
|
|
get "t/:slug/:topic_id/wordpress" => "topics#wordpress", constraints: { topic_id: /\d+/ }
|
|
|
|
get "t/:topic_id/wordpress" => "topics#wordpress", constraints: { topic_id: /\d+/ }
|
2015-08-12 17:00:16 -04:00
|
|
|
get "t/:slug/:topic_id/moderator-liked" => "topics#moderator_liked", constraints: { topic_id: /\d+/ }
|
|
|
|
get "t/:slug/:topic_id/summary" => "topics#show", defaults: { summary: true }, constraints: { topic_id: /\d+/ }
|
|
|
|
get "t/:topic_id/summary" => "topics#show", constraints: { topic_id: /\d+/ }
|
2013-12-23 18:50:36 -05:00
|
|
|
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+/ }
|
2017-05-11 18:23:18 -04:00
|
|
|
post "t/:topic_id/timer" => "topics#timer", 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+/ }
|
2016-06-20 02:29:11 -04:00
|
|
|
put "t/:topic_id/remove-allowed-group" => "topics#remove_allowed_group", constraints: { topic_id: /\d+/ }
|
2013-12-23 18:50:36 -05:00
|
|
|
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+/ }
|
2016-04-05 13:12:14 -04:00
|
|
|
get "t/:topic_id/posts" => "topics#posts", constraints: { topic_id: /\d+/ }, format: :json
|
2018-06-28 02:54:54 -04:00
|
|
|
get "t/:topic_id/post_ids" => "topics#post_ids", constraints: { topic_id: /\d+/ }, format: :json
|
2016-11-24 19:34:43 -05:00
|
|
|
get "t/:topic_id/excerpts" => "topics#excerpts", constraints: { topic_id: /\d+/ }, format: :json
|
2013-12-23 18:50:36 -05:00
|
|
|
post "t/:topic_id/timings" => "topics#timings", constraints: { topic_id: /\d+/ }
|
|
|
|
post "t/:topic_id/invite" => "topics#invite", constraints: { topic_id: /\d+/ }
|
2016-06-20 02:29:11 -04:00
|
|
|
post "t/:topic_id/invite-group" => "topics#invite_group", constraints: { topic_id: /\d+/ }
|
2021-04-23 12:18:23 -04:00
|
|
|
post "t/:topic_id/invite-notify" => "topics#invite_notify", constraints: { topic_id: /\d+/ }
|
2013-12-23 18:50:36 -05:00
|
|
|
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+/ }
|
2015-07-25 12:06:49 -04:00
|
|
|
put "t/:topic_id/change-timestamp" => "topics#change_timestamps", constraints: { topic_id: /\d+/ }
|
2013-12-23 18:50:36 -05:00
|
|
|
delete "t/:topic_id/timings" => "topics#destroy_timings", constraints: { topic_id: /\d+/ }
|
2015-01-12 06:10:15 -05:00
|
|
|
put "t/:topic_id/bookmark" => "topics#bookmark", constraints: { topic_id: /\d+/ }
|
2015-02-18 18:58:57 -05:00
|
|
|
put "t/:topic_id/remove_bookmarks" => "topics#remove_bookmarks", constraints: { topic_id: /\d+/ }
|
2019-10-23 14:05:38 -04:00
|
|
|
put "t/:topic_id/tags" => "topics#update_tags", constraints: { topic_id: /\d+/ }
|
2020-10-16 15:24:38 -04:00
|
|
|
put "t/:topic_id/slow_mode" => "topics#set_slow_mode", constraints: { topic_id: /\d+/ }
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
post "t/:topic_id/notifications" => "topics#set_notifications" , constraints: { topic_id: /\d+/ }
|
2020-06-04 22:49:31 -04:00
|
|
|
|
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"
|
2014-10-17 15:18:29 -04:00
|
|
|
get "/posts/:id/raw-email" => "posts#raw_email"
|
2014-07-11 17:34:26 -04:00
|
|
|
get "raw/:topic_id(/:post_number)" => "posts#markdown_num"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
UX: invites#show can't be requested with json and is not configured properly (#8570)
Currently at
tempting to access an invite via json will result in the following error:
```
HTTP_ACCEPT application/json, text/javascript, */*; q=0.01
GET /invites/xxxxxxx
ActionView::MissingTemplate (Missing template invites/show, application/show with {:locale=>[:en_US, :en], :formats=>[:json], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby]}. Searched in:
* "/var/www/discourse/app/views"
)
```
2019-12-20 03:24:55 -05:00
|
|
|
resources :invites, except: [:show]
|
|
|
|
get "/invites/:id" => "invites#show", constraints: { format: :html }
|
2021-03-03 04:45:29 -05:00
|
|
|
put "/invites/:id" => "invites#update"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2016-12-04 11:06:35 -05:00
|
|
|
post "invites/upload_csv" => "invites#upload_csv"
|
2021-03-03 04:45:29 -05:00
|
|
|
post "invites/destroy-all-expired" => "invites#destroy_all_expired"
|
2014-10-06 14:48:56 -04:00
|
|
|
post "invites/reinvite" => "invites#resend_invite"
|
2016-06-02 15:09:02 -04:00
|
|
|
post "invites/reinvite-all" => "invites#resend_all_invites"
|
2013-12-23 18:50:36 -05:00
|
|
|
delete "invites" => "invites#destroy"
|
2017-01-24 15:15:29 -05:00
|
|
|
put "invites/show/:id" => "invites#perform_accept_invitation", as: 'perform_accept_invite'
|
2021-04-06 11:01:07 -04:00
|
|
|
get "invites/retrieve" => "invites#retrieve"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2014-12-22 11:17:04 -05:00
|
|
|
resources :export_csv do
|
|
|
|
collection do
|
2015-07-24 12:33:53 -04:00
|
|
|
post "export_entity" => "export_csv#export_entity"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2014-12-22 11:17:04 -05:00
|
|
|
end
|
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "onebox" => "onebox#show"
|
2017-07-19 15:08:54 -04:00
|
|
|
get "inline-onebox" => "inline_onebox#show"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
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
|
|
|
|
2021-09-14 08:18:01 -04:00
|
|
|
resources :drafts, only: [:index, :create, :show, :destroy]
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2018-02-14 21:24:39 -05:00
|
|
|
if service_worker_asset = Rails.application.assets_manifest.assets['service-worker.js']
|
2018-02-18 19:04:15 -05:00
|
|
|
# https://developers.google.com/web/fundamentals/codelabs/debugging-service-workers/
|
|
|
|
# Normally the browser will wait until a user closes all tabs that contain the
|
|
|
|
# current site before updating to a new Service Worker.
|
|
|
|
# Support the old Service Worker path to avoid routing error filling up the
|
|
|
|
# logs.
|
2021-05-25 18:39:31 -04:00
|
|
|
get "/service-worker.js" => "static#service_worker_asset", format: :js
|
2018-02-14 21:24:39 -05:00
|
|
|
get service_worker_asset => "static#service_worker_asset", format: :js
|
2018-04-05 16:10:36 -04:00
|
|
|
elsif Rails.env.development?
|
|
|
|
get "/service-worker.js" => "static#service_worker_asset", format: :js
|
2018-02-14 21:24:39 -05:00
|
|
|
end
|
2017-11-22 20:02:01 -05:00
|
|
|
|
2019-07-23 13:17:44 -04:00
|
|
|
get "cdn_asset/:site/*path" => "static#cdn_asset", format: false, constraints: { format: /.*/ }
|
|
|
|
get "brotli_asset/*path" => "static#brotli_asset", format: false, constraints: { format: /.*/ }
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2015-08-24 21:54:23 -04:00
|
|
|
get "favicon/proxied" => "static#favicon", format: false
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
get "robots.txt" => "robots_txt#index"
|
2018-04-16 15:43:20 -04:00
|
|
|
get "robots-builder.json" => "robots_txt#builder"
|
2017-10-30 19:46:48 -04:00
|
|
|
get "offline.html" => "offline#index"
|
2018-06-13 23:13:28 -04:00
|
|
|
get "manifest.webmanifest" => "metadata#manifest", as: :manifest
|
|
|
|
get "manifest.json" => "metadata#manifest"
|
2019-08-27 14:05:37 -04:00
|
|
|
get ".well-known/assetlinks.json" => "metadata#app_association_android"
|
|
|
|
get "apple-app-site-association" => "metadata#app_association_ios", format: false
|
2019-07-23 13:17:44 -04:00
|
|
|
get "opensearch" => "metadata#opensearch", constraints: { format: :xml }
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2019-12-13 06:05:23 -05:00
|
|
|
scope '/tag/:tag_id' do
|
|
|
|
constraints format: :json do
|
2020-01-21 12:23:08 -05:00
|
|
|
get '/' => 'tags#show', as: 'tag_show'
|
2019-12-13 06:05:23 -05:00
|
|
|
get '/info' => 'tags#info'
|
|
|
|
get '/notifications' => 'tags#notifications'
|
|
|
|
put '/notifications' => 'tags#update_notifications'
|
|
|
|
put '/' => 'tags#update'
|
|
|
|
delete '/' => 'tags#destroy'
|
|
|
|
post '/synonyms' => 'tags#create_synonyms'
|
|
|
|
delete '/synonyms/:synonym_id' => 'tags#destroy_synonym'
|
|
|
|
|
|
|
|
Discourse.filters.each do |filter|
|
2020-01-21 12:23:08 -05:00
|
|
|
get "/l/#{filter}" => "tags#show_#{filter}", as: "tag_show_#{filter}"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2019-12-13 06:05:23 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
constraints format: :rss do
|
|
|
|
get '/' => 'tags#tag_feed'
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
2019-12-13 06:05:23 -05:00
|
|
|
end
|
|
|
|
|
2016-04-25 15:55:15 -04:00
|
|
|
scope "/tags" do
|
|
|
|
get '/' => 'tags#index'
|
|
|
|
get '/filter/list' => 'tags#index'
|
|
|
|
get '/filter/search' => 'tags#search'
|
2021-07-29 01:43:25 -04:00
|
|
|
get '/personal_messages/:username' => 'tags#personal_messages', constraints: { username: RouteFormat.username }
|
2018-10-15 04:12:54 -04:00
|
|
|
post '/upload' => 'tags#upload'
|
2018-11-12 11:24:34 -05:00
|
|
|
get '/unused' => 'tags#list_unused'
|
|
|
|
delete '/unused' => 'tags#destroy_unused'
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2016-04-25 15:55:15 -04:00
|
|
|
constraints(tag_id: /[^\/]+?/, format: /json|rss/) do
|
2019-11-03 11:32:31 -05:00
|
|
|
scope path: '/c/*category_slug_path_with_id' do
|
|
|
|
Discourse.filters.each do |filter|
|
|
|
|
get "/none/:tag_id/l/#{filter}" => "tags#show_#{filter}", as: "tag_category_none_show_#{filter}", defaults: { no_subcategories: true }
|
|
|
|
end
|
|
|
|
|
|
|
|
get '/none/:tag_id' => 'tags#show', as: 'tag_category_none_show', defaults: { no_subcategories: true }
|
|
|
|
|
|
|
|
Discourse.filters.each do |filter|
|
|
|
|
get "/:tag_id/l/#{filter}" => "tags#show_#{filter}", as: "tag_category_show_#{filter}"
|
2020-06-04 22:49:31 -04:00
|
|
|
end
|
|
|
|
|
2019-11-03 11:32:31 -05:00
|
|
|
get '/:tag_id' => 'tags#show', as: 'tag_category_show'
|
|
|
|
end
|
|
|
|
|
|
|
|
get '/intersection/:tag_id/*additional_tag_ids' => 'tags#show', as: 'tag_intersection'
|
|
|
|
end
|
2020-11-09 12:01:33 -05:00
|
|
|
|
|
|
|
get '*tag_id', to: redirect(relative_url_root + 'tag/%{tag_id}')
|
2016-04-25 15:55:15 -04:00
|
|
|
end
|
2016-06-07 13:08:59 -04:00
|
|
|
|
2021-04-08 13:23:13 -04:00
|
|
|
resources :tag_groups, constraints: StaffConstraint.new, except: [:edit]
|
|
|
|
get '/tag_groups/filter/search' => 'tag_groups#search', format: :json
|
2016-04-25 15:55:15 -04: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"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2016-10-18 11:44:25 -04:00
|
|
|
root to: 'finish_installation#index', constraints: HomePageConstraint.new("finish_installation"), as: 'installation_redirect'
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2016-08-15 03:58:33 -04:00
|
|
|
get "/user-api-key/new" => "user_api_keys#new"
|
2016-08-16 01:10:32 -04:00
|
|
|
post "/user-api-key" => "user_api_keys#create"
|
2016-08-16 03:06:33 -04:00
|
|
|
post "/user-api-key/revoke" => "user_api_keys#revoke"
|
|
|
|
post "/user-api-key/undo-revoke" => "user_api_keys#undo_revoke"
|
2019-04-01 13:18:53 -04:00
|
|
|
get "/user-api-key/otp" => "user_api_keys#otp"
|
|
|
|
post "/user-api-key/otp" => "user_api_keys#create_otp"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2016-11-21 00:46:02 -05:00
|
|
|
get "/safe-mode" => "safe_mode#index"
|
|
|
|
post "/safe-mode" => "safe_mode#enter", as: "safe_mode_enter"
|
2020-06-04 22:49:31 -04:00
|
|
|
|
2018-11-23 00:15:40 -05:00
|
|
|
unless Rails.env.production?
|
2018-04-23 02:42:25 -04:00
|
|
|
get "/qunit" => "qunit#index"
|
2018-11-23 00:15:40 -05:00
|
|
|
get "/wizard/qunit" => "wizard#qunit"
|
2018-04-23 02:42:25 -04:00
|
|
|
end
|
2021-04-28 16:12:08 -04:00
|
|
|
get "/theme-qunit" => "qunit#theme"
|
2018-04-23 02:42:25 -04:00
|
|
|
|
2018-05-04 18:31:48 -04:00
|
|
|
post "/push_notifications/subscribe" => "push_notification#subscribe"
|
|
|
|
post "/push_notifications/unsubscribe" => "push_notification#unsubscribe"
|
|
|
|
|
2018-10-22 13:22:23 -04:00
|
|
|
resources :csp_reports, only: [:create]
|
|
|
|
|
2020-03-05 20:33:25 -05:00
|
|
|
get "/permalink-check", to: 'permalinks#check'
|
|
|
|
|
2020-12-18 10:03:51 -05:00
|
|
|
post "/do-not-disturb" => "do_not_disturb#create"
|
|
|
|
delete "/do-not-disturb" => "do_not_disturb#destroy"
|
|
|
|
|
DEV: Introduce PresenceChannel API for core and plugin use
PresenceChannel aims to be a generic system for allow the server, and end-users, to track the number and identity of users performing a specific task on the site. For example, it might be used to track who is currently 'replying' to a specific topic, editing a specific wiki post, etc.
A few key pieces of information about the system:
- PresenceChannels are identified by a name of the format `/prefix/blah`, where `prefix` has been configured by some core/plugin implementation, and `blah` can be any string the implementation wants to use.
- Presence is a boolean thing - each user is either present, or not present. If a user has multiple clients 'present' in a channel, they will be deduplicated so that the user is only counted once
- Developers can configure the existence and configuration of channels 'just in time' using a callback. The result of this is cached for 2 minutes.
- Configuration of a channel can specify permissions in a similar way to MessageBus (public boolean, a list of allowed_user_ids, and a list of allowed_group_ids). A channel can also be placed in 'count_only' mode, where the identity of present users is not revealed to end-users.
- The backend implementation uses redis lua scripts, and is designed to scale well. In the future, hard limits may be introduced on the maximum number of users that can be present in a channel.
- Clients can enter/leave at will. If a client has not marked itself 'present' in the last 60 seconds, they will automatically 'leave' the channel. The JS implementation takes care of this regular check-in.
- On the client-side, PresenceChannel instances can be fetched from the `presence` ember service. Each PresenceChannel can be used entered/left/subscribed/unsubscribed, and the service will automatically deduplicate information before interacting with the server.
- When a client joins a PresenceChannel, the JS implementation will automatically make a GET request for the current channel state. To avoid this, the channel state can be serialized into one of your existing endpoints, and then passed to the `subscribe` method on the channel.
- The PresenceChannel JS object is an ember object. The `users` and `count` property can be used directly in ember templates, and in computed properties.
- It is important to make sure that you `unsubscribe()` and `leave()` any PresenceChannel objects after use
An example implementation may look something like this. On the server:
```ruby
register_presence_channel_prefix("site") do |channel|
next nil unless channel == "/site/online"
PresenceChannel::Config.new(public: true)
end
```
And on the client, a component could be implemented like this:
```javascript
import Component from "@ember/component";
import { inject as service } from "@ember/service";
export default Component.extend({
presence: service(),
init() {
this._super(...arguments);
this.set("presenceChannel", this.presence.getChannel("/site/online"));
},
didInsertElement() {
this.presenceChannel.enter();
this.presenceChannel.subscribe();
},
willDestroyElement() {
this.presenceChannel.leave();
this.presenceChannel.unsubscribe();
},
});
```
With this template:
```handlebars
Online: {{presenceChannel.count}}
<ul>
{{#each presenceChannel.users as |user|}}
<li>{{avatar user imageSize="tiny"}} {{user.username}}</li>
{{/each}}
</ul>
```
2021-08-27 09:43:39 -04:00
|
|
|
post "/presence/update" => "presence#update"
|
|
|
|
get "/presence/get" => "presence#get"
|
|
|
|
|
2018-06-06 02:55:22 -04:00
|
|
|
get "*url", to: 'permalinks#show', constraints: PermalinkConstraint.new
|
2019-07-23 13:17:44 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|