mastodon/config/routes.rb

148 lines
3.7 KiB
Ruby
Raw Normal View History

2016-11-28 12:36:47 +00:00
# frozen_string_literal: true
require 'sidekiq/web'
2016-02-20 21:53:20 +00:00
Rails.application.routes.draw do
2016-11-28 12:36:47 +00:00
mount ActionCable.server, at: 'cable'
2016-08-18 13:49:51 +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
end
use_doorkeeper do
controllers authorizations: 'oauth/authorizations'
end
2016-02-22 15:00:20 +00:00
get '.well-known/host-meta', to: 'xrd#host_meta', as: :host_meta
get '.well-known/webfinger', to: 'xrd#webfinger', as: :webfinger
devise_for :users, path: 'auth', controllers: {
sessions: 'auth/sessions',
registrations: 'auth/registrations',
2016-10-03 14:38:22 +00:00
passwords: 'auth/passwords',
2016-11-28 12:36:47 +00:00
confirmations: 'auth/confirmations',
}
2016-03-05 12:12:24 +00:00
resources :accounts, path: 'users', only: [:show], param: :username do
resources :stream_entries, path: 'updates', only: [:show] do
member do
get :embed
end
end
2017-01-01 18:52:25 +00:00
get :remote_follow, to: 'remote_follow#new'
post :remote_follow, to: 'remote_follow#create'
member do
get :followers
get :following
post :follow
post :unfollow
end
end
2016-02-22 15:00:20 +00:00
2016-10-14 00:28:49 +00:00
namespace :settings do
resource :profile, only: [:show, :update]
resource :preferences, only: [:show, :update]
end
resources :media, only: [:show]
2016-11-05 14:20:05 +00:00
resources :tags, only: [:show]
# Remote follow
get :authorize_follow, to: 'authorize_follow#new'
post :authorize_follow, to: 'authorize_follow#create'
namespace :admin do
resources :pubsubhubbub, only: [:index]
2016-12-13 12:42:10 +00:00
resources :domain_blocks, only: [:index, :create]
resources :accounts, only: [:index, :show, :update] do
member do
post :suspend
end
end
end
namespace :api do
2016-11-28 12:36:47 +00:00
# PubSubHubbub outgoing subscriptions
resources :subscriptions, only: [:show]
post '/subscriptions/:id', to: 'subscriptions#update'
2016-11-28 12:36:47 +00:00
# PubSubHubbub incoming subscriptions
post '/push', to: 'push#update', as: :push
# Salmon
post '/salmon/:id', to: 'salmon#update', as: :salmon
# OEmbed
get '/oembed', to: 'oembed#show', as: :oembed
# JSON / REST API
2016-09-27 14:58:23 +00:00
namespace :v1 do
resources :statuses, only: [:create, :show, :destroy] do
member do
get :context
get :reblogged_by
get :favourited_by
2016-09-27 14:58:23 +00:00
post :reblog
post :unreblog
post :favourite
post :unfavourite
end
end
get '/timelines/home', to: 'timelines#home', as: :home_timeline
get '/timelines/mentions', to: 'timelines#mentions', as: :mentions_timeline
get '/timelines/public', to: 'timelines#public', as: :public_timeline
get '/timelines/tag/:id', to: 'timelines#tag', as: :hashtag_timeline
2016-09-27 14:58:23 +00:00
resources :follows, only: [:create]
resources :media, only: [:create]
resources :apps, only: [:create]
resources :blocks, only: [:index]
2016-12-26 18:30:45 +00:00
resources :follow_requests, only: [:index] do
member do
post :authorize
post :reject
end
end
resources :notifications, only: [:index]
2016-12-29 19:33:26 +00:00
resources :favourites, only: [:index]
2016-09-27 14:58:23 +00:00
resources :accounts, only: [:show] do
collection do
get :relationships
get :verify_credentials
get :search
2016-09-27 14:58:23 +00:00
end
member do
get :statuses
get :followers
get :following
post :follow
post :unfollow
2016-10-03 16:17:06 +00:00
post :block
post :unblock
2016-09-27 14:58:23 +00:00
end
end
end
end
2016-02-22 15:00:20 +00:00
get '/web/*any', to: 'home#index', as: :web
2016-09-27 21:12:33 +00:00
get :about, to: 'about#index'
get :terms, to: 'about#terms'
2016-02-22 15:00:20 +00:00
root 'home#index'
2016-09-08 00:40:51 +00:00
match '*unmatched_route', via: :all, to: 'application#raise_not_found'
2016-02-20 21:53:20 +00:00
end