138 lines
4.1 KiB
Ruby
138 lines
4.1 KiB
Ruby
# Copyright (c) 2010, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# the COPYRIGHT file.
|
|
|
|
Diaspora::Application.routes.draw do
|
|
|
|
# Posting and Reading
|
|
|
|
resources :aspects do
|
|
get 'manage' => :manage, :on => :collection
|
|
put 'toggle_contact_visibility' => :toggle_contact_visibility
|
|
end
|
|
|
|
resources :status_messages, :only => [:new, :create, :destroy, :show]
|
|
get 'bookmarklet' => 'status_messages#bookmarklet'
|
|
get 'p/:id' => 'posts#show', :as => 'post'
|
|
|
|
resources :photos, :except => [:index] do
|
|
put 'make_profile_photo' => :make_profile_photo
|
|
end
|
|
|
|
resources :comments, :only => [:create, :destroy]
|
|
|
|
resources :likes, :only => [:create, :destroy]
|
|
|
|
resources :conversations do
|
|
resources :messages, :only => [:create, :show]
|
|
delete 'visibility' => 'conversation_visibilities#destroy'
|
|
end
|
|
|
|
resources :notifications, :only => [:index, :update] do
|
|
get 'read_all' => :read_all, :on => :collection
|
|
end
|
|
|
|
resources :tags, :only => [:index]
|
|
get 'tags/:name' => 'tags#show', :as => 'tag'
|
|
|
|
# Users and people
|
|
|
|
resource :user, :only => [:edit, :update, :destroy], :shallow => true do
|
|
get :export
|
|
get :export_photos
|
|
end
|
|
|
|
|
|
controller :users do
|
|
get 'public/:username' => :public, :as => 'users_public'
|
|
match 'getting_started' => :getting_started, :as => 'getting_started'
|
|
get 'getting_started_completed' => :getting_started_completed
|
|
end
|
|
|
|
# This is a hack to overide a route created by devise.
|
|
# I couldn't find anything in devise to skip that route, see Bug #961
|
|
match 'users/edit' => redirect('/user/edit')
|
|
|
|
devise_for :users, :controllers => {:registrations => "registrations",
|
|
:password => "devise/passwords",
|
|
:sessions => "sessions",
|
|
:invitations => "invitations"} do
|
|
get 'invitations/resend/:id' => 'invitations#resend', :as => 'invitation_resend'
|
|
end
|
|
|
|
# generating a new user token (for devise)
|
|
match 'users/generate_new_token' => 'users#generate_new_token'
|
|
|
|
|
|
|
|
get 'login' => redirect('/users/sign_in')
|
|
|
|
scope 'admins', :controller => :admins do
|
|
match 'user_search' => :user_search
|
|
get 'admin_inviter' => :admin_inviter
|
|
get 'add_invites' => :add_invites, :as => 'add_invites'
|
|
end
|
|
|
|
resource :profile
|
|
|
|
resources :contacts, :except => [:index, :update, :create] do
|
|
get :sharing, :on => :collection
|
|
end
|
|
resources :aspect_memberships, :only => [:destroy, :create, :update]
|
|
resources :post_visibilities, :only => [:update]
|
|
|
|
resources :people, :except => [:edit, :update] do
|
|
resources :status_messages
|
|
resources :photos
|
|
get :contacts
|
|
post 'by_handle' => :retrieve_remote, :on => :collection, :as => 'person_by_handle'
|
|
end
|
|
|
|
|
|
# Federation
|
|
|
|
controller :publics do
|
|
get 'webfinger' => :webfinger
|
|
get 'hcard/users/:guid' => :hcard
|
|
get '.well-known/host-meta' => :host_meta
|
|
post 'receive/users/:guid' => :receive
|
|
get 'hub' => :hub
|
|
end
|
|
|
|
|
|
# External
|
|
|
|
resources :services, :only => [:index, :destroy]
|
|
controller :services do
|
|
match '/auth/:provider/callback' => :create
|
|
match '/auth/failure' => :failure
|
|
scope 'services' do
|
|
match 'inviter/:provider' => :inviter, :as => 'service_inviter'
|
|
match 'finder/:provider' => :finder, :as => 'friend_finder'
|
|
end
|
|
end
|
|
|
|
scope 'api/v0', :controller => :apis do
|
|
match 'statuses/public_timeline' => :public_timeline
|
|
match 'statuses/home_timeline' => :home_timeline
|
|
match 'statuses/show/:guid' => :statuses
|
|
match 'statuses/user_timeline' => :user_timeline
|
|
|
|
match 'users/show' => :users
|
|
match 'users/search' => :users_search
|
|
match 'users/profile_image' => :users_profile_image
|
|
|
|
match 'tags_posts/:tag' => :tag_posts
|
|
match 'tags_people/:tag' => :tag_people
|
|
end
|
|
|
|
|
|
# Mobile site
|
|
|
|
get 'mobile/toggle', :to => 'home#toggle_mobile', :as => 'toggle_mobile'
|
|
|
|
|
|
# Startpage
|
|
|
|
root :to => 'home#show'
|
|
end
|