2016-11-28 12:36:47 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-25 01:50:48 +00:00
|
|
|
require 'sidekiq/web'
|
2017-05-08 02:52:57 +01:00
|
|
|
require 'sidekiq-scheduler/web'
|
2016-03-25 01:50:48 +00:00
|
|
|
|
2017-07-28 03:36:42 +01:00
|
|
|
Sidekiq::Web.set :session_secret, Rails.application.secrets[:secret_key_base]
|
|
|
|
|
2016-02-20 21:53:20 +00:00
|
|
|
Rails.application.routes.draw do
|
2019-08-30 00:34:33 +01:00
|
|
|
root 'home#index'
|
|
|
|
|
2017-01-21 21:19:13 +00:00
|
|
|
mount LetterOpenerWeb::Engine, at: 'letter_opener' if Rails.env.development?
|
2016-08-18 14:49:51 +01:00
|
|
|
|
2019-09-07 01:47:51 +01:00
|
|
|
health_check_routes
|
|
|
|
|
2016-03-25 13:12:24 +00:00
|
|
|
authenticate :user, lambda { |u| u.admin? } do
|
2016-12-13 12:42:10 +00:00
|
|
|
mount Sidekiq::Web, at: 'sidekiq', as: :sidekiq
|
|
|
|
mount PgHero::Engine, at: 'pghero', as: :pghero
|
2016-03-25 01:50:48 +00:00
|
|
|
end
|
|
|
|
|
2016-10-22 18:38:47 +01:00
|
|
|
use_doorkeeper do
|
2018-05-19 20:05:08 +01:00
|
|
|
controllers authorizations: 'oauth/authorizations',
|
|
|
|
authorized_applications: 'oauth/authorized_applications',
|
|
|
|
tokens: 'oauth/tokens'
|
2016-10-22 18:38:47 +01:00
|
|
|
end
|
2016-03-07 11:42:33 +00:00
|
|
|
|
2017-04-13 12:09:07 +01:00
|
|
|
get '.well-known/host-meta', to: 'well_known/host_meta#show', as: :host_meta, defaults: { format: 'xml' }
|
2019-09-29 20:31:51 +01:00
|
|
|
get '.well-known/nodeinfo', to: 'well_known/nodeinfo#index', as: :nodeinfo, defaults: { format: 'json' }
|
2017-04-17 18:58:03 +01:00
|
|
|
get '.well-known/webfinger', to: 'well_known/webfinger#show', as: :webfinger
|
2018-09-29 18:14:48 +01:00
|
|
|
get '.well-known/change-password', to: redirect('/auth/edit')
|
2019-03-18 20:00:55 +00:00
|
|
|
get '.well-known/keybase-proof-config', to: 'well_known/keybase_proof_config#show'
|
|
|
|
|
2019-09-29 20:31:51 +01:00
|
|
|
get '/nodeinfo/2.0', to: 'well_known/nodeinfo#show', as: :nodeinfo_schema
|
|
|
|
|
2017-06-06 18:29:42 +01:00
|
|
|
get 'manifest', to: 'manifests#show', defaults: { format: 'json' }
|
2017-08-14 03:53:31 +01:00
|
|
|
get 'intent', to: 'intents#show'
|
2018-08-24 03:33:27 +01:00
|
|
|
get 'custom.css', to: 'custom_css#show', as: :custom_css
|
2016-02-22 15:00:20 +00:00
|
|
|
|
2019-07-19 00:44:42 +01:00
|
|
|
resource :instance_actor, path: 'actor', only: [:show] do
|
|
|
|
resource :inbox, only: [:create], module: :activitypub
|
|
|
|
end
|
|
|
|
|
2017-11-27 15:07:59 +00:00
|
|
|
devise_scope :user do
|
|
|
|
get '/invite/:invite_code', to: 'auth/registrations#new', as: :public_invite
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 09:48:50 +01:00
|
|
|
|
|
|
|
namespace :auth do
|
|
|
|
resource :setup, only: [:show, :update], controller: :setup
|
2019-09-18 15:37:27 +01:00
|
|
|
resource :challenge, only: [:create], controller: :challenges
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 09:48:50 +01:00
|
|
|
end
|
2017-11-27 15:07:59 +00:00
|
|
|
end
|
|
|
|
|
2016-03-05 21:43:05 +00:00
|
|
|
devise_for :users, path: 'auth', controllers: {
|
2018-02-04 04:42:13 +00:00
|
|
|
omniauth_callbacks: 'auth/omniauth_callbacks',
|
2016-03-05 21:43:05 +00:00
|
|
|
sessions: 'auth/sessions',
|
|
|
|
registrations: 'auth/registrations',
|
2016-10-03 15:38:22 +01:00
|
|
|
passwords: 'auth/passwords',
|
2016-11-28 12:36:47 +00:00
|
|
|
confirmations: 'auth/confirmations',
|
2016-03-05 21:43:05 +00:00
|
|
|
}
|
2016-03-05 12:12:24 +00:00
|
|
|
|
2017-07-24 07:46:29 +01:00
|
|
|
get '/users/:username', to: redirect('/@%{username}'), constraints: lambda { |req| req.format.nil? || req.format.html? }
|
2018-09-02 23:10:28 +01:00
|
|
|
get '/authorize_follow', to: redirect { |_, request| "/authorize_interaction?#{request.params.to_query}" }
|
2017-03-22 18:26:22 +00:00
|
|
|
|
2016-02-29 18:42:08 +00:00
|
|
|
resources :accounts, path: 'users', only: [:show], param: :username do
|
2017-01-01 18:52:25 +00:00
|
|
|
get :remote_follow, to: 'remote_follow#new'
|
|
|
|
post :remote_follow, to: 'remote_follow#create'
|
|
|
|
|
2017-07-15 02:01:39 +01:00
|
|
|
resources :statuses, only: [:show] do
|
|
|
|
member do
|
|
|
|
get :activity
|
2017-08-30 09:23:43 +01:00
|
|
|
get :embed
|
2017-07-15 02:01:39 +01:00
|
|
|
end
|
2019-07-08 11:03:45 +01:00
|
|
|
|
|
|
|
resources :replies, only: [:index], module: :activitypub
|
2017-07-15 02:01:39 +01:00
|
|
|
end
|
|
|
|
|
2017-04-19 12:52:37 +01:00
|
|
|
resources :followers, only: [:index], controller: :follower_accounts
|
|
|
|
resources :following, only: [:index], controller: :following_accounts
|
2018-01-08 09:57:52 +00:00
|
|
|
resource :follow, only: [:create], controller: :account_follow
|
2017-04-19 12:52:37 +01:00
|
|
|
resource :unfollow, only: [:create], controller: :account_unfollow
|
2018-03-04 08:19:11 +00:00
|
|
|
|
2017-07-15 02:01:39 +01:00
|
|
|
resource :outbox, only: [:show], module: :activitypub
|
2017-08-08 20:52:15 +01:00
|
|
|
resource :inbox, only: [:create], module: :activitypub
|
2018-03-04 08:19:11 +00:00
|
|
|
resources :collections, only: [:show], module: :activitypub
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|
2016-02-22 15:00:20 +00:00
|
|
|
|
2017-08-30 23:02:59 +01:00
|
|
|
resource :inbox, only: [:create], module: :activitypub
|
|
|
|
|
2017-03-22 18:26:22 +00:00
|
|
|
get '/@:username', to: 'accounts#show', as: :short_account
|
2017-08-16 16:12:58 +01:00
|
|
|
get '/@:username/with_replies', to: 'accounts#show', as: :short_account_with_replies
|
|
|
|
get '/@:username/media', to: 'accounts#show', as: :short_account_media
|
2019-02-04 03:25:59 +00:00
|
|
|
get '/@:username/tagged/:tag', to: 'accounts#show', as: :short_account_tag
|
2017-03-22 18:26:22 +00:00
|
|
|
get '/@:account_username/:id', to: 'statuses#show', as: :short_account_status
|
2017-08-30 09:23:43 +01:00
|
|
|
get '/@:account_username/:id/embed', to: 'statuses#embed', as: :embed_short_account_status
|
2017-03-22 18:26:22 +00:00
|
|
|
|
2018-08-18 02:03:12 +01:00
|
|
|
get '/interact/:id', to: 'remote_interaction#new', as: :remote_interaction
|
|
|
|
post '/interact/:id', to: 'remote_interaction#create'
|
|
|
|
|
2018-12-06 16:36:11 +00:00
|
|
|
get '/explore', to: 'directories#index', as: :explore
|
|
|
|
get '/explore/:id', to: 'directories#show', as: :explore_hashtag
|
|
|
|
|
2019-06-07 15:51:08 +01:00
|
|
|
get '/settings', to: redirect('/settings/profile')
|
2019-06-07 02:39:24 +01:00
|
|
|
|
2016-10-14 01:28:49 +01:00
|
|
|
namespace :settings do
|
|
|
|
resource :profile, only: [:show, :update]
|
2019-06-07 15:51:08 +01:00
|
|
|
|
|
|
|
get :preferences, to: redirect('/settings/preferences/appearance')
|
2017-03-19 19:29:41 +00:00
|
|
|
|
2019-06-07 02:39:24 +01:00
|
|
|
namespace :preferences do
|
|
|
|
resource :appearance, only: [:show, :update], controller: :appearance
|
|
|
|
resource :notifications, only: [:show, :update]
|
2019-06-07 15:51:08 +01:00
|
|
|
resource :other, only: [:show, :update], controller: :other
|
2019-06-07 02:39:24 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
resource :import, only: [:show, :create]
|
2018-02-21 22:21:32 +00:00
|
|
|
resource :export, only: [:show, :create]
|
2019-06-07 02:39:24 +01:00
|
|
|
|
2017-04-11 21:00:43 +01:00
|
|
|
namespace :exports, constraints: { format: :csv } do
|
|
|
|
resources :follows, only: :index, controller: :following_accounts
|
|
|
|
resources :blocks, only: :index, controller: :blocked_accounts
|
2017-04-12 17:20:44 +01:00
|
|
|
resources :mutes, only: :index, controller: :muted_accounts
|
2019-01-01 12:44:04 +00:00
|
|
|
resources :lists, only: :index, controller: :lists
|
|
|
|
resources :domain_blocks, only: :index, controller: :blocked_domains
|
2017-03-19 19:29:41 +00:00
|
|
|
end
|
2017-01-27 19:28:46 +00:00
|
|
|
|
2017-04-22 03:23:17 +01:00
|
|
|
resource :two_factor_authentication, only: [:show, :create, :destroy]
|
2019-06-07 02:39:24 +01:00
|
|
|
|
2017-04-22 03:23:17 +01:00
|
|
|
namespace :two_factor_authentication do
|
|
|
|
resources :recovery_codes, only: [:create]
|
|
|
|
resource :confirmation, only: [:new, :create]
|
2017-01-27 19:28:46 +00:00
|
|
|
end
|
2017-04-23 23:38:37 +01:00
|
|
|
|
2019-03-18 20:00:55 +00:00
|
|
|
resources :identity_proofs, only: [:index, :show, :new, :create, :update]
|
|
|
|
|
2017-08-22 23:59:35 +01:00
|
|
|
resources :applications, except: [:edit] do
|
|
|
|
member do
|
|
|
|
post :regenerate
|
|
|
|
end
|
2017-08-22 17:33:57 +01:00
|
|
|
end
|
|
|
|
|
2017-06-14 17:01:27 +01:00
|
|
|
resource :delete, only: [:show, :destroy]
|
2019-09-29 04:03:19 +01:00
|
|
|
resource :migration, only: [:show, :create]
|
2017-07-19 03:59:04 +01:00
|
|
|
|
2019-09-29 04:03:19 +01:00
|
|
|
namespace :migration do
|
|
|
|
resource :redirect, only: [:new, :create, :destroy]
|
2019-09-19 19:58:19 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
resources :aliases, only: [:index, :create, :destroy]
|
2017-07-19 03:59:04 +01:00
|
|
|
resources :sessions, only: [:destroy]
|
2019-02-04 03:25:59 +00:00
|
|
|
resources :featured_tags, only: [:index, :create, :destroy]
|
2016-10-14 01:28:49 +01:00
|
|
|
end
|
|
|
|
|
2018-02-16 06:22:20 +00:00
|
|
|
resources :media, only: [:show] do
|
|
|
|
get :player
|
|
|
|
end
|
|
|
|
|
2017-10-07 16:43:42 +01:00
|
|
|
resources :tags, only: [:show]
|
|
|
|
resources :emojis, only: [:show]
|
2017-11-27 15:07:59 +00:00
|
|
|
resources :invites, only: [:index, :create, :destroy]
|
2018-06-29 14:34:36 +01:00
|
|
|
resources :filters, except: [:show]
|
2019-03-16 10:23:22 +00:00
|
|
|
resource :relationships, only: [:show, :update]
|
2016-10-02 15:14:21 +01:00
|
|
|
|
2019-03-12 16:34:00 +00:00
|
|
|
get '/public', to: 'public_timelines#show', as: :public_timeline
|
2017-09-16 02:01:45 +01:00
|
|
|
get '/media_proxy/:id/(*any)', to: 'media_proxy#show', as: :media_proxy
|
|
|
|
|
2018-08-18 02:03:12 +01:00
|
|
|
resource :authorize_interaction, only: [:show, :create]
|
2017-08-14 03:53:31 +01:00
|
|
|
resource :share, only: [:show, :create]
|
2016-12-29 15:54:54 +00:00
|
|
|
|
2016-11-28 17:45:13 +00:00
|
|
|
namespace :admin do
|
2018-07-16 00:11:53 +01:00
|
|
|
get '/dashboard', to: 'dashboard#index'
|
|
|
|
|
2019-07-30 10:10:46 +01:00
|
|
|
resources :domain_allows, only: [:new, :create, :show, :destroy]
|
2019-08-07 19:20:23 +01:00
|
|
|
resources :domain_blocks, only: [:new, :create, :show, :destroy, :update] do
|
|
|
|
member do
|
|
|
|
get :edit
|
|
|
|
end
|
|
|
|
end
|
2020-01-23 21:00:13 +00:00
|
|
|
|
2017-10-04 14:16:10 +01:00
|
|
|
resources :email_domain_blocks, only: [:index, :new, :create, :destroy]
|
2017-11-24 01:05:53 +00:00
|
|
|
resources :action_logs, only: [:index]
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-22 19:02:09 +00:00
|
|
|
resources :warning_presets, except: [:new]
|
2020-01-27 10:05:33 +00:00
|
|
|
|
|
|
|
resources :announcements, except: [:show] do
|
|
|
|
member do
|
|
|
|
post :publish
|
|
|
|
post :unpublish
|
|
|
|
end
|
|
|
|
end
|
2020-01-23 21:00:13 +00:00
|
|
|
|
2017-05-04 17:12:44 +01:00
|
|
|
resource :settings, only: [:edit, :update]
|
2018-08-18 23:58:53 +01:00
|
|
|
|
|
|
|
resources :invites, only: [:index, :create, :destroy] do
|
|
|
|
collection do
|
|
|
|
post :deactivate_all
|
|
|
|
end
|
|
|
|
end
|
2017-08-14 03:53:31 +01:00
|
|
|
|
2018-07-13 01:16:06 +01:00
|
|
|
resources :relays, only: [:index, :new, :create, :destroy] do
|
|
|
|
member do
|
|
|
|
post :enable
|
|
|
|
post :disable
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-08 12:39:49 +00:00
|
|
|
resources :instances, only: [:index, :show], constraints: { id: /[^\/]+/ }
|
2017-02-16 23:42:52 +00:00
|
|
|
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-22 19:02:09 +00:00
|
|
|
resources :reports, only: [:index, :show] do
|
|
|
|
member do
|
|
|
|
post :assign_to_self
|
|
|
|
post :unassign
|
|
|
|
post :reopen
|
|
|
|
post :resolve
|
|
|
|
end
|
|
|
|
|
2018-05-05 22:06:29 +01:00
|
|
|
resources :reported_statuses, only: [:create]
|
2017-02-16 23:42:52 +00:00
|
|
|
end
|
2016-12-06 17:22:59 +00:00
|
|
|
|
2018-04-02 21:04:14 +01:00
|
|
|
resources :report_notes, only: [:create, :destroy]
|
|
|
|
|
2017-02-14 23:22:58 +00:00
|
|
|
resources :accounts, only: [:index, :show] do
|
2017-06-08 13:58:22 +01:00
|
|
|
member do
|
2017-11-07 18:06:44 +00:00
|
|
|
post :enable
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-22 19:02:09 +00:00
|
|
|
post :unsilence
|
|
|
|
post :unsuspend
|
2017-06-08 13:58:22 +01:00
|
|
|
post :redownload
|
2018-04-02 12:45:07 +01:00
|
|
|
post :remove_avatar
|
2018-12-11 18:28:03 +00:00
|
|
|
post :remove_header
|
2017-11-07 18:06:44 +00:00
|
|
|
post :memorialize
|
2019-03-14 04:28:30 +00:00
|
|
|
post :approve
|
|
|
|
post :reject
|
2017-06-08 13:58:22 +01:00
|
|
|
end
|
|
|
|
|
2018-04-10 08:16:06 +01:00
|
|
|
resource :change_email, only: [:show, :update]
|
2017-04-15 15:44:59 +01:00
|
|
|
resource :reset, only: [:create]
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-22 19:02:09 +00:00
|
|
|
resource :action, only: [:new, :create], controller: 'account_actions'
|
2019-01-04 12:10:43 +00:00
|
|
|
resources :statuses, only: [:index, :show, :create, :update, :destroy]
|
2020-01-23 19:33:20 +00:00
|
|
|
resources :relationships, only: [:index]
|
2018-05-06 09:59:03 +01:00
|
|
|
|
|
|
|
resource :confirmation, only: [:create] do
|
|
|
|
collection do
|
|
|
|
post :resend
|
|
|
|
end
|
|
|
|
end
|
2017-11-11 19:23:33 +00:00
|
|
|
|
2020-01-20 14:55:03 +00:00
|
|
|
resource :role, only: [] do
|
2017-11-11 19:23:33 +00:00
|
|
|
member do
|
|
|
|
post :promote
|
|
|
|
post :demote
|
|
|
|
end
|
|
|
|
end
|
2016-12-06 17:22:59 +00:00
|
|
|
end
|
2017-05-02 20:07:12 +01:00
|
|
|
|
2019-04-08 17:35:41 +01:00
|
|
|
resources :pending_accounts, only: [:index] do
|
2019-04-06 16:53:45 +01:00
|
|
|
collection do
|
|
|
|
post :approve_all
|
|
|
|
post :reject_all
|
2019-04-08 17:35:41 +01:00
|
|
|
post :batch
|
2019-04-06 16:53:45 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-02 20:07:12 +01:00
|
|
|
resources :users, only: [] do
|
|
|
|
resource :two_factor_authentication, only: [:destroy]
|
|
|
|
end
|
2017-09-19 02:52:38 +01:00
|
|
|
|
2019-09-09 21:44:17 +01:00
|
|
|
resources :custom_emojis, only: [:index, :new, :create] do
|
|
|
|
collection do
|
|
|
|
post :batch
|
2017-10-05 22:42:05 +01:00
|
|
|
end
|
|
|
|
end
|
2017-10-07 19:26:43 +01:00
|
|
|
|
|
|
|
resources :account_moderation_notes, only: [:create, :destroy]
|
2019-09-09 11:50:09 +01:00
|
|
|
|
|
|
|
resources :tags, only: [:index, :show, :update] do
|
|
|
|
collection do
|
|
|
|
post :approve_all
|
|
|
|
post :reject_all
|
|
|
|
post :batch
|
|
|
|
end
|
|
|
|
end
|
2016-11-28 17:45:13 +00:00
|
|
|
end
|
|
|
|
|
2018-07-16 00:11:53 +01:00
|
|
|
get '/admin', to: redirect('/admin/dashboard', status: 302)
|
2017-01-26 07:59:35 +00:00
|
|
|
|
2016-02-29 18:42:08 +00:00
|
|
|
namespace :api do
|
2016-11-30 22:01:03 +00:00
|
|
|
# OEmbed
|
|
|
|
get '/oembed', to: 'oembed#show', as: :oembed
|
|
|
|
|
2019-03-18 20:00:55 +00:00
|
|
|
# Identity proofs
|
|
|
|
get :proofs, to: 'proofs#index'
|
|
|
|
|
2016-03-07 11:42:33 +00:00
|
|
|
# JSON / REST API
|
2016-09-27 15:58:23 +01:00
|
|
|
namespace :v1 do
|
|
|
|
resources :statuses, only: [:create, :show, :destroy] do
|
2017-06-09 19:12:40 +01:00
|
|
|
scope module: :statuses do
|
2017-06-10 08:39:26 +01:00
|
|
|
resources :reblogged_by, controller: :reblogged_by_accounts, only: :index
|
|
|
|
resources :favourited_by, controller: :favourited_by_accounts, only: :index
|
|
|
|
resource :reblog, only: :create
|
|
|
|
post :unreblog, to: 'reblogs#destroy'
|
|
|
|
|
|
|
|
resource :favourite, only: :create
|
|
|
|
post :unfavourite, to: 'favourites#destroy'
|
|
|
|
|
2019-11-13 22:02:10 +00:00
|
|
|
resource :bookmark, only: :create
|
|
|
|
post :unbookmark, to: 'bookmarks#destroy'
|
|
|
|
|
2017-06-10 08:39:26 +01:00
|
|
|
resource :mute, only: :create
|
|
|
|
post :unmute, to: 'mutes#destroy'
|
2017-08-25 00:41:18 +01:00
|
|
|
|
|
|
|
resource :pin, only: :create
|
|
|
|
post :unpin, to: 'pins#destroy'
|
2017-06-09 19:12:40 +01:00
|
|
|
end
|
|
|
|
|
2016-09-27 15:58:23 +01:00
|
|
|
member do
|
|
|
|
get :context
|
|
|
|
end
|
2016-03-07 12:25:26 +00:00
|
|
|
end
|
|
|
|
|
2017-05-23 17:11:39 +01:00
|
|
|
namespace :timelines do
|
|
|
|
resource :home, only: :show, controller: :home
|
|
|
|
resource :public, only: :show, controller: :public
|
|
|
|
resources :tag, only: :show
|
2017-11-17 23:16:48 +00:00
|
|
|
resources :list, only: :show
|
2017-05-23 17:11:39 +01:00
|
|
|
end
|
2017-08-25 00:41:18 +01:00
|
|
|
|
|
|
|
resources :streaming, only: [:index]
|
2017-09-23 00:57:23 +01:00
|
|
|
resources :custom_emojis, only: [:index]
|
2018-07-07 20:09:54 +01:00
|
|
|
resources :suggestions, only: [:index, :destroy]
|
2019-01-05 11:43:28 +00:00
|
|
|
resources :scheduled_statuses, only: [:index, :show, :update, :destroy]
|
2019-03-15 01:39:20 +00:00
|
|
|
resources :preferences, only: [:index]
|
2018-10-19 00:47:29 +01:00
|
|
|
|
2020-01-23 21:00:13 +00:00
|
|
|
resources :announcements, only: [:index] do
|
|
|
|
scope module: :announcements do
|
|
|
|
resources :reactions, only: [:update, :destroy]
|
|
|
|
end
|
|
|
|
|
|
|
|
member do
|
|
|
|
post :dismiss
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-19 00:47:29 +01:00
|
|
|
resources :conversations, only: [:index, :destroy] do
|
|
|
|
member do
|
|
|
|
post :read
|
|
|
|
end
|
|
|
|
end
|
2016-11-08 22:22:44 +00:00
|
|
|
|
2018-08-20 17:46:04 +01:00
|
|
|
resources :media, only: [:create, :update]
|
|
|
|
resources :blocks, only: [:index]
|
|
|
|
resources :mutes, only: [:index]
|
|
|
|
resources :favourites, only: [:index]
|
2019-11-13 22:02:10 +00:00
|
|
|
resources :bookmarks, only: [:index]
|
2018-09-28 01:23:45 +01:00
|
|
|
resources :reports, only: [:create]
|
2019-08-05 18:54:29 +01:00
|
|
|
resources :trends, only: [:index]
|
2018-08-20 17:46:04 +01:00
|
|
|
resources :filters, only: [:index, :create, :show, :update, :destroy]
|
|
|
|
resources :endorsements, only: [:index]
|
2019-09-06 12:55:51 +01:00
|
|
|
resources :markers, only: [:index, :create]
|
2017-03-15 22:12:48 +00:00
|
|
|
|
2017-09-30 21:05:42 +01:00
|
|
|
namespace :apps do
|
|
|
|
get :verify_credentials, to: 'credentials#show'
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :apps, only: [:create]
|
|
|
|
|
2017-12-29 18:52:04 +00:00
|
|
|
resource :instance, only: [:show] do
|
|
|
|
resources :peers, only: [:index], controller: 'instances/peers'
|
|
|
|
resource :activity, only: [:show], controller: 'instances/activity'
|
|
|
|
end
|
|
|
|
|
Account domain blocks (#2381)
* Add <ostatus:conversation /> tag to Atom input/output
Only uses ref attribute (not href) because href would be
the alternate link that's always included also.
Creates new conversation for every non-reply status. Carries
over conversation for every reply. Keeps remote URIs verbatim,
generates local URIs on the fly like the rest of them.
* Conversation muting - prevents notifications that reference a conversation
(including replies, favourites, reblogs) from being created. API endpoints
/api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute
Currently no way to tell when a status/conversation is muted, so the web UI
only has a "disable notifications" button, doesn't work as a toggle
* Display "Dismiss notifications" on all statuses in notifications column, not just own
* Add "muted" as a boolean attribute on statuses JSON
For now always false on contained reblogs, since it's only relevant for
statuses returned from the notifications endpoint, which are not nested
Remove "Disable notifications" from detailed status view, since it's
only relevant in the notifications column
* Up max class length
* Remove pending test for conversation mute
* Add tests, clean up
* Rename to "mute conversation" and "unmute conversation"
* Raise validation error when trying to mute/unmute status without conversation
* Adding account domain blocks that filter notifications and public timelines
* Add tests for domain blocks in notifications, public timelines
Filter reblogs of blocked domains from home
* Add API for listing and creating account domain blocks
* API for creating/deleting domain blocks, tests for Status#ancestors
and Status#descendants, filter domain blocks from them
* Filter domains in streaming API
* Update account_domain_block_spec.rb
2017-05-19 00:14:30 +01:00
|
|
|
resource :domain_blocks, only: [:show, :create, :destroy]
|
2019-08-29 23:14:36 +01:00
|
|
|
resource :directory, only: [:show]
|
2016-10-02 15:14:21 +01:00
|
|
|
|
2016-12-26 18:30:45 +00:00
|
|
|
resources :follow_requests, only: [:index] do
|
|
|
|
member do
|
|
|
|
post :authorize
|
|
|
|
post :reject
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-01-23 20:09:27 +00:00
|
|
|
resources :notifications, only: [:index, :show] do
|
|
|
|
collection do
|
|
|
|
post :clear
|
2018-10-07 17:26:26 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
member do
|
2017-04-22 01:30:35 +01:00
|
|
|
post :dismiss
|
2017-01-23 20:09:27 +00:00
|
|
|
end
|
|
|
|
end
|
2016-11-19 23:33:02 +00:00
|
|
|
|
2017-05-31 20:36:24 +01:00
|
|
|
namespace :accounts do
|
|
|
|
get :verify_credentials, to: 'credentials#show'
|
|
|
|
patch :update_credentials, to: 'credentials#update'
|
|
|
|
resource :search, only: :show, controller: :search
|
|
|
|
resources :relationships, only: :index
|
|
|
|
end
|
2017-08-25 00:41:18 +01:00
|
|
|
|
2018-12-24 18:12:38 +00:00
|
|
|
resources :accounts, only: [:create, :show] do
|
2017-05-31 20:36:24 +01:00
|
|
|
resources :statuses, only: :index, controller: 'accounts/statuses'
|
|
|
|
resources :followers, only: :index, controller: 'accounts/follower_accounts'
|
|
|
|
resources :following, only: :index, controller: 'accounts/following_accounts'
|
2017-12-12 02:55:39 +00:00
|
|
|
resources :lists, only: :index, controller: 'accounts/lists'
|
2019-03-28 17:01:09 +00:00
|
|
|
resources :identity_proofs, only: :index, controller: 'accounts/identity_proofs'
|
2016-09-27 15:58:23 +01:00
|
|
|
|
|
|
|
member do
|
|
|
|
post :follow
|
|
|
|
post :unfollow
|
2016-10-03 17:17:06 +01:00
|
|
|
post :block
|
|
|
|
post :unblock
|
2017-02-06 01:51:56 +00:00
|
|
|
post :mute
|
|
|
|
post :unmute
|
2016-09-27 15:58:23 +01:00
|
|
|
end
|
2018-08-09 08:56:53 +01:00
|
|
|
|
|
|
|
resource :pin, only: :create, controller: 'accounts/pins'
|
|
|
|
post :unpin, to: 'accounts/pins#destroy'
|
2016-03-07 11:42:33 +00:00
|
|
|
end
|
2017-11-17 23:16:48 +00:00
|
|
|
|
|
|
|
resources :lists, only: [:index, :create, :show, :update, :destroy] do
|
|
|
|
resource :accounts, only: [:show, :create, :destroy], controller: 'lists/accounts'
|
|
|
|
end
|
2018-05-11 10:49:12 +01:00
|
|
|
|
2019-09-09 09:50:33 +01:00
|
|
|
namespace :featured_tags do
|
|
|
|
get :suggestions, to: 'suggestions#index'
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :featured_tags, only: [:index, :create, :destroy]
|
|
|
|
|
2019-03-03 21:18:23 +00:00
|
|
|
resources :polls, only: [:create, :show] do
|
|
|
|
resources :votes, only: :create, controller: 'polls/votes'
|
|
|
|
end
|
|
|
|
|
2018-05-11 10:49:12 +01:00
|
|
|
namespace :push do
|
2018-05-13 20:07:31 +01:00
|
|
|
resource :subscription, only: [:create, :show, :update, :destroy]
|
2018-05-11 10:49:12 +01:00
|
|
|
end
|
2019-06-20 01:52:34 +01:00
|
|
|
|
|
|
|
namespace :admin do
|
|
|
|
resources :accounts, only: [:index, :show] do
|
|
|
|
member do
|
|
|
|
post :enable
|
|
|
|
post :unsilence
|
|
|
|
post :unsuspend
|
|
|
|
post :approve
|
|
|
|
post :reject
|
|
|
|
end
|
|
|
|
|
|
|
|
resource :action, only: [:create], controller: 'account_actions'
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :reports, only: [:index, :show] do
|
|
|
|
member do
|
|
|
|
post :assign_to_self
|
|
|
|
post :unassign
|
|
|
|
post :reopen
|
|
|
|
post :resolve
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-03-07 11:42:33 +00:00
|
|
|
end
|
2017-01-09 13:00:55 +00:00
|
|
|
|
2018-05-29 01:01:24 +01:00
|
|
|
namespace :v2 do
|
|
|
|
get '/search', to: 'search#index', as: :search
|
|
|
|
end
|
|
|
|
|
2017-01-09 13:00:55 +00:00
|
|
|
namespace :web do
|
|
|
|
resource :settings, only: [:update]
|
2017-08-31 02:38:35 +01:00
|
|
|
resource :embed, only: [:create]
|
2017-07-13 21:15:32 +01:00
|
|
|
resources :push_subscriptions, only: [:create] do
|
|
|
|
member do
|
|
|
|
put :update
|
|
|
|
end
|
|
|
|
end
|
2017-01-09 13:00:55 +00:00
|
|
|
end
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|
2016-02-22 15:00:20 +00:00
|
|
|
|
2017-01-04 14:35:36 +00:00
|
|
|
get '/web/(*any)', to: 'home#index', as: :web
|
2016-11-13 13:01:21 +00:00
|
|
|
|
2019-08-19 10:35:48 +01:00
|
|
|
get '/about', to: 'about#show'
|
|
|
|
get '/about/more', to: 'about#more'
|
|
|
|
get '/terms', to: 'about#terms'
|
2017-01-20 00:00:14 +00:00
|
|
|
|
2019-08-30 00:34:33 +01:00
|
|
|
match '/', via: [:post, :put, :patch, :delete], to: 'application#raise_not_found', format: false
|
|
|
|
match '*unmatched_route', via: :all, to: 'application#raise_not_found', format: false
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|