1 OpenStreetMap::Application.routes.draw do
 
   3   match "api/capabilities" => "api#capabilities", :via => :get
 
   4   match "api/0.6/capabilities" => "api#capabilities", :via => :get
 
   5   match "api/0.6/permissions" => "api#permissions", :via => :get
 
   7   match "api/0.6/changeset/create" => "changeset#create", :via => :put
 
   8   match "api/0.6/changeset/:id/upload" => "changeset#upload", :via => :post, :id => /\d+/
 
   9   match "api/0.6/changeset/:id/download" => "changeset#download", :via => :get, :as => :changeset_download, :id => /\d+/
 
  10   match "api/0.6/changeset/:id/expand_bbox" => "changeset#expand_bbox", :via => :post, :id => /\d+/
 
  11   match "api/0.6/changeset/:id" => "changeset#read", :via => :get, :as => :changeset_read, :id => /\d+/
 
  12   match "api/0.6/changeset/:id/subscribe" => "changeset#subscribe", :via => :post, :as => :changeset_subscribe, :id => /\d+/
 
  13   match "api/0.6/changeset/:id/unsubscribe" => "changeset#unsubscribe", :via => :post, :as => :changeset_unsubscribe, :id => /\d+/
 
  14   match "api/0.6/changeset/:id" => "changeset#update", :via => :put, :id => /\d+/
 
  15   match "api/0.6/changeset/:id/close" => "changeset#close", :via => :put, :id => /\d+/
 
  16   match "api/0.6/changesets" => "changeset#query", :via => :get
 
  17   post "api/0.6/changeset/:id/comment" => "changeset#comment", :as => :changeset_comment, :id => /\d+/
 
  18   post "api/0.6/changeset/comment/:id/hide" => "changeset#hide_comment", :as => :changeset_comment_hide, :id => /\d+/
 
  19   post "api/0.6/changeset/comment/:id/unhide" => "changeset#unhide_comment", :as => :changeset_comment_unhide, :id => /\d+/
 
  21   match "api/0.6/node/create" => "node#create", :via => :put
 
  22   match "api/0.6/node/:id/ways" => "way#ways_for_node", :via => :get, :id => /\d+/
 
  23   match "api/0.6/node/:id/relations" => "relation#relations_for_node", :via => :get, :id => /\d+/
 
  24   match "api/0.6/node/:id/history" => "old_node#history", :via => :get, :id => /\d+/
 
  25   match "api/0.6/node/:id/:version/redact" => "old_node#redact", :via => :post, :version => /\d+/, :id => /\d+/
 
  26   match "api/0.6/node/:id/:version" => "old_node#version", :via => :get, :id => /\d+/, :version => /\d+/
 
  27   match "api/0.6/node/:id" => "node#read", :via => :get, :id => /\d+/
 
  28   match "api/0.6/node/:id" => "node#update", :via => :put, :id => /\d+/
 
  29   match "api/0.6/node/:id" => "node#delete", :via => :delete, :id => /\d+/
 
  30   match "api/0.6/nodes" => "node#nodes", :via => :get
 
  32   match "api/0.6/way/create" => "way#create", :via => :put
 
  33   match "api/0.6/way/:id/history" => "old_way#history", :via => :get, :id => /\d+/
 
  34   match "api/0.6/way/:id/full" => "way#full", :via => :get, :id => /\d+/
 
  35   match "api/0.6/way/:id/relations" => "relation#relations_for_way", :via => :get, :id => /\d+/
 
  36   match "api/0.6/way/:id/:version/redact" => "old_way#redact", :via => :post, :version => /\d+/, :id => /\d+/
 
  37   match "api/0.6/way/:id/:version" => "old_way#version", :via => :get, :id => /\d+/, :version => /\d+/
 
  38   match "api/0.6/way/:id" => "way#read", :via => :get, :id => /\d+/
 
  39   match "api/0.6/way/:id" => "way#update", :via => :put, :id => /\d+/
 
  40   match "api/0.6/way/:id" => "way#delete", :via => :delete, :id => /\d+/
 
  41   match "api/0.6/ways" => "way#ways", :via => :get
 
  43   match "api/0.6/relation/create" => "relation#create", :via => :put
 
  44   match "api/0.6/relation/:id/relations" => "relation#relations_for_relation", :via => :get, :id => /\d+/
 
  45   match "api/0.6/relation/:id/history" => "old_relation#history", :via => :get, :id => /\d+/
 
  46   match "api/0.6/relation/:id/full" => "relation#full", :via => :get, :id => /\d+/
 
  47   match "api/0.6/relation/:id/:version/redact" => "old_relation#redact", :via => :post, :version => /\d+/, :id => /\d+/
 
  48   match "api/0.6/relation/:id/:version" => "old_relation#version", :via => :get, :id => /\d+/, :version => /\d+/
 
  49   match "api/0.6/relation/:id" => "relation#read", :via => :get, :id => /\d+/
 
  50   match "api/0.6/relation/:id" => "relation#update", :via => :put, :id => /\d+/
 
  51   match "api/0.6/relation/:id" => "relation#delete", :via => :delete, :id => /\d+/
 
  52   match "api/0.6/relations" => "relation#relations", :via => :get
 
  54   match "api/0.6/map" => "api#map", :via => :get
 
  56   match "api/0.6/trackpoints" => "api#trackpoints", :via => :get
 
  58   match "api/0.6/changes" => "api#changes", :via => :get
 
  60   match "api/0.6/search" => "search#search_all", :via => :get
 
  61   match "api/0.6/ways/search" => "search#search_ways", :via => :get
 
  62   match "api/0.6/relations/search" => "search#search_relations", :via => :get
 
  63   match "api/0.6/nodes/search" => "search#search_nodes", :via => :get
 
  65   match "api/0.6/user/:id" => "user#api_read", :via => :get, :id => /\d+/
 
  66   match "api/0.6/user/details" => "user#api_details", :via => :get
 
  67   match "api/0.6/user/gpx_files" => "user#api_gpx_files", :via => :get
 
  69   match "api/0.6/user/preferences" => "user_preference#read", :via => :get
 
  70   match "api/0.6/user/preferences/:preference_key" => "user_preference#read_one", :via => :get
 
  71   match "api/0.6/user/preferences" => "user_preference#update", :via => :put
 
  72   match "api/0.6/user/preferences/:preference_key" => "user_preference#update_one", :via => :put
 
  73   match "api/0.6/user/preferences/:preference_key" => "user_preference#delete_one", :via => :delete
 
  75   match "api/0.6/gpx/create" => "trace#api_create", :via => :post
 
  76   match "api/0.6/gpx/:id" => "trace#api_read", :via => :get, :id => /\d+/
 
  77   match "api/0.6/gpx/:id" => "trace#api_update", :via => :put, :id => /\d+/
 
  78   match "api/0.6/gpx/:id" => "trace#api_delete", :via => :delete, :id => /\d+/
 
  79   match "api/0.6/gpx/:id/details" => "trace#api_read", :via => :get, :id => /\d+/
 
  80   match "api/0.6/gpx/:id/data" => "trace#api_data", :via => :get
 
  82   # AMF (ActionScript) API
 
  83   match "api/0.6/amf/read" => "amf#amf_read", :via => :post
 
  84   match "api/0.6/amf/write" => "amf#amf_write", :via => :post
 
  85   match "api/0.6/swf/trackpoints" => "swf#trackpoints", :via => :get
 
  89     resources :notes, :except => [:new, :edit, :update], :constraints => { :id => /\d+/ }, :defaults => { :format => "xml" } do
 
  92         get "feed", :defaults => { :format => "rss" }
 
 102     match "notes/addPOIexec" => "notes#create", :via => :post
 
 103     match "notes/closePOIexec" => "notes#close", :via => :post
 
 104     match "notes/editPOIexec" => "notes#comment", :via => :post
 
 105     match "notes/getGPX" => "notes#index", :via => :get, :format => "gpx"
 
 106     match "notes/getRSSfeed" => "notes#feed", :via => :get, :format => "rss"
 
 110   match "/way/:id" => "browse#way", :via => :get, :id => /\d+/, :as => :way
 
 111   match "/way/:id/history" => "browse#way_history", :via => :get, :id => /\d+/
 
 112   match "/node/:id" => "browse#node", :via => :get, :id => /\d+/, :as => :node
 
 113   match "/node/:id/history" => "browse#node_history", :via => :get, :id => /\d+/
 
 114   match "/relation/:id" => "browse#relation", :via => :get, :id => /\d+/, :as => :relation
 
 115   match "/relation/:id/history" => "browse#relation_history", :via => :get, :id => /\d+/
 
 116   match "/changeset/:id" => "browse#changeset", :via => :get, :as => :changeset, :id => /\d+/
 
 117   match "/changeset/:id/comments/feed" => "changeset#comments_feed", :via => :get, :as => :changeset_comments_feed, :id => /\d*/, :defaults => { :format => "rss" }
 
 118   match "/note/:id" => "browse#note", :via => :get, :id => /\d+/, :as => "browse_note"
 
 119   match "/note/new" => "browse#new_note", :via => :get
 
 120   match "/user/:display_name/history" => "changeset#list", :via => :get
 
 121   match "/user/:display_name/history/feed" => "changeset#feed", :via => :get, :defaults => { :format => :atom }
 
 122   match "/user/:display_name/notes" => "notes#mine", :via => :get
 
 123   match "/history/friends" => "changeset#list", :via => :get, :friends => true, :as => "friend_changesets", :defaults => { :format => :html }
 
 124   match "/history/nearby" => "changeset#list", :via => :get, :nearby => true, :as => "nearby_changesets", :defaults => { :format => :html }
 
 126   get "/browse/way/:id",                :to => redirect(:path => "/way/%{id}")
 
 127   get "/browse/way/:id/history",        :to => redirect(:path => "/way/%{id}/history")
 
 128   get "/browse/node/:id",               :to => redirect(:path => "/node/%{id}")
 
 129   get "/browse/node/:id/history",       :to => redirect(:path => "/node/%{id}/history")
 
 130   get "/browse/relation/:id",           :to => redirect(:path => "/relation/%{id}")
 
 131   get "/browse/relation/:id/history",   :to => redirect(:path => "/relation/%{id}/history")
 
 132   get "/browse/changeset/:id",          :to => redirect(:path => "/changeset/%{id}")
 
 133   get "/browse/note/:id",               :to => redirect(:path => "/note/%{id}")
 
 134   get "/user/:display_name/edits",      :to => redirect(:path => "/user/%{display_name}/history")
 
 135   get "/user/:display_name/edits/feed", :to => redirect(:path => "/user/%{display_name}/history/feed")
 
 136   get "/browse/friends",                :to => redirect(:path => "/history/friends")
 
 137   get "/browse/nearby",                 :to => redirect(:path => "/history/nearby")
 
 138   get "/browse/changesets/feed",        :to => redirect(:path => "/history/feed")
 
 139   get "/browse/changesets",             :to => redirect(:path => "/history")
 
 140   get "/browse",                        :to => redirect(:path => "/history")
 
 143   root :to => "site#index", :via => [:get, :post]
 
 144   match "/edit" => "site#edit", :via => :get, :as => :edit
 
 145   match "/copyright/:copyright_locale" => "site#copyright", :via => :get
 
 146   match "/copyright" => "site#copyright", :via => :get
 
 147   match "/welcome" => "site#welcome", :via => :get, :as => :welcome
 
 148   match "/fixthemap" => "site#fixthemap", :via => :get, :as => :fixthemap
 
 149   match "/help" => "site#help", :via => :get, :as => :help
 
 150   match "/about" => "site#about", :via => :get, :as => :about
 
 151   match "/history" => "changeset#list", :via => :get
 
 152   match "/history/feed" => "changeset#feed", :via => :get, :defaults => { :format => :atom }
 
 153   match "/history/comments/feed" => "changeset#comments_feed", :via => :get, :as => :changesets_comments_feed, :defaults => { :format => "rss" }
 
 154   match "/export" => "site#export", :via => :get
 
 155   match "/login" => "user#login", :via => [:get, :post]
 
 156   match "/logout" => "user#logout", :via => [:get, :post]
 
 157   match "/offline" => "site#offline", :via => :get
 
 158   match "/key" => "site#key", :via => :get
 
 159   match "/id" => "site#id", :via => :get
 
 160   match "/query" => "browse#query", :via => :get
 
 161   match "/user/new" => "user#new", :via => :get
 
 162   match "/user/new" => "user#create", :via => :post
 
 163   match "/user/terms" => "user#terms", :via => :get
 
 164   match "/user/save" => "user#save", :via => :post
 
 165   match "/user/:display_name/confirm/resend" => "user#confirm_resend", :via => :get
 
 166   match "/user/:display_name/confirm" => "user#confirm", :via => [:get, :post]
 
 167   match "/user/confirm" => "user#confirm", :via => [:get, :post]
 
 168   match "/user/confirm-email" => "user#confirm_email", :via => [:get, :post]
 
 169   match "/user/go_public" => "user#go_public", :via => :post
 
 170   match "/user/reset-password" => "user#reset_password", :via => [:get, :post]
 
 171   match "/user/forgot-password" => "user#lost_password", :via => [:get, :post]
 
 172   match "/user/suspended" => "user#suspended", :via => :get
 
 174   get "/index.html", :to => redirect(:path => "/")
 
 175   get "/create-account.html", :to => redirect(:path => "/user/new")
 
 176   get "/forgot-password.html", :to => redirect(:path => "/user/forgot-password")
 
 179   match "/auth/failure" => "user#auth_failure", :via => :get
 
 180   match "/auth/:provider/callback" => "user#auth_success", :via => [:get, :post], :as => :auth_success
 
 181   match "/auth/:provider" => "user#auth", :via => [:get, :post], :as => :auth
 
 184   match "/go/:code" => "site#permalink", :via => :get, :code => /[a-zA-Z0-9_@~]+[=-]*/
 
 187   match "/preview/:format" => "site#preview", :via => :post, :as => :preview
 
 190   match "/user/:display_name/traces/tag/:tag/page/:page" => "trace#list", :via => :get, :page => /[1-9][0-9]*/
 
 191   match "/user/:display_name/traces/tag/:tag" => "trace#list", :via => :get
 
 192   match "/user/:display_name/traces/page/:page" => "trace#list", :via => :get, :page => /[1-9][0-9]*/
 
 193   match "/user/:display_name/traces" => "trace#list", :via => :get
 
 194   match "/user/:display_name/traces/tag/:tag/rss" => "trace#georss", :via => :get, :defaults => { :format => :rss }
 
 195   match "/user/:display_name/traces/rss" => "trace#georss", :via => :get, :defaults => { :format => :rss }
 
 196   match "/user/:display_name/traces/:id" => "trace#view", :via => :get
 
 197   match "/user/:display_name/traces/:id/picture" => "trace#picture", :via => :get
 
 198   match "/user/:display_name/traces/:id/icon" => "trace#icon", :via => :get
 
 199   match "/traces/tag/:tag/page/:page" => "trace#list", :via => :get, :page => /[1-9][0-9]*/
 
 200   match "/traces/tag/:tag" => "trace#list", :via => :get
 
 201   match "/traces/page/:page" => "trace#list", :via => :get, :page => /[1-9][0-9]*/
 
 202   match "/traces" => "trace#list", :via => :get
 
 203   match "/traces/tag/:tag/rss" => "trace#georss", :via => :get, :defaults => { :format => :rss }
 
 204   match "/traces/rss" => "trace#georss", :via => :get, :defaults => { :format => :rss }
 
 205   match "/traces/mine/tag/:tag/page/:page" => "trace#mine", :via => :get, :page => /[1-9][0-9]*/
 
 206   match "/traces/mine/tag/:tag" => "trace#mine", :via => :get
 
 207   match "/traces/mine/page/:page" => "trace#mine", :via => :get
 
 208   match "/traces/mine" => "trace#mine", :via => :get
 
 209   match "/trace/create" => "trace#create", :via => [:get, :post]
 
 210   match "/trace/:id/data" => "trace#data", :via => :get, :id => /\d+/, :as => "trace_data"
 
 211   match "/trace/:id/edit" => "trace#edit", :via => [:get, :post, :patch], :id => /\d+/, :as => "trace_edit"
 
 212   match "/trace/:id/delete" => "trace#delete", :via => :post, :id => /\d+/
 
 215   match "/diary/new" => "diary_entry#new", :via => [:get, :post]
 
 216   match "/diary/friends" => "diary_entry#list", :friends => true, :via => :get, :as => "friend_diaries"
 
 217   match "/diary/nearby" => "diary_entry#list", :nearby => true, :via => :get, :as => "nearby_diaries"
 
 218   match "/user/:display_name/diary/rss" => "diary_entry#rss", :via => :get, :defaults => { :format => :rss }
 
 219   match "/diary/:language/rss" => "diary_entry#rss", :via => :get, :defaults => { :format => :rss }
 
 220   match "/diary/rss" => "diary_entry#rss", :via => :get, :defaults => { :format => :rss }
 
 221   match "/user/:display_name/diary/comments/:page" => "diary_entry#comments", :via => :get, :page => /[1-9][0-9]*/
 
 222   match "/user/:display_name/diary/comments/" => "diary_entry#comments", :via => :get
 
 223   match "/user/:display_name/diary" => "diary_entry#list", :via => :get
 
 224   match "/diary/:language" => "diary_entry#list", :via => :get
 
 225   match "/diary" => "diary_entry#list", :via => :get
 
 226   match "/user/:display_name/diary/:id" => "diary_entry#view", :via => :get, :id => /\d+/
 
 227   match "/user/:display_name/diary/:id/newcomment" => "diary_entry#comment", :via => :post, :id => /\d+/
 
 228   match "/user/:display_name/diary/:id/edit" => "diary_entry#edit", :via => [:get, :post], :id => /\d+/
 
 229   match "/user/:display_name/diary/:id/hide" => "diary_entry#hide", :via => :post, :id => /\d+/, :as => :hide_diary_entry
 
 230   match "/user/:display_name/diary/:id/hidecomment/:comment" => "diary_entry#hidecomment", :via => :post, :id => /\d+/, :comment => /\d+/, :as => :hide_diary_comment
 
 231   match "/user/:display_name/diary/:id/subscribe" => "diary_entry#subscribe", :via => :post, :as => :diary_entry_subscribe, :id => /\d+/
 
 232   match "/user/:display_name/diary/:id/unsubscribe" => "diary_entry#unsubscribe", :via => :post, :as => :diary_entry_unsubscribe, :id => /\d+/
 
 235   match "/user/:display_name" => "user#view", :via => :get, :as => "user"
 
 236   match "/user/:display_name/make_friend" => "user#make_friend", :via => [:get, :post], :as => "make_friend"
 
 237   match "/user/:display_name/remove_friend" => "user#remove_friend", :via => [:get, :post], :as => "remove_friend"
 
 238   match "/user/:display_name/account" => "user#account", :via => [:get, :post]
 
 239   match "/user/:display_name/set_status" => "user#set_status", :via => :get, :as => :set_status_user
 
 240   match "/user/:display_name/delete" => "user#delete", :via => :get, :as => :delete_user
 
 243   match "/users" => "user#list", :via => [:get, :post]
 
 244   match "/users/:status" => "user#list", :via => [:get, :post]
 
 247   match "/search" => "geocoder#search", :via => :get, :as => :search
 
 248   match "/geocoder/search_latlon" => "geocoder#search_latlon", :via => :get
 
 249   match "/geocoder/search_us_postcode" => "geocoder#search_us_postcode", :via => :get
 
 250   match "/geocoder/search_uk_postcode" => "geocoder#search_uk_postcode", :via => :get
 
 251   match "/geocoder/search_ca_postcode" => "geocoder#search_ca_postcode", :via => :get
 
 252   match "/geocoder/search_osm_nominatim" => "geocoder#search_osm_nominatim", :via => :get
 
 253   match "/geocoder/search_geonames" => "geocoder#search_geonames", :via => :get
 
 254   match "/geocoder/search_osm_nominatim_reverse" => "geocoder#search_osm_nominatim_reverse", :via => :get
 
 255   match "/geocoder/search_geonames_reverse" => "geocoder#search_geonames_reverse", :via => :get
 
 258   match "/directions" => "directions#search", :via => :get, :as => :directions
 
 261   match "/export/finish" => "export#finish", :via => :post
 
 262   match "/export/embed" => "export#embed", :via => :get
 
 265   match "/user/:display_name/inbox" => "message#inbox", :via => :get, :as => "inbox"
 
 266   match "/user/:display_name/outbox" => "message#outbox", :via => :get, :as => "outbox"
 
 267   match "/message/new/:display_name" => "message#new", :via => [:get, :post], :as => "new_message"
 
 268   match "/message/read/:message_id" => "message#read", :via => :get, :as => "read_message"
 
 269   match "/message/mark/:message_id" => "message#mark", :via => :post, :as => "mark_message"
 
 270   match "/message/reply/:message_id" => "message#reply", :via => [:get, :post], :as => "reply_message"
 
 271   match "/message/delete/:message_id" => "message#delete", :via => :post, :as => "delete_message"
 
 273   # oauth admin pages (i.e: for setting up new clients, etc...)
 
 274   scope "/user/:display_name" do
 
 275     resources :oauth_clients
 
 277   match "/oauth/revoke" => "oauth#revoke", :via => [:get, :post]
 
 278   match "/oauth/authorize" => "oauth#authorize", :via => [:get, :post], :as => :authorize
 
 279   match "/oauth/token" => "oauth#token", :via => :get, :as => :token
 
 280   match "/oauth/request_token" => "oauth#request_token", :via => [:get, :post], :as => :request_token
 
 281   match "/oauth/access_token" => "oauth#access_token", :via => [:get, :post], :as => :access_token
 
 282   match "/oauth/test_request" => "oauth#test_request", :via => :get, :as => :test_request
 
 284   # roles and banning pages
 
 285   match "/user/:display_name/role/:role/grant" => "user_roles#grant", :via => :post, :as => "grant_role"
 
 286   match "/user/:display_name/role/:role/revoke" => "user_roles#revoke", :via => :post, :as => "revoke_role"
 
 287   match "/user/:display_name/blocks" => "user_blocks#blocks_on", :via => :get
 
 288   match "/user/:display_name/blocks_by" => "user_blocks#blocks_by", :via => :get
 
 289   match "/blocks/new/:display_name" => "user_blocks#new", :via => :get, :as => "new_user_block"
 
 290   resources :user_blocks
 
 291   match "/blocks/:id/revoke" => "user_blocks#revoke", :via => [:get, :post], :as => "revoke_user_block"
 
 294   resources :redactions