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/ways" => "ways#ways_for_node", :as => :node_ways, :id => /\d+/
34 get "node/:id/relations" => "relations#relations_for_node", :as => :node_relations, :id => /\d+/
35 get "node/:id/history" => "old_nodes#history", :as => :api_node_history, :id => /\d+/
36 post "node/:id/:version/redact" => "old_nodes#redact", :as => :node_version_redact, :version => /\d+/, :id => /\d+/
37 get "node/:id/:version" => "old_nodes#show", :as => :api_old_node, :id => /\d+/, :version => /\d+/
39 get "way/:id/history" => "old_ways#history", :as => :api_way_history, :id => /\d+/
40 get "way/:id/relations" => "relations#relations_for_way", :as => :way_relations, :id => /\d+/
41 post "way/:id/:version/redact" => "old_ways#redact", :as => :way_version_redact, :version => /\d+/, :id => /\d+/
42 get "way/:id/:version" => "old_ways#show", :as => :api_old_way, :id => /\d+/, :version => /\d+/
44 get "relation/:id/relations" => "relations#relations_for_relation", :as => :relation_relations, :id => /\d+/
45 get "relation/:id/history" => "old_relations#history", :as => :api_relation_history, :id => /\d+/
46 post "relation/:id/:version/redact" => "old_relations#redact", :as => :relation_version_redact, :version => /\d+/, :id => /\d+/
47 get "relation/:id/:version" => "old_relations#show", :as => :api_old_relation, :id => /\d+/, :version => /\d+/
50 namespace :api, :path => "api/0.6" do
51 resources :nodes, :only => [:index, :create]
52 resources :nodes, :path => "node", :id => /\d+/, :only => [:show, :update, :destroy]
53 put "node/create" => "nodes#create", :as => nil
55 resources :ways, :only => [:index, :create]
56 resources :ways, :path => "way", :id => /\d+/, :only => [:show, :update, :destroy] do
58 get :full, :action => :show, :full => true, :as => nil
61 put "way/create" => "ways#create", :as => nil
63 resources :relations, :only => [:index, :create]
64 resources :relations, :path => "relation", :id => /\d+/, :only => [:show, :update, :destroy] do
66 get :full, :action => :show, :full => true, :as => nil
69 put "relation/create" => "relations#create", :as => nil
71 resource :map, :only => :show
73 resources :tracepoints, :path => "trackpoints", :only => :index
75 resources :users, :only => :index
76 resources :users, :path => "user", :id => /\d+/, :only => :show
77 resources :user_traces, :path => "user/gpx_files", :module => :users, :controller => :traces, :only => :index
78 get "user/details" => "users#details"
80 resources :user_preferences, :except => [:new, :create, :edit], :param => :preference_key, :path => "user/preferences" do
82 put "" => "user_preferences#update_all", :as => ""
86 resources :messages, :path => "user/messages", :constraints => { :id => /\d+/ }, :only => [:create, :show, :update, :destroy]
87 namespace :messages, :path => "user/messages" do
88 resource :inbox, :only => :show
89 resource :outbox, :only => :show
91 post "/user/messages/:id" => "messages#update", :as => nil
93 resources :traces, :path => "gpx", :only => [:create, :show, :update, :destroy], :id => /\d+/ do
94 scope :module => :traces do
95 resource :data, :only => :show
98 post "gpx/create" => "traces#create", :id => /\d+/, :as => :trace_create
99 get "gpx/:id/details" => "traces#show", :id => /\d+/, :as => :trace_details
102 resources :notes, :except => [:new, :edit, :update], :id => /\d+/, :controller => "notes" do
105 get "feed", :defaults => { :format => "rss" }
114 resource :subscription, :only => [:create, :destroy], :controller => "note_subscriptions"
117 resources :user_blocks, :only => :show, :id => /\d+/, :controller => "user_blocks"
121 get "/way/:id" => "ways#show", :id => /\d+/, :as => :way
122 get "/way/:id/history" => "old_ways#index", :id => /\d+/, :as => :way_history
123 resources :old_ways, :path => "/way/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
124 get "/node/:id" => "nodes#show", :id => /\d+/, :as => :node
125 get "/node/:id/history" => "old_nodes#index", :id => /\d+/, :as => :node_history
126 resources :old_nodes, :path => "/node/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
127 get "/relation/:id" => "relations#show", :id => /\d+/, :as => :relation
128 get "/relation/:id/history" => "old_relations#index", :id => /\d+/, :as => :relation_history
129 resources :old_relations, :path => "/relation/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
131 resources :changesets, :path => "changeset", :id => /\d+/, :only => :show do
132 resource :subscription, :controller => :changeset_subscriptions, :only => [:show, :create, :destroy]
133 namespace :changeset_comments, :as => :comments, :path => :comments do
134 resource :feed, :only => :show, :defaults => { :format => "rss" }
137 get "/changeset/:id/subscribe", :id => /\d+/, :to => redirect(:path => "/changeset/%{id}/subscription")
138 get "/changeset/:id/unsubscribe", :id => /\d+/, :to => redirect(:path => "/changeset/%{id}/subscription")
140 resources :notes, :path => "note", :id => /\d+/, :only => [:show, :new]
142 get "/user/:display_name/history" => "changesets#index"
143 get "/user/:display_name/history/feed" => "changesets#feed", :defaults => { :format => :atom }
144 get "/user/:display_name/notes" => "notes#index", :as => :user_notes
145 get "/history/friends" => "changesets#index", :friends => true, :as => "friend_changesets", :defaults => { :format => :html }
146 get "/history/nearby" => "changesets#index", :nearby => true, :as => "nearby_changesets", :defaults => { :format => :html }
148 get "/browse/way/:id", :to => redirect(:path => "/way/%{id}")
149 get "/browse/way/:id/history", :to => redirect(:path => "/way/%{id}/history")
150 get "/browse/node/:id", :to => redirect(:path => "/node/%{id}")
151 get "/browse/node/:id/history", :to => redirect(:path => "/node/%{id}/history")
152 get "/browse/relation/:id", :to => redirect(:path => "/relation/%{id}")
153 get "/browse/relation/:id/history", :to => redirect(:path => "/relation/%{id}/history")
154 get "/browse/changeset/:id", :to => redirect(:path => "/changeset/%{id}")
155 get "/browse/note/:id", :to => redirect(:path => "/note/%{id}")
156 get "/user/:display_name/edits", :to => redirect(:path => "/user/%{display_name}/history")
157 get "/user/:display_name/edits/feed", :to => redirect(:path => "/user/%{display_name}/history/feed")
158 get "/browse/friends", :to => redirect(:path => "/history/friends")
159 get "/browse/nearby", :to => redirect(:path => "/history/nearby")
160 get "/browse/changesets/feed", :to => redirect(:path => "/history/feed")
161 get "/browse/changesets", :to => redirect(:path => "/history")
162 get "/browse", :to => redirect(:path => "/history")
165 root :to => "site#index", :via => [:get, :post]
166 get "/edit" => "site#edit"
167 get "/copyright/:copyright_locale" => "site#copyright"
168 get "/copyright" => "site#copyright"
169 get "/welcome" => "site#welcome"
170 get "/fixthemap" => "site#fixthemap"
171 get "/help" => "site#help"
172 get "/about/:about_locale" => "site#about"
173 get "/about" => "site#about"
174 get "/communities" => "site#communities"
175 get "/history" => "changesets#index"
176 get "/history/feed" => "changesets#feed", :defaults => { :format => :atom }
178 namespace :changeset_comments, :path => :comments, :as => :changesets_comments do
179 resource :feed, :only => :show, :defaults => { :format => "rss" }
182 get "/export" => "site#export"
183 get "/login" => "sessions#new"
184 post "/login" => "sessions#create"
185 match "/logout" => "sessions#destroy", :via => [:get, :post]
186 get "/offline" => "site#offline"
187 get "/key" => "site#key"
188 get "/id" => "site#id"
189 get "/query" => "browse#query"
190 post "/user/:display_name/confirm/resend" => "confirmations#confirm_resend", :as => :user_confirm_resend
191 match "/user/:display_name/confirm" => "confirmations#confirm", :via => [:get, :post]
192 match "/user/confirm" => "confirmations#confirm", :via => [:get, :post]
193 match "/user/confirm-email" => "confirmations#confirm_email", :via => [:get, :post]
194 post "/user/go_public" => "users#go_public"
195 scope :user, :as => "user" do
196 get "forgot-password" => "passwords#new"
197 post "forgot-password" => "passwords#create"
198 get "reset-password" => "passwords#edit"
199 post "reset-password" => "passwords#update"
201 get "/user/suspended" => "users#suspended"
203 get "/index.html", :to => redirect(:path => "/")
204 get "/create-account.html", :to => redirect(:path => "/user/new")
205 get "/forgot-password.html", :to => redirect(:path => "/user/forgot-password")
208 get "/auth/failure" => "users#auth_failure"
209 match "/auth/:provider/callback" => "users#auth_success", :via => [:get, :post], :as => :auth_success
210 match "/auth/:provider" => "users#auth", :via => [:post, :patch], :as => :auth
213 get "/go/:code" => "site#permalink", :code => /[a-zA-Z0-9_@~]+[=-]*/, :as => :permalink
216 post "/preview/:type" => "site#preview", :as => :preview
219 resources :traces, :id => /\d+/, :except => [:show] do
220 resource :data, :module => :traces, :only => :show
222 get "/user/:display_name/traces/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/traces/tag/%{tag}")
223 get "/user/:display_name/traces/tag/:tag" => "traces#index"
224 get "/user/:display_name/traces/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/traces")
225 get "/user/:display_name/traces" => "traces#index"
226 get "/user/:display_name/traces/:id" => "traces#show", :id => /\d+/, :as => "show_trace"
227 scope "/user/:display_name/traces/:trace_id", :module => :traces, :trace_id => /\d+/ do
228 get "picture" => "pictures#show", :as => "trace_picture"
229 get "icon" => "icons#show", :as => "trace_icon"
231 get "/traces/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/tag/%{tag}")
232 get "/traces/tag/:tag" => "traces#index"
233 get "/traces/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces")
234 get "/traces/mine/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/mine/tag/%{tag}")
235 get "/traces/mine/tag/:tag" => "traces#mine"
236 get "/traces/mine/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/mine")
237 get "/traces/mine" => "traces#mine"
238 get "/trace/create", :to => redirect(:path => "/traces/new")
239 get "/trace/:id/data", :format => false, :id => /\d+/, :to => redirect(:path => "/traces/%{id}/data")
240 get "/trace/:id/data.:format", :id => /\d+/, :to => redirect(:path => "/traces/%{id}/data.%{format}")
241 get "/trace/:id/edit", :id => /\d+/, :to => redirect(:path => "/traces/%{id}/edit")
243 namespace :traces, :path => "" do
244 resource :feed, :path => "(/user/:display_name)/traces(/tag/:tag)/rss", :only => :show, :defaults => { :format => :rss }
248 resources :diary_entries, :path => "diary", :only => [:new, :create, :index] do
250 get "friends" => "diary_entries#index", :friends => true
251 get "nearby" => "diary_entries#index", :nearby => true
254 get "/user/:display_name/diary/rss" => "diary_entries#rss", :defaults => { :format => :rss }
255 get "/diary/:language/rss" => "diary_entries#rss", :defaults => { :format => :rss }
256 get "/diary/rss" => "diary_entries#rss", :defaults => { :format => :rss }
257 get "/user/:display_name/diary" => "diary_entries#index"
258 get "/diary/:language" => "diary_entries#index"
259 scope "/user/:display_name" do
260 resources :diary_entries, :path => "diary", :only => [:edit, :update, :show], :id => /\d+/ do
267 match "/user/:display_name/diary/:id/subscribe" => "diary_entries#subscribe", :via => [:get, :post], :as => :diary_entry_subscribe, :id => /\d+/
268 match "/user/:display_name/diary/:id/unsubscribe" => "diary_entries#unsubscribe", :via => [:get, :post], :as => :diary_entry_unsubscribe, :id => /\d+/
269 post "/user/:display_name/diary/:id/comments" => "diary_comments#create", :id => /\d+/, :as => :comment_diary_entry
270 post "/diary_comments/:comment/hide" => "diary_comments#hide", :comment => /\d+/, :as => :hide_diary_comment
271 post "/diary_comments/:comment/unhide" => "diary_comments#unhide", :comment => /\d+/, :as => :unhide_diary_comment
274 get "/user/terms", :to => redirect(:path => "/account/terms")
275 resources :users, :path => "user", :param => :display_name, :only => [:new, :create, :show] do
276 resource :role, :controller => "user_roles", :path => "roles/:role", :only => [:create, :destroy]
277 scope :module => :users do
278 resources :diary_comments, :only => :index
279 resources :changeset_comments, :only => :index
280 resource :issued_blocks, :path => "blocks_by", :only => :show
281 resource :received_blocks, :path => "blocks", :only => [:show, :edit, :destroy]
282 resource :status, :only => :update
285 get "/user/:display_name/account", :to => redirect(:path => "/account/edit")
286 get "/user/:display_name/diary/comments(/:page)", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/diary_comments")
288 resource :account, :only => [:edit, :update, :destroy] do
289 scope :module => :accounts do
290 resource :terms, :only => [:show, :update]
291 resource :deletion, :only => :show
295 resource :dashboard, :only => [:show]
296 resource :preferences, :only => [:show, :update]
297 get "/preferences/edit", :to => redirect(:path => "/preferences")
298 resource :profile, :only => [:edit, :update]
301 scope "/user/:display_name" do
302 resource :follow, :only => [:create, :destroy, :show], :path => "follow"
304 get "make_friend", :to => redirect("/user/%{display_name}/follow")
305 get "remove_friend", :to => redirect("/user/%{display_name}/follow")
310 resource :list, :path => "(:status)", :only => [:show, :update]
314 get "/search" => "geocoder#search"
315 post "/geocoder/search_latlon" => "geocoder#search_latlon"
316 post "/geocoder/search_osm_nominatim" => "geocoder#search_osm_nominatim"
317 post "/geocoder/search_osm_nominatim_reverse" => "geocoder#search_osm_nominatim_reverse"
320 get "/directions" => "directions#search"
323 post "/export/finish" => "export#finish"
324 get "/export/embed" => "export#embed"
327 resources :messages, :path_names => { :new => "new/:display_name" }, :id => /\d+/, :only => [:new, :create, :show, :destroy] do
328 scope :module => :messages do
329 resource :reply, :path_names => { :new => "new" }, :only => :new
330 resource :read_mark, :only => [:create, :destroy]
331 resource :mute, :only => :destroy
334 namespace :messages, :path => "/messages" do
335 resource :inbox, :only => :show
336 resource :muted_inbox, :path => "muted", :only => :show
337 resource :outbox, :only => :show
339 get "/user/:display_name/inbox", :to => redirect(:path => "/messages/inbox")
340 get "/user/:display_name/outbox", :to => redirect(:path => "/messages/outbox")
341 get "/message/new/:display_name", :to => redirect(:path => "/messages/new/%{display_name}")
342 get "/message/read/:message_id", :to => redirect(:path => "/messages/%{message_id}")
343 get "/messages/:message_id/reply", :to => redirect(:path => "/messages/%{message_id}/reply/new")
346 scope "/user/:display_name" do
347 resource :user_mute, :only => [:create, :destroy], :path => "mute"
349 resources :user_mutes, :only => [:index]
352 resources :user_blocks, :path_names => { :new => "new/:display_name" }
356 resources :comments, :controller => :issue_comments
368 resources :redactions
371 match "/400", :to => "errors#bad_request", :via => :all
372 match "/403", :to => "errors#forbidden", :via => :all
373 match "/404", :to => "errors#not_found", :via => :all
374 match "/500", :to => "errors#internal_server_error", :via => :all