1 OpenStreetMap::Application.routes.draw do
2 use_doorkeeper :scope => "oauth2" do
3 controllers :authorizations => "oauth2_authorizations",
4 :applications => "oauth2_applications",
5 :authorized_applications => "oauth2_authorized_applications"
8 use_doorkeeper_openid_connect :scope => "oauth2" if Settings.key?(:doorkeeper_signing_key)
12 get "capabilities" => "capabilities#show" # Deprecated, remove when 0.6 support is removed
13 get "versions" => "versions#show"
16 scope "api/0.6", :module => :api do
17 get "capabilities" => "capabilities#show"
18 get "permissions" => "permissions#show"
20 put "changeset/create" => "changesets#create"
21 post "changeset/:id/upload" => "changesets#upload", :as => :changeset_upload, :id => /\d+/
22 get "changeset/:id/download" => "changesets#download", :as => :changeset_download, :id => /\d+/
23 get "changeset/:id" => "changesets#show", :as => :changeset_show, :id => /\d+/
24 post "changeset/:id/subscribe" => "changesets#subscribe", :as => :api_changeset_subscribe, :id => /\d+/
25 post "changeset/:id/unsubscribe" => "changesets#unsubscribe", :as => :api_changeset_unsubscribe, :id => /\d+/
26 put "changeset/:id" => "changesets#update", :id => /\d+/
27 put "changeset/:id/close" => "changesets#close", :as => :changeset_close, :id => /\d+/
28 get "changesets" => "changesets#index"
29 post "changeset/:id/comment" => "changeset_comments#create", :as => :changeset_comment, :id => /\d+/
30 post "changeset/comment/:id/hide" => "changeset_comments#destroy", :as => :changeset_comment_hide, :id => /\d+/
31 post "changeset/comment/:id/unhide" => "changeset_comments#restore", :as => :changeset_comment_unhide, :id => /\d+/
33 get "node/:id/history" => "old_nodes#history", :as => :api_node_history, :id => /\d+/
34 post "node/:id/:version/redact" => "old_nodes#redact", :as => :node_version_redact, :version => /\d+/, :id => /\d+/
35 get "node/:id/:version" => "old_nodes#show", :as => :api_old_node, :id => /\d+/, :version => /\d+/
37 get "way/:id/history" => "old_ways#history", :as => :api_way_history, :id => /\d+/
38 get "way/:id/relations" => "relations#relations_for_way", :as => :way_relations, :id => /\d+/
39 post "way/:id/:version/redact" => "old_ways#redact", :as => :way_version_redact, :version => /\d+/, :id => /\d+/
40 get "way/:id/:version" => "old_ways#show", :as => :api_old_way, :id => /\d+/, :version => /\d+/
42 get "relation/:id/relations" => "relations#relations_for_relation", :as => :relation_relations, :id => /\d+/
43 get "relation/:id/history" => "old_relations#history", :as => :api_relation_history, :id => /\d+/
44 post "relation/:id/:version/redact" => "old_relations#redact", :as => :relation_version_redact, :version => /\d+/, :id => /\d+/
45 get "relation/:id/:version" => "old_relations#show", :as => :api_old_relation, :id => /\d+/, :version => /\d+/
48 namespace :api, :path => "api/0.6" do
49 resources :nodes, :only => [:index, :create]
50 resources :nodes, :path => "node", :id => /\d+/, :only => [:show, :update, :destroy] do
51 scope :module => :nodes do
52 resources :ways, :only => :index
53 resources :relations, :only => :index
56 put "node/create" => "nodes#create", :as => nil
58 resources :ways, :only => [:index, :create]
59 resources :ways, :path => "way", :id => /\d+/, :only => [:show, :update, :destroy] do
61 get :full, :action => :show, :full => true, :as => nil
64 put "way/create" => "ways#create", :as => nil
66 resources :relations, :only => [:index, :create]
67 resources :relations, :path => "relation", :id => /\d+/, :only => [:show, :update, :destroy] do
69 get :full, :action => :show, :full => true, :as => nil
72 put "relation/create" => "relations#create", :as => nil
74 resource :map, :only => :show
76 resources :tracepoints, :path => "trackpoints", :only => :index
78 resources :users, :only => :index
79 resources :users, :path => "user", :id => /\d+/, :only => :show
80 resources :user_traces, :path => "user/gpx_files", :module => :users, :controller => :traces, :only => :index
81 get "user/details" => "users#details"
83 resources :user_preferences, :except => [:new, :create, :edit], :param => :preference_key, :path => "user/preferences" do
85 put "" => "user_preferences#update_all", :as => ""
89 resources :messages, :path => "user/messages", :constraints => { :id => /\d+/ }, :only => [:create, :show, :update, :destroy]
90 namespace :messages, :path => "user/messages" do
91 resource :inbox, :only => :show
92 resource :outbox, :only => :show
94 post "/user/messages/:id" => "messages#update", :as => nil
96 resources :traces, :path => "gpx", :only => [:create, :show, :update, :destroy], :id => /\d+/ do
97 scope :module => :traces do
98 resource :data, :only => :show
101 post "gpx/create" => "traces#create", :id => /\d+/, :as => :trace_create
102 get "gpx/:id/details" => "traces#show", :id => /\d+/, :as => :trace_details
105 resources :notes, :except => [:new, :edit, :update], :id => /\d+/, :controller => "notes" do
108 get "feed", :defaults => { :format => "rss" }
117 resource :subscription, :only => [:create, :destroy], :controller => "note_subscriptions"
120 resources :user_blocks, :only => :show, :id => /\d+/, :controller => "user_blocks"
124 get "/way/:id" => "ways#show", :id => /\d+/, :as => :way
125 get "/way/:id/history" => "old_ways#index", :id => /\d+/, :as => :way_history
126 resources :old_ways, :path => "/way/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
127 get "/node/:id" => "nodes#show", :id => /\d+/, :as => :node
128 get "/node/:id/history" => "old_nodes#index", :id => /\d+/, :as => :node_history
129 resources :old_nodes, :path => "/node/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
130 get "/relation/:id" => "relations#show", :id => /\d+/, :as => :relation
131 get "/relation/:id/history" => "old_relations#index", :id => /\d+/, :as => :relation_history
132 resources :old_relations, :path => "/relation/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
134 resources :changesets, :path => "changeset", :id => /\d+/, :only => :show do
135 resource :subscription, :controller => :changeset_subscriptions, :only => [:show, :create, :destroy]
136 namespace :changeset_comments, :as => :comments, :path => :comments do
137 resource :feed, :only => :show, :defaults => { :format => "rss" }
140 get "/changeset/:id/subscribe", :id => /\d+/, :to => redirect(:path => "/changeset/%{id}/subscription")
141 get "/changeset/:id/unsubscribe", :id => /\d+/, :to => redirect(:path => "/changeset/%{id}/subscription")
143 resources :notes, :path => "note", :id => /\d+/, :only => [:show, :new]
145 get "/user/:display_name/history" => "changesets#index"
146 get "/user/:display_name/history/feed" => "changesets#feed", :defaults => { :format => :atom }
147 get "/user/:display_name/notes" => "notes#index", :as => :user_notes
148 get "/history/friends" => "changesets#index", :friends => true, :as => "friend_changesets", :defaults => { :format => :html }
149 get "/history/nearby" => "changesets#index", :nearby => true, :as => "nearby_changesets", :defaults => { :format => :html }
151 get "/browse/way/:id", :to => redirect(:path => "/way/%{id}")
152 get "/browse/way/:id/history", :to => redirect(:path => "/way/%{id}/history")
153 get "/browse/node/:id", :to => redirect(:path => "/node/%{id}")
154 get "/browse/node/:id/history", :to => redirect(:path => "/node/%{id}/history")
155 get "/browse/relation/:id", :to => redirect(:path => "/relation/%{id}")
156 get "/browse/relation/:id/history", :to => redirect(:path => "/relation/%{id}/history")
157 get "/browse/changeset/:id", :to => redirect(:path => "/changeset/%{id}")
158 get "/browse/note/:id", :to => redirect(:path => "/note/%{id}")
159 get "/user/:display_name/edits", :to => redirect(:path => "/user/%{display_name}/history")
160 get "/user/:display_name/edits/feed", :to => redirect(:path => "/user/%{display_name}/history/feed")
161 get "/browse/friends", :to => redirect(:path => "/history/friends")
162 get "/browse/nearby", :to => redirect(:path => "/history/nearby")
163 get "/browse/changesets/feed", :to => redirect(:path => "/history/feed")
164 get "/browse/changesets", :to => redirect(:path => "/history")
165 get "/browse", :to => redirect(:path => "/history")
168 root :to => "site#index", :via => [:get, :post]
169 get "/edit" => "site#edit"
170 get "/copyright/:copyright_locale" => "site#copyright"
171 get "/copyright" => "site#copyright"
172 get "/welcome" => "site#welcome"
173 get "/fixthemap" => "site#fixthemap"
174 get "/help" => "site#help"
175 get "/about/:about_locale" => "site#about"
176 get "/about" => "site#about"
177 get "/communities" => "site#communities"
178 get "/history" => "changesets#index"
179 get "/history/feed" => "changesets#feed", :defaults => { :format => :atom }
181 namespace :changeset_comments, :path => :comments, :as => :changesets_comments do
182 resource :feed, :only => :show, :defaults => { :format => "rss" }
185 get "/export" => "site#export"
186 get "/login" => "sessions#new"
187 post "/login" => "sessions#create"
188 match "/logout" => "sessions#destroy", :via => [:get, :post]
189 get "/offline" => "site#offline"
190 get "/key" => "site#key"
191 get "/id" => "site#id"
192 get "/query" => "browse#query"
193 post "/user/:display_name/confirm/resend" => "confirmations#confirm_resend", :as => :user_confirm_resend
194 match "/user/:display_name/confirm" => "confirmations#confirm", :via => [:get, :post]
195 match "/user/confirm" => "confirmations#confirm", :via => [:get, :post]
196 match "/user/confirm-email" => "confirmations#confirm_email", :via => [:get, :post]
197 post "/user/go_public" => "users#go_public"
198 scope :user, :as => "user" do
199 get "forgot-password" => "passwords#new"
200 post "forgot-password" => "passwords#create"
201 get "reset-password" => "passwords#edit"
202 post "reset-password" => "passwords#update"
204 get "/user/suspended" => "users#suspended"
206 get "/index.html", :to => redirect(:path => "/")
207 get "/create-account.html", :to => redirect(:path => "/user/new")
208 get "/forgot-password.html", :to => redirect(:path => "/user/forgot-password")
211 get "/auth/failure" => "users#auth_failure"
212 match "/auth/:provider/callback" => "users#auth_success", :via => [:get, :post], :as => :auth_success
213 match "/auth/:provider" => "users#auth", :via => [:post, :patch], :as => :auth
216 get "/go/:code" => "site#permalink", :code => /[a-zA-Z0-9_@~]+[=-]*/, :as => :permalink
219 post "/preview/:type" => "site#preview", :as => :preview
222 resources :traces, :id => /\d+/, :except => [:show] do
223 resource :data, :module => :traces, :only => :show
225 get "/user/:display_name/traces/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/traces/tag/%{tag}")
226 get "/user/:display_name/traces/tag/:tag" => "traces#index"
227 get "/user/:display_name/traces/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/traces")
228 get "/user/:display_name/traces" => "traces#index"
229 get "/user/:display_name/traces/:id" => "traces#show", :id => /\d+/, :as => "show_trace"
230 scope "/user/:display_name/traces/:trace_id", :module => :traces, :trace_id => /\d+/ do
231 get "picture" => "pictures#show", :as => "trace_picture"
232 get "icon" => "icons#show", :as => "trace_icon"
234 get "/traces/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/tag/%{tag}")
235 get "/traces/tag/:tag" => "traces#index"
236 get "/traces/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces")
237 get "/traces/mine/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/mine/tag/%{tag}")
238 get "/traces/mine/tag/:tag" => "traces#mine"
239 get "/traces/mine/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/mine")
240 get "/traces/mine" => "traces#mine"
241 get "/trace/create", :to => redirect(:path => "/traces/new")
242 get "/trace/:id/data", :format => false, :id => /\d+/, :to => redirect(:path => "/traces/%{id}/data")
243 get "/trace/:id/data.:format", :id => /\d+/, :to => redirect(:path => "/traces/%{id}/data.%{format}")
244 get "/trace/:id/edit", :id => /\d+/, :to => redirect(:path => "/traces/%{id}/edit")
246 namespace :traces, :path => "" do
247 resource :feed, :path => "(/user/:display_name)/traces(/tag/:tag)/rss", :only => :show, :defaults => { :format => :rss }
251 resources :diary_entries, :path => "diary", :only => [:new, :create, :index] do
253 get "friends" => "diary_entries#index", :friends => true
254 get "nearby" => "diary_entries#index", :nearby => true
257 get "/user/:display_name/diary/rss" => "diary_entries#rss", :defaults => { :format => :rss }
258 get "/diary/:language/rss" => "diary_entries#rss", :defaults => { :format => :rss }
259 get "/diary/rss" => "diary_entries#rss", :defaults => { :format => :rss }
260 get "/user/:display_name/diary" => "diary_entries#index"
261 get "/diary/:language" => "diary_entries#index"
262 scope "/user/:display_name" do
263 resources :diary_entries, :path => "diary", :only => [:edit, :update, :show], :id => /\d+/ do
270 match "/user/:display_name/diary/:id/subscribe" => "diary_entries#subscribe", :via => [:get, :post], :as => :diary_entry_subscribe, :id => /\d+/
271 match "/user/:display_name/diary/:id/unsubscribe" => "diary_entries#unsubscribe", :via => [:get, :post], :as => :diary_entry_unsubscribe, :id => /\d+/
272 post "/user/:display_name/diary/:id/comments" => "diary_comments#create", :id => /\d+/, :as => :comment_diary_entry
273 post "/diary_comments/:comment/hide" => "diary_comments#hide", :comment => /\d+/, :as => :hide_diary_comment
274 post "/diary_comments/:comment/unhide" => "diary_comments#unhide", :comment => /\d+/, :as => :unhide_diary_comment
277 get "/user/terms", :to => redirect(:path => "/account/terms")
278 resources :users, :path => "user", :param => :display_name, :only => [:new, :create, :show] do
279 resource :role, :controller => "user_roles", :path => "roles/:role", :only => [:create, :destroy]
280 scope :module => :users do
281 resources :diary_comments, :only => :index
282 resources :changeset_comments, :only => :index
283 resource :issued_blocks, :path => "blocks_by", :only => :show
284 resource :received_blocks, :path => "blocks", :only => [:show, :edit, :destroy]
285 resource :status, :only => :update
288 get "/user/:display_name/account", :to => redirect(:path => "/account/edit")
289 get "/user/:display_name/diary/comments(/:page)", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/diary_comments")
291 resource :account, :only => [:edit, :update, :destroy] do
292 scope :module => :accounts do
293 resource :terms, :only => [:show, :update]
294 resource :deletion, :only => :show
298 resource :dashboard, :only => [:show]
299 resource :preferences, :only => [:show, :update]
300 get "/preferences/edit", :to => redirect(:path => "/preferences")
301 resource :profile, :only => [:edit, :update]
304 scope "/user/:display_name" do
305 resource :follow, :only => [:create, :destroy, :show], :path => "follow"
307 get "make_friend", :to => redirect("/user/%{display_name}/follow")
308 get "remove_friend", :to => redirect("/user/%{display_name}/follow")
313 resource :list, :path => "(:status)", :only => [:show, :update]
317 get "/search" => "geocoder#search"
318 post "/geocoder/search_latlon" => "geocoder#search_latlon"
319 post "/geocoder/search_osm_nominatim" => "geocoder#search_osm_nominatim"
320 post "/geocoder/search_osm_nominatim_reverse" => "geocoder#search_osm_nominatim_reverse"
323 get "/directions" => "directions#search"
326 post "/export/finish" => "export#finish"
327 get "/export/embed" => "export#embed"
330 resources :messages, :path_names => { :new => "new/:display_name" }, :id => /\d+/, :only => [:new, :create, :show, :destroy] do
331 scope :module => :messages do
332 resource :reply, :path_names => { :new => "new" }, :only => :new
333 resource :read_mark, :only => [:create, :destroy]
334 resource :mute, :only => :destroy
337 namespace :messages, :path => "/messages" do
338 resource :inbox, :only => :show
339 resource :muted_inbox, :path => "muted", :only => :show
340 resource :outbox, :only => :show
342 get "/user/:display_name/inbox", :to => redirect(:path => "/messages/inbox")
343 get "/user/:display_name/outbox", :to => redirect(:path => "/messages/outbox")
344 get "/message/new/:display_name", :to => redirect(:path => "/messages/new/%{display_name}")
345 get "/message/read/:message_id", :to => redirect(:path => "/messages/%{message_id}")
346 get "/messages/:message_id/reply", :to => redirect(:path => "/messages/%{message_id}/reply/new")
349 scope "/user/:display_name" do
350 resource :user_mute, :only => [:create, :destroy], :path => "mute"
352 resources :user_mutes, :only => [:index]
355 resources :user_blocks, :path_names => { :new => "new/:display_name" }
359 resources :comments, :controller => :issue_comments
371 resources :redactions
374 match "/400", :to => "errors#bad_request", :via => :all
375 match "/403", :to => "errors#forbidden", :via => :all
376 match "/404", :to => "errors#not_found", :via => :all
377 match "/500", :to => "errors#internal_server_error", :via => :all