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" }
113 resources :user_blocks, :only => :show, :id => /\d+/, :controller => "user_blocks"
117 get "/way/:id" => "ways#show", :id => /\d+/, :as => :way
118 get "/way/:id/history" => "old_ways#index", :id => /\d+/, :as => :way_history
119 resources :old_ways, :path => "/way/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
120 get "/node/:id" => "nodes#show", :id => /\d+/, :as => :node
121 get "/node/:id/history" => "old_nodes#index", :id => /\d+/, :as => :node_history
122 resources :old_nodes, :path => "/node/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
123 get "/relation/:id" => "relations#show", :id => /\d+/, :as => :relation
124 get "/relation/:id/history" => "old_relations#index", :id => /\d+/, :as => :relation_history
125 resources :old_relations, :path => "/relation/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
126 resources :changesets, :path => "changeset", :id => /\d+/, :only => :show do
127 match :subscribe, :unsubscribe, :on => :member, :via => [:get, :post]
129 namespace :changeset_comments, :as => :comments, :path => :comments do
130 resource :feed, :only => :show, :defaults => { :format => "rss" }
133 resources :notes, :path => "note", :id => /\d+/, :only => [:show, :new]
135 get "/user/:display_name/history" => "changesets#index"
136 get "/user/:display_name/history/feed" => "changesets#feed", :defaults => { :format => :atom }
137 get "/user/:display_name/notes" => "notes#index", :as => :user_notes
138 get "/history/friends" => "changesets#index", :friends => true, :as => "friend_changesets", :defaults => { :format => :html }
139 get "/history/nearby" => "changesets#index", :nearby => true, :as => "nearby_changesets", :defaults => { :format => :html }
141 get "/browse/way/:id", :to => redirect(:path => "/way/%{id}")
142 get "/browse/way/:id/history", :to => redirect(:path => "/way/%{id}/history")
143 get "/browse/node/:id", :to => redirect(:path => "/node/%{id}")
144 get "/browse/node/:id/history", :to => redirect(:path => "/node/%{id}/history")
145 get "/browse/relation/:id", :to => redirect(:path => "/relation/%{id}")
146 get "/browse/relation/:id/history", :to => redirect(:path => "/relation/%{id}/history")
147 get "/browse/changeset/:id", :to => redirect(:path => "/changeset/%{id}")
148 get "/browse/note/:id", :to => redirect(:path => "/note/%{id}")
149 get "/user/:display_name/edits", :to => redirect(:path => "/user/%{display_name}/history")
150 get "/user/:display_name/edits/feed", :to => redirect(:path => "/user/%{display_name}/history/feed")
151 get "/browse/friends", :to => redirect(:path => "/history/friends")
152 get "/browse/nearby", :to => redirect(:path => "/history/nearby")
153 get "/browse/changesets/feed", :to => redirect(:path => "/history/feed")
154 get "/browse/changesets", :to => redirect(:path => "/history")
155 get "/browse", :to => redirect(:path => "/history")
158 root :to => "site#index", :via => [:get, :post]
159 get "/edit" => "site#edit"
160 get "/copyright/:copyright_locale" => "site#copyright"
161 get "/copyright" => "site#copyright"
162 get "/welcome" => "site#welcome"
163 get "/fixthemap" => "site#fixthemap"
164 get "/help" => "site#help"
165 get "/about/:about_locale" => "site#about"
166 get "/about" => "site#about"
167 get "/communities" => "site#communities"
168 get "/history" => "changesets#index"
169 get "/history/feed" => "changesets#feed", :defaults => { :format => :atom }
171 namespace :changeset_comments, :path => :comments, :as => :changesets_comments do
172 resource :feed, :only => :show, :defaults => { :format => "rss" }
175 get "/export" => "site#export"
176 get "/login" => "sessions#new"
177 post "/login" => "sessions#create"
178 match "/logout" => "sessions#destroy", :via => [:get, :post]
179 get "/offline" => "site#offline"
180 get "/key" => "site#key"
181 get "/id" => "site#id"
182 get "/query" => "browse#query"
183 get "/user/new" => "users#new"
184 post "/user/new" => "users#create"
185 get "/user/terms" => "users#terms"
186 post "/user/save" => "users#save"
187 get "/user/:display_name/confirm/resend" => "confirmations#confirm_resend", :as => :user_confirm_resend
188 match "/user/:display_name/confirm" => "confirmations#confirm", :via => [:get, :post]
189 match "/user/confirm" => "confirmations#confirm", :via => [:get, :post]
190 match "/user/confirm-email" => "confirmations#confirm_email", :via => [:get, :post]
191 post "/user/go_public" => "users#go_public"
192 scope :user, :as => "user" do
193 get "forgot-password" => "passwords#new"
194 post "forgot-password" => "passwords#create"
195 get "reset-password" => "passwords#edit"
196 post "reset-password" => "passwords#update"
198 get "/user/suspended" => "users#suspended"
200 get "/index.html", :to => redirect(:path => "/")
201 get "/create-account.html", :to => redirect(:path => "/user/new")
202 get "/forgot-password.html", :to => redirect(:path => "/user/forgot-password")
205 get "/auth/failure" => "users#auth_failure"
206 match "/auth/:provider/callback" => "users#auth_success", :via => [:get, :post], :as => :auth_success
207 match "/auth/:provider" => "users#auth", :via => [:post, :patch], :as => :auth
210 get "/go/:code" => "site#permalink", :code => /[a-zA-Z0-9_@~]+[=-]*/, :as => :permalink
213 post "/preview/:type" => "site#preview", :as => :preview
216 resources :traces, :except => [:show]
217 get "/user/:display_name/traces/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/traces/tag/%{tag}")
218 get "/user/:display_name/traces/tag/:tag" => "traces#index"
219 get "/user/:display_name/traces/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/traces")
220 get "/user/:display_name/traces" => "traces#index"
221 get "/user/:display_name/traces/tag/:tag/rss" => "traces#georss", :defaults => { :format => :rss }
222 get "/user/:display_name/traces/rss" => "traces#georss", :defaults => { :format => :rss }
223 get "/user/:display_name/traces/:id" => "traces#show", :as => "show_trace"
224 scope "/user/:display_name/traces/:trace_id", :module => :traces do
225 get "picture" => "pictures#show", :as => "trace_picture"
226 get "icon" => "icons#show", :as => "trace_icon"
228 get "/traces/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/tag/%{tag}")
229 get "/traces/tag/:tag" => "traces#index"
230 get "/traces/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces")
231 get "/traces/tag/:tag/rss" => "traces#georss", :defaults => { :format => :rss }
232 get "/traces/rss" => "traces#georss", :defaults => { :format => :rss }
233 get "/traces/mine/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/mine/tag/%{tag}")
234 get "/traces/mine/tag/:tag" => "traces#mine"
235 get "/traces/mine/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/mine")
236 get "/traces/mine" => "traces#mine"
237 get "/trace/create", :to => redirect(:path => "/traces/new")
238 get "/trace/:id/data" => "traces#data", :id => /\d+/, :as => "trace_data"
239 get "/trace/:id/edit", :to => redirect(:path => "/traces/%{id}/edit")
242 resources :diary_entries, :path => "diary", :only => [:new, :create, :index] do
244 get "friends" => "diary_entries#index", :friends => true
245 get "nearby" => "diary_entries#index", :nearby => true
248 get "/user/:display_name/diary/rss" => "diary_entries#rss", :defaults => { :format => :rss }
249 get "/diary/:language/rss" => "diary_entries#rss", :defaults => { :format => :rss }
250 get "/diary/rss" => "diary_entries#rss", :defaults => { :format => :rss }
251 get "/user/:display_name/diary/comments/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/diary/comments")
252 get "/user/:display_name/diary/comments" => "diary_comments#index", :as => :diary_comments
253 get "/user/:display_name/diary" => "diary_entries#index"
254 get "/diary/:language" => "diary_entries#index"
255 scope "/user/:display_name" do
256 resources :diary_entries, :path => "diary", :only => [:edit, :update, :show], :id => /\d+/ do
262 match "/user/:display_name/diary/:id/subscribe" => "diary_entries#subscribe", :via => [:get, :post], :as => :diary_entry_subscribe, :id => /\d+/
263 match "/user/:display_name/diary/:id/unsubscribe" => "diary_entries#unsubscribe", :via => [:get, :post], :as => :diary_entry_unsubscribe, :id => /\d+/
264 post "/user/:display_name/diary/:id/comments" => "diary_comments#create", :id => /\d+/, :as => :comment_diary_entry
265 post "/diary_comments/:comment/hide" => "diary_comments#hide", :comment => /\d+/, :as => :hide_diary_comment
266 post "/diary_comments/:comment/unhide" => "diary_comments#unhide", :comment => /\d+/, :as => :unhide_diary_comment
269 resources :users, :path => "user", :param => :display_name, :only => [:show, :destroy]
270 get "/user/:display_name/account", :to => redirect(:path => "/account/edit")
271 post "/user/:display_name/set_status" => "users#set_status", :as => :set_status_user
273 resource :account, :only => [:edit, :update, :destroy]
275 namespace :account do
276 resource :deletion, :only => [:show]
278 resource :dashboard, :only => [:show]
279 resource :preferences, :only => [:show, :edit, :update]
280 resource :profile, :only => [:edit, :update]
283 match "/user/:display_name/make_friend" => "friendships#make_friend", :via => [:get, :post], :as => "make_friend"
284 match "/user/:display_name/remove_friend" => "friendships#remove_friend", :via => [:get, :post], :as => "remove_friend"
287 match "/users" => "users#index", :via => [:get, :post]
288 match "/users/:status" => "users#index", :via => [:get, :post]
291 get "/search" => "geocoder#search"
292 post "/geocoder/search_latlon" => "geocoder#search_latlon"
293 post "/geocoder/search_osm_nominatim" => "geocoder#search_osm_nominatim"
294 post "/geocoder/search_osm_nominatim_reverse" => "geocoder#search_osm_nominatim_reverse"
297 get "/directions" => "directions#search"
300 post "/export/finish" => "export#finish"
301 get "/export/embed" => "export#embed"
304 resources :messages, :only => [:create, :show, :destroy] do
308 match :reply, :via => [:get, :post]
315 get "/user/:display_name/inbox", :to => redirect(:path => "/messages/inbox")
316 get "/user/:display_name/outbox", :to => redirect(:path => "/messages/outbox")
317 get "/message/new/:display_name" => "messages#new", :as => "new_message"
318 get "/message/read/:message_id", :to => redirect(:path => "/messages/%{message_id}")
321 scope "/user/:display_name" do
322 resource :user_mute, :only => [:create, :destroy], :path => "mute"
324 resources :user_mutes, :only => [:index]
326 # roles and banning pages
327 post "/user/:display_name/role/:role/grant" => "user_roles#grant", :as => "grant_role"
328 post "/user/:display_name/role/:role/revoke" => "user_roles#revoke", :as => "revoke_role"
329 get "/user/:display_name/blocks" => "user_blocks#blocks_on", :as => "user_blocks_on"
330 get "/user/:display_name/blocks_by" => "user_blocks#blocks_by", :as => "user_blocks_by"
331 get "/blocks/new/:display_name" => "user_blocks#new", :as => "new_user_block"
332 resources :user_blocks, :except => :new
333 match "/user/:display_name/blocks/revoke_all" => "user_blocks#revoke_all", :via => [:get, :post], :as => "revoke_all_user_blocks"
337 resources :comments, :controller => :issue_comments
349 resources :redactions
352 match "/400", :to => "errors#bad_request", :via => :all
353 match "/403", :to => "errors#forbidden", :via => :all
354 match "/404", :to => "errors#not_found", :via => :all
355 match "/500", :to => "errors#internal_server_error", :via => :all