2016-02-21 06:53:20 +09:00
|
|
|
Rails.application.routes.draw do
|
2016-03-15 01:49:13 +09:00
|
|
|
use_doorkeeper do
|
|
|
|
controllers applications: 'oauth/applications'
|
|
|
|
end
|
2016-03-07 20:42:33 +09:00
|
|
|
|
2016-02-23 00:00:20 +09:00
|
|
|
get '.well-known/host-meta', to: 'xrd#host_meta', as: :host_meta
|
|
|
|
get '.well-known/webfinger', to: 'xrd#webfinger', as: :webfinger
|
|
|
|
|
2016-03-06 06:43:05 +09:00
|
|
|
devise_for :users, path: 'auth', controllers: {
|
|
|
|
sessions: 'auth/sessions',
|
|
|
|
registrations: 'auth/registrations',
|
|
|
|
passwords: 'auth/passwords'
|
|
|
|
}
|
2016-03-05 21:12:24 +09:00
|
|
|
|
2016-03-01 03:42:08 +09:00
|
|
|
resources :accounts, path: 'users', only: [:show], param: :username do
|
2016-03-07 20:42:33 +09:00
|
|
|
resources :stream_entries, path: 'updates', only: [:show]
|
2016-03-19 22:02:30 +09:00
|
|
|
|
|
|
|
member do
|
|
|
|
get :followers
|
|
|
|
get :following
|
|
|
|
end
|
2016-03-01 03:42:08 +09:00
|
|
|
end
|
2016-02-23 00:00:20 +09:00
|
|
|
|
2016-03-22 02:26:47 +09:00
|
|
|
resource :settings, only: [:show, :update]
|
|
|
|
resources :statuses, only: [:create]
|
2016-03-13 04:47:22 +09:00
|
|
|
|
2016-03-01 03:42:08 +09:00
|
|
|
namespace :api do
|
2016-03-07 20:42:33 +09:00
|
|
|
# PubSubHubbub
|
2016-03-01 03:42:08 +09:00
|
|
|
resources :subscriptions, only: [:show]
|
|
|
|
post '/subscriptions/:id', to: 'subscriptions#update'
|
2016-03-07 20:42:33 +09:00
|
|
|
|
|
|
|
# Salmon
|
2016-03-01 03:42:08 +09:00
|
|
|
post '/salmon/:id', to: 'salmon#update', as: :salmon
|
2016-03-07 20:42:33 +09:00
|
|
|
|
|
|
|
# JSON / REST API
|
|
|
|
resources :statuses, only: [:create, :show] do
|
2016-03-07 21:25:26 +09:00
|
|
|
collection do
|
|
|
|
get :home
|
|
|
|
get :mentions
|
|
|
|
end
|
|
|
|
|
2016-03-07 20:42:33 +09:00
|
|
|
member do
|
|
|
|
post :reblog
|
2016-03-07 20:58:42 +09:00
|
|
|
post :favourite
|
2016-03-07 20:42:33 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resources :follows, only: [:create]
|
|
|
|
|
|
|
|
resources :accounts, only: [:show] do
|
2016-03-22 01:02:16 +09:00
|
|
|
collection do
|
|
|
|
get :lookup, to: 'accounts/lookup#index', as: :lookup
|
|
|
|
end
|
|
|
|
|
2016-03-07 20:42:33 +09:00
|
|
|
member do
|
|
|
|
get :statuses
|
|
|
|
get :followers
|
|
|
|
get :following
|
|
|
|
|
|
|
|
post :follow
|
|
|
|
post :unfollow
|
|
|
|
end
|
|
|
|
end
|
2016-03-01 03:42:08 +09:00
|
|
|
end
|
2016-02-23 00:00:20 +09:00
|
|
|
|
|
|
|
root 'home#index'
|
2016-02-21 06:53:20 +09:00
|
|
|
end
|