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 put "node/create" => "nodes#create"
34 get "node/:id/ways" => "ways#ways_for_node", :as => :node_ways, :id => /\d+/
35 get "node/:id/relations" => "relations#relations_for_node", :as => :node_relations, :id => /\d+/
36 get "node/:id/history" => "old_nodes#history", :as => :api_node_history, :id => /\d+/
37 post "node/:id/:version/redact" => "old_nodes#redact", :as => :node_version_redact, :version => /\d+/, :id => /\d+/
38 get "node/:id/:version" => "old_nodes#show", :as => :api_old_node, :id => /\d+/, :version => /\d+/
39 get "node/:id" => "nodes#show", :as => :api_node, :id => /\d+/
40 put "node/:id" => "nodes#update", :id => /\d+/
41 delete "node/:id" => "nodes#delete", :id => /\d+/
42 get "nodes" => "nodes#index"
44 put "way/create" => "ways#create"
45 get "way/:id/history" => "old_ways#history", :as => :api_way_history, :id => /\d+/
46 get "way/:id/full" => "ways#full", :as => :way_full, :id => /\d+/
47 get "way/:id/relations" => "relations#relations_for_way", :as => :way_relations, :id => /\d+/
48 post "way/:id/:version/redact" => "old_ways#redact", :as => :way_version_redact, :version => /\d+/, :id => /\d+/
49 get "way/:id/:version" => "old_ways#show", :as => :api_old_way, :id => /\d+/, :version => /\d+/
50 get "way/:id" => "ways#show", :as => :api_way, :id => /\d+/
51 put "way/:id" => "ways#update", :id => /\d+/
52 delete "way/:id" => "ways#delete", :id => /\d+/
53 get "ways" => "ways#index"
55 put "relation/create" => "relations#create"
56 get "relation/:id/relations" => "relations#relations_for_relation", :as => :relation_relations, :id => /\d+/
57 get "relation/:id/history" => "old_relations#history", :as => :api_relation_history, :id => /\d+/
58 get "relation/:id/full" => "relations#full", :as => :relation_full, :id => /\d+/
59 post "relation/:id/:version/redact" => "old_relations#redact", :as => :relation_version_redact, :version => /\d+/, :id => /\d+/
60 get "relation/:id/:version" => "old_relations#show", :as => :api_old_relation, :id => /\d+/, :version => /\d+/
61 get "relation/:id" => "relations#show", :as => :api_relation, :id => /\d+/
62 put "relation/:id" => "relations#update", :id => /\d+/
63 delete "relation/:id" => "relations#delete", :id => /\d+/
64 get "relations" => "relations#index"
66 get "map" => "map#index"
68 get "trackpoints" => "tracepoints#index"
70 get "user/:id" => "users#show", :id => /\d+/, :as => :api_user
71 get "user/details" => "users#details"
72 get "user/gpx_files" => "users#gpx_files"
73 get "users" => "users#index", :as => :api_users
75 resources :user_preferences, :except => [:new, :create, :edit], :param => :preference_key, :path => "user/preferences", :controller => "user_preferences" do
77 put "" => "user_preferences#update_all", :as => ""
81 resources :messages, :path => "user/messages", :constraints => { :id => /\d+/ }, :only => [:create, :show, :destroy], :controller => "messages", :as => :api_messages do
88 post "/user/messages/:id" => "messages#update", :as => :api_message_update
90 post "gpx/create" => "traces#create"
91 get "gpx/:id" => "traces#show", :as => :api_trace, :id => /\d+/
92 put "gpx/:id" => "traces#update", :id => /\d+/
93 delete "gpx/:id" => "traces#destroy", :id => /\d+/
94 get "gpx/:id/details" => "traces#show", :id => /\d+/
95 get "gpx/:id/data" => "traces#data", :as => :api_trace_data
98 namespace :api, :path => "api/0.6" do
100 resources :notes, :except => [:new, :edit, :update], :id => /\d+/, :controller => "notes" do
103 get "feed", :defaults => { :format => "rss" }
112 resource :subscription, :only => [:create, :destroy], :controller => "note_subscriptions"
115 resources :user_blocks, :only => :show, :id => /\d+/, :controller => "user_blocks"
119 get "/way/:id" => "ways#show", :id => /\d+/, :as => :way
120 get "/way/:id/history" => "old_ways#index", :id => /\d+/, :as => :way_history
121 resources :old_ways, :path => "/way/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
122 get "/node/:id" => "nodes#show", :id => /\d+/, :as => :node
123 get "/node/:id/history" => "old_nodes#index", :id => /\d+/, :as => :node_history
124 resources :old_nodes, :path => "/node/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
125 get "/relation/:id" => "relations#show", :id => /\d+/, :as => :relation
126 get "/relation/:id/history" => "old_relations#index", :id => /\d+/, :as => :relation_history
127 resources :old_relations, :path => "/relation/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
128 resources :changesets, :path => "changeset", :id => /\d+/, :only => :show do
129 match :subscribe, :unsubscribe, :on => :member, :via => [:get, :post]
131 namespace :changeset_comments, :as => :comments, :path => :comments do
132 resource :feed, :only => :show, :defaults => { :format => "rss" }
135 resources :notes, :path => "note", :id => /\d+/, :only => [:show, :new]
137 get "/user/:display_name/history" => "changesets#index"
138 get "/user/:display_name/history/feed" => "changesets#feed", :defaults => { :format => :atom }
139 get "/user/:display_name/notes" => "notes#index", :as => :user_notes
140 get "/history/friends" => "changesets#index", :friends => true, :as => "friend_changesets", :defaults => { :format => :html }
141 get "/history/nearby" => "changesets#index", :nearby => true, :as => "nearby_changesets", :defaults => { :format => :html }
143 get "/browse/way/:id", :to => redirect(:path => "/way/%{id}")
144 get "/browse/way/:id/history", :to => redirect(:path => "/way/%{id}/history")
145 get "/browse/node/:id", :to => redirect(:path => "/node/%{id}")
146 get "/browse/node/:id/history", :to => redirect(:path => "/node/%{id}/history")
147 get "/browse/relation/:id", :to => redirect(:path => "/relation/%{id}")
148 get "/browse/relation/:id/history", :to => redirect(:path => "/relation/%{id}/history")
149 get "/browse/changeset/:id", :to => redirect(:path => "/changeset/%{id}")
150 get "/browse/note/:id", :to => redirect(:path => "/note/%{id}")
151 get "/user/:display_name/edits", :to => redirect(:path => "/user/%{display_name}/history")
152 get "/user/:display_name/edits/feed", :to => redirect(:path => "/user/%{display_name}/history/feed")
153 get "/browse/friends", :to => redirect(:path => "/history/friends")
154 get "/browse/nearby", :to => redirect(:path => "/history/nearby")
155 get "/browse/changesets/feed", :to => redirect(:path => "/history/feed")
156 get "/browse/changesets", :to => redirect(:path => "/history")
157 get "/browse", :to => redirect(:path => "/history")
160 root :to => "site#index", :via => [:get, :post]
161 get "/edit" => "site#edit"
162 get "/copyright/:copyright_locale" => "site#copyright"
163 get "/copyright" => "site#copyright"
164 get "/welcome" => "site#welcome"
165 get "/fixthemap" => "site#fixthemap"
166 get "/help" => "site#help"
167 get "/about/:about_locale" => "site#about"
168 get "/about" => "site#about"
169 get "/communities" => "site#communities"
170 get "/history" => "changesets#index"
171 get "/history/feed" => "changesets#feed", :defaults => { :format => :atom }
173 namespace :changeset_comments, :path => :comments, :as => :changesets_comments do
174 resource :feed, :only => :show, :defaults => { :format => "rss" }
177 get "/export" => "site#export"
178 get "/login" => "sessions#new"
179 post "/login" => "sessions#create"
180 match "/logout" => "sessions#destroy", :via => [:get, :post]
181 get "/offline" => "site#offline"
182 get "/key" => "site#key"
183 get "/id" => "site#id"
184 get "/query" => "browse#query"
185 get "/user/new" => "users#new"
186 post "/user/new" => "users#create"
187 get "/user/terms" => "users#terms"
188 post "/user/save" => "users#save"
189 get "/user/:display_name/confirm/resend" => "confirmations#confirm_resend", :as => :user_confirm_resend
190 match "/user/:display_name/confirm" => "confirmations#confirm", :via => [:get, :post]
191 match "/user/confirm" => "confirmations#confirm", :via => [:get, :post]
192 match "/user/confirm-email" => "confirmations#confirm_email", :via => [:get, :post]
193 post "/user/go_public" => "users#go_public"
194 scope :user, :as => "user" do
195 get "forgot-password" => "passwords#new"
196 post "forgot-password" => "passwords#create"
197 get "reset-password" => "passwords#edit"
198 post "reset-password" => "passwords#update"
200 get "/user/suspended" => "users#suspended"
202 get "/index.html", :to => redirect(:path => "/")
203 get "/create-account.html", :to => redirect(:path => "/user/new")
204 get "/forgot-password.html", :to => redirect(:path => "/user/forgot-password")
207 get "/auth/failure" => "users#auth_failure"
208 match "/auth/:provider/callback" => "users#auth_success", :via => [:get, :post], :as => :auth_success
209 match "/auth/:provider" => "users#auth", :via => [:post, :patch], :as => :auth
212 get "/go/:code" => "site#permalink", :code => /[a-zA-Z0-9_@~]+[=-]*/, :as => :permalink
215 post "/preview/:type" => "site#preview", :as => :preview
218 resources :traces, :except => [:show]
219 get "/user/:display_name/traces/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/traces/tag/%{tag}")
220 get "/user/:display_name/traces/tag/:tag" => "traces#index"
221 get "/user/:display_name/traces/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/traces")
222 get "/user/:display_name/traces" => "traces#index"
223 get "/user/:display_name/traces/tag/:tag/rss" => "traces#georss", :defaults => { :format => :rss }
224 get "/user/:display_name/traces/rss" => "traces#georss", :defaults => { :format => :rss }
225 get "/user/:display_name/traces/:id" => "traces#show", :as => "show_trace"
226 scope "/user/:display_name/traces/:trace_id", :module => :traces do
227 get "picture" => "pictures#show", :as => "trace_picture"
228 get "icon" => "icons#show", :as => "trace_icon"
230 get "/traces/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/tag/%{tag}")
231 get "/traces/tag/:tag" => "traces#index"
232 get "/traces/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces")
233 get "/traces/tag/:tag/rss" => "traces#georss", :defaults => { :format => :rss }
234 get "/traces/rss" => "traces#georss", :defaults => { :format => :rss }
235 get "/traces/mine/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/mine/tag/%{tag}")
236 get "/traces/mine/tag/:tag" => "traces#mine"
237 get "/traces/mine/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/mine")
238 get "/traces/mine" => "traces#mine"
239 get "/trace/create", :to => redirect(:path => "/traces/new")
240 get "/trace/:id/data" => "traces#data", :id => /\d+/, :as => "trace_data"
241 get "/trace/:id/edit", :to => redirect(:path => "/traces/%{id}/edit")
244 resources :diary_entries, :path => "diary", :only => [:new, :create, :index] do
246 get "friends" => "diary_entries#index", :friends => true
247 get "nearby" => "diary_entries#index", :nearby => true
250 get "/user/:display_name/diary/rss" => "diary_entries#rss", :defaults => { :format => :rss }
251 get "/diary/:language/rss" => "diary_entries#rss", :defaults => { :format => :rss }
252 get "/diary/rss" => "diary_entries#rss", :defaults => { :format => :rss }
253 get "/user/:display_name/diary/comments/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/diary/comments")
254 get "/user/:display_name/diary/comments" => "diary_comments#index", :as => :diary_comments
255 get "/user/:display_name/diary" => "diary_entries#index"
256 get "/diary/:language" => "diary_entries#index"
257 scope "/user/:display_name" do
258 resources :diary_entries, :path => "diary", :only => [:edit, :update, :show], :id => /\d+/ do
264 match "/user/:display_name/diary/:id/subscribe" => "diary_entries#subscribe", :via => [:get, :post], :as => :diary_entry_subscribe, :id => /\d+/
265 match "/user/:display_name/diary/:id/unsubscribe" => "diary_entries#unsubscribe", :via => [:get, :post], :as => :diary_entry_unsubscribe, :id => /\d+/
266 post "/user/:display_name/diary/:id/comments" => "diary_comments#create", :id => /\d+/, :as => :comment_diary_entry
267 post "/diary_comments/:comment/hide" => "diary_comments#hide", :comment => /\d+/, :as => :hide_diary_comment
268 post "/diary_comments/:comment/unhide" => "diary_comments#unhide", :comment => /\d+/, :as => :unhide_diary_comment
271 resources :users, :path => "user", :param => :display_name, :only => [:show, :destroy] do
272 resource :role, :controller => "user_roles", :path => "roles/:role", :only => [:create, :destroy]
274 get "/user/:display_name/account", :to => redirect(:path => "/account/edit")
275 post "/user/:display_name/set_status" => "users#set_status", :as => :set_status_user
277 resource :account, :only => [:edit, :update, :destroy]
279 namespace :account do
280 resource :deletion, :only => [:show]
282 resource :dashboard, :only => [:show]
283 resource :preferences, :only => [:show, :edit, :update]
284 resource :profile, :only => [:edit, :update]
287 match "/user/:display_name/make_friend" => "friendships#make_friend", :via => [:get, :post], :as => "make_friend"
288 match "/user/:display_name/remove_friend" => "friendships#remove_friend", :via => [:get, :post], :as => "remove_friend"
291 match "/users" => "users#index", :via => [:get, :post]
292 match "/users/:status" => "users#index", :via => [:get, :post]
295 get "/search" => "geocoder#search"
296 post "/geocoder/search_latlon" => "geocoder#search_latlon"
297 post "/geocoder/search_osm_nominatim" => "geocoder#search_osm_nominatim"
298 post "/geocoder/search_osm_nominatim_reverse" => "geocoder#search_osm_nominatim_reverse"
301 get "/directions" => "directions#search"
304 post "/export/finish" => "export#finish"
305 get "/export/embed" => "export#embed"
308 resources :messages, :only => [:create, :show, :destroy] do
312 match :reply, :via => [:get, :post]
319 get "/user/:display_name/inbox", :to => redirect(:path => "/messages/inbox")
320 get "/user/:display_name/outbox", :to => redirect(:path => "/messages/outbox")
321 get "/message/new/:display_name" => "messages#new", :as => "new_message"
322 get "/message/read/:message_id", :to => redirect(:path => "/messages/%{message_id}")
325 scope "/user/:display_name" do
326 resource :user_mute, :only => [:create, :destroy], :path => "mute"
328 resources :user_mutes, :only => [:index]
331 get "/user/:display_name/blocks" => "user_blocks#blocks_on", :as => "user_blocks_on"
332 get "/user/:display_name/blocks_by" => "user_blocks#blocks_by", :as => "user_blocks_by"
333 get "/blocks/new/:display_name" => "user_blocks#new", :as => "new_user_block"
334 resources :user_blocks, :except => :new
335 match "/user/:display_name/blocks/revoke_all" => "user_blocks#revoke_all", :via => [:get, :post], :as => "revoke_all_user_blocks"
339 resources :comments, :controller => :issue_comments
351 resources :redactions
354 match "/400", :to => "errors#bad_request", :via => :all
355 match "/403", :to => "errors#forbidden", :via => :all
356 match "/404", :to => "errors#not_found", :via => :all
357 match "/500", :to => "errors#internal_server_error", :via => :all