Mastodonを読む/routes.rb
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
]
開始行:
[[Mastodonを読む]]
#contents
*はじめに [#ae0ea627]
さて、確認環境ができたのでMastodon本体の読解に入ります。...
*config/routes.rb [#a6f1eeeb]
というわけで、routes.rbを見て「/」にアクセスされたときに...
**認証周り [#gcf2cdf0]
まず目に入るのは以下の記述です。
#code(Ruby){{
devise_for :users, path: 'auth', controllers: {
sessions: 'auth/sessions',
registrations: 'auth/registrations',
passwords: 'auth/passwords',
confirmations: 'auth/confirmations',
}
}}
認証処理には[[devise>https://github.com/plataformatec/dev...
**ユーザ周り [#f65db7c3]
次に目に入るのは以下の部分。
#code(Ruby){{
get '/users/:username', to: redirect('/@%{username}'), ...
resources :accounts, path: 'users', only: [:show], para...
resources :stream_entries, path: 'updates', only: [:s...
member do
get :embed
end
end
get :remote_follow, to: 'remote_follow#new'
post :remote_follow, to: 'remote_follow#create'
resources :followers, only: [:index], controller: :fo...
resources :following, only: [:index], controller: :fo...
resource :follow, only: [:create], controller: :accou...
resource :unfollow, only: [:create], controller: :acc...
end
get '/@:username', to: 'accounts#show', as: :short_acco...
get '/@:account_username/:id', to: 'statuses#show', as:...
}}
あるユーザについて、ユーザのホームを表示する、フォロワー...
フォロー関係、onlyで1メソッドしか指定しないのなら一つのコ...
って、確認のためにポチポチしてると画面全体再描画されてな...
**API周り [#o5c9c6d8]
ユーザ設定、サイト設定などのルーティングが続きますが飛ば...
その後、APIと思われる記述があります。一部省略して載せると、
#code(Ruby){{
namespace :api do
省略
# JSON / REST API
namespace :v1 do
省略
get '/timelines/home', to: 'timelines#home', as...
get '/timelines/public', to: 'timelines#public', ...
get '/timelines/tag/:id', to: 'timelines#tag', as:...
省略
end
end
}}
config.rb中でtimelineという単語が出ているのはここだけです...
**ルートとその他 [#tbed5ec8]
残りのルーティングは以下になります。
#code(Ruby){{
get '/web/(*any)', to: 'home#index', as: :web
get '/about', to: 'about#show'
get '/about/more', to: 'about#more'
get '/terms', to: 'about#terms'
root 'home#index'
}}
というわけで、HomeControllerのindexメソッドが呼ばれる、と...
*おわりに [#d0aae6f5]
「/」がアクセスされたときにどのコントローラが呼ばれるかと...
終了行:
[[Mastodonを読む]]
#contents
*はじめに [#ae0ea627]
さて、確認環境ができたのでMastodon本体の読解に入ります。...
*config/routes.rb [#a6f1eeeb]
というわけで、routes.rbを見て「/」にアクセスされたときに...
**認証周り [#gcf2cdf0]
まず目に入るのは以下の記述です。
#code(Ruby){{
devise_for :users, path: 'auth', controllers: {
sessions: 'auth/sessions',
registrations: 'auth/registrations',
passwords: 'auth/passwords',
confirmations: 'auth/confirmations',
}
}}
認証処理には[[devise>https://github.com/plataformatec/dev...
**ユーザ周り [#f65db7c3]
次に目に入るのは以下の部分。
#code(Ruby){{
get '/users/:username', to: redirect('/@%{username}'), ...
resources :accounts, path: 'users', only: [:show], para...
resources :stream_entries, path: 'updates', only: [:s...
member do
get :embed
end
end
get :remote_follow, to: 'remote_follow#new'
post :remote_follow, to: 'remote_follow#create'
resources :followers, only: [:index], controller: :fo...
resources :following, only: [:index], controller: :fo...
resource :follow, only: [:create], controller: :accou...
resource :unfollow, only: [:create], controller: :acc...
end
get '/@:username', to: 'accounts#show', as: :short_acco...
get '/@:account_username/:id', to: 'statuses#show', as:...
}}
あるユーザについて、ユーザのホームを表示する、フォロワー...
フォロー関係、onlyで1メソッドしか指定しないのなら一つのコ...
って、確認のためにポチポチしてると画面全体再描画されてな...
**API周り [#o5c9c6d8]
ユーザ設定、サイト設定などのルーティングが続きますが飛ば...
その後、APIと思われる記述があります。一部省略して載せると、
#code(Ruby){{
namespace :api do
省略
# JSON / REST API
namespace :v1 do
省略
get '/timelines/home', to: 'timelines#home', as...
get '/timelines/public', to: 'timelines#public', ...
get '/timelines/tag/:id', to: 'timelines#tag', as:...
省略
end
end
}}
config.rb中でtimelineという単語が出ているのはここだけです...
**ルートとその他 [#tbed5ec8]
残りのルーティングは以下になります。
#code(Ruby){{
get '/web/(*any)', to: 'home#index', as: :web
get '/about', to: 'about#show'
get '/about/more', to: 'about#more'
get '/terms', to: 'about#terms'
root 'home#index'
}}
というわけで、HomeControllerのindexメソッドが呼ばれる、と...
*おわりに [#d0aae6f5]
「/」がアクセスされたときにどのコントローラが呼ばれるかと...
ページ名: