- match "api/capabilities" => "api#capabilities", :via => :get
- match "api/0.6/capabilities" => "api#capabilities", :via => :get
- match "api/0.6/permissions" => "api#permissions", :via => :get
-
- match "api/0.6/changeset/create" => "changeset#create", :via => :put
- match "api/0.6/changeset/:id/upload" => "changeset#upload", :via => :post, :id => /\d+/
- match "api/0.6/changeset/:id/download" => "changeset#download", :via => :get, :as => :changeset_download, :id => /\d+/
- match "api/0.6/changeset/:id/expand_bbox" => "changeset#expand_bbox", :via => :post, :id => /\d+/
- match "api/0.6/changeset/:id" => "changeset#read", :via => :get, :as => :changeset_read, :id => /\d+/
- match "api/0.6/changeset/:id/subscribe" => "changeset#subscribe", :via => :post, :as => :changeset_subscribe, :id => /\d+/
- match "api/0.6/changeset/:id/unsubscribe" => "changeset#unsubscribe", :via => :post, :as => :changeset_unsubscribe, :id => /\d+/
- match "api/0.6/changeset/:id" => "changeset#update", :via => :put, :id => /\d+/
- match "api/0.6/changeset/:id/close" => "changeset#close", :via => :put, :id => /\d+/
- match "api/0.6/changesets" => "changeset#query", :via => :get
- post "api/0.6/changeset/:id/comment" => "changeset#comment", :as => :changeset_comment, :id => /\d+/
- post "api/0.6/changeset/comment/:id/hide" => "changeset#hide_comment", :as => :changeset_comment_hide, :id => /\d+/
- post "api/0.6/changeset/comment/:id/unhide" => "changeset#unhide_comment", :as => :changeset_comment_unhide, :id => /\d+/
-
- match "api/0.6/node/create" => "node#create", :via => :put
- match "api/0.6/node/:id/ways" => "way#ways_for_node", :via => :get, :id => /\d+/
- match "api/0.6/node/:id/relations" => "relation#relations_for_node", :via => :get, :id => /\d+/
- match "api/0.6/node/:id/history" => "old_node#history", :via => :get, :id => /\d+/
- match "api/0.6/node/:id/:version/redact" => "old_node#redact", :via => :post, :version => /\d+/, :id => /\d+/
- match "api/0.6/node/:id/:version" => "old_node#version", :via => :get, :id => /\d+/, :version => /\d+/
- match "api/0.6/node/:id" => "node#read", :via => :get, :id => /\d+/
- match "api/0.6/node/:id" => "node#update", :via => :put, :id => /\d+/
- match "api/0.6/node/:id" => "node#delete", :via => :delete, :id => /\d+/
- match "api/0.6/nodes" => "node#nodes", :via => :get
-
- match "api/0.6/way/create" => "way#create", :via => :put
- match "api/0.6/way/:id/history" => "old_way#history", :via => :get, :id => /\d+/
- match "api/0.6/way/:id/full" => "way#full", :via => :get, :id => /\d+/
- match "api/0.6/way/:id/relations" => "relation#relations_for_way", :via => :get, :id => /\d+/
- match "api/0.6/way/:id/:version/redact" => "old_way#redact", :via => :post, :version => /\d+/, :id => /\d+/
- match "api/0.6/way/:id/:version" => "old_way#version", :via => :get, :id => /\d+/, :version => /\d+/
- match "api/0.6/way/:id" => "way#read", :via => :get, :id => /\d+/
- match "api/0.6/way/:id" => "way#update", :via => :put, :id => /\d+/
- match "api/0.6/way/:id" => "way#delete", :via => :delete, :id => /\d+/
- match "api/0.6/ways" => "way#ways", :via => :get
-
- match "api/0.6/relation/create" => "relation#create", :via => :put
- match "api/0.6/relation/:id/relations" => "relation#relations_for_relation", :via => :get, :id => /\d+/
- match "api/0.6/relation/:id/history" => "old_relation#history", :via => :get, :id => /\d+/
- match "api/0.6/relation/:id/full" => "relation#full", :via => :get, :id => /\d+/
- match "api/0.6/relation/:id/:version/redact" => "old_relation#redact", :via => :post, :version => /\d+/, :id => /\d+/
- match "api/0.6/relation/:id/:version" => "old_relation#version", :via => :get, :id => /\d+/, :version => /\d+/
- match "api/0.6/relation/:id" => "relation#read", :via => :get, :id => /\d+/
- match "api/0.6/relation/:id" => "relation#update", :via => :put, :id => /\d+/
- match "api/0.6/relation/:id" => "relation#delete", :via => :delete, :id => /\d+/
- match "api/0.6/relations" => "relation#relations", :via => :get
-
- match "api/0.6/map" => "api#map", :via => :get
-
- match "api/0.6/trackpoints" => "api#trackpoints", :via => :get
-
- match "api/0.6/changes" => "api#changes", :via => :get
-
- match "api/0.6/search" => "search#search_all", :via => :get
- match "api/0.6/ways/search" => "search#search_ways", :via => :get
- match "api/0.6/relations/search" => "search#search_relations", :via => :get
- match "api/0.6/nodes/search" => "search#search_nodes", :via => :get
-
- match "api/0.6/user/:id" => "user#api_read", :via => :get, :id => /\d+/
- match "api/0.6/user/details" => "user#api_details", :via => :get
- match "api/0.6/user/gpx_files" => "user#api_gpx_files", :via => :get
-
- match "api/0.6/user/preferences" => "user_preference#read", :via => :get
- match "api/0.6/user/preferences/:preference_key" => "user_preference#read_one", :via => :get
- match "api/0.6/user/preferences" => "user_preference#update", :via => :put
- match "api/0.6/user/preferences/:preference_key" => "user_preference#update_one", :via => :put
- match "api/0.6/user/preferences/:preference_key" => "user_preference#delete_one", :via => :delete
-
- match "api/0.6/gpx/create" => "trace#api_create", :via => :post
- match "api/0.6/gpx/:id" => "trace#api_read", :via => :get, :id => /\d+/
- match "api/0.6/gpx/:id" => "trace#api_update", :via => :put, :id => /\d+/
- match "api/0.6/gpx/:id" => "trace#api_delete", :via => :delete, :id => /\d+/
- match "api/0.6/gpx/:id/details" => "trace#api_read", :via => :get, :id => /\d+/
- match "api/0.6/gpx/:id/data" => "trace#api_data", :via => :get
-
- # AMF (ActionScript) API
- match "api/0.6/amf/read" => "amf#amf_read", :via => :post
- match "api/0.6/amf/write" => "amf#amf_write", :via => :post
- match "api/0.6/swf/trackpoints" => "swf#trackpoints", :via => :get
-
- # Map notes API
- scope "api/0.6" do
- resources :notes, :except => [:new, :edit, :update], :constraints => { :id => /\d+/ }, :defaults => { :format => "xml" } do
+ namespace :api do
+ get "capabilities" => "capabilities#show" # Deprecated, remove when 0.6 support is removed
+ get "versions" => "versions#show"
+ end
+
+ scope "api/0.6", :module => :api do
+ get "capabilities" => "capabilities#show"
+ get "permissions" => "permissions#show"
+
+ post "changeset/:id/upload" => "changesets#upload", :as => :changeset_upload, :id => /\d+/
+ post "changeset/:id/subscribe" => "changesets#subscribe", :as => :api_changeset_subscribe, :id => /\d+/
+ post "changeset/:id/unsubscribe" => "changesets#unsubscribe", :as => :api_changeset_unsubscribe, :id => /\d+/
+ put "changeset/:id/close" => "changesets#close", :as => :changeset_close, :id => /\d+/
+ end
+
+ namespace :api, :path => "api/0.6" do
+ resources :changesets, :only => [:index, :create]
+ resources :changesets, :path => "changeset", :id => /\d+/, :only => [:show, :update] do
+ resource :download, :module => :changesets, :only => :show
+ resources :changeset_comments, :path => "comment", :only => :create
+ end
+ put "changeset/create" => "changesets#create", :as => nil
+
+ resources :changeset_comments, :id => /\d+/, :only => :index do
+ resource :visibility, :module => :changeset_comments, :only => [:create, :destroy]
+ end
+ post "changeset/comment/:changeset_comment_id/unhide" => "changeset_comments/visibilities#create", :changeset_comment_id => /\d+/, :as => nil
+ post "changeset/comment/:changeset_comment_id/hide" => "changeset_comments/visibilities#destroy", :changeset_comment_id => /\d+/, :as => nil
+
+ resources :nodes, :only => [:index, :create]
+ resources :nodes, :path => "node", :id => /\d+/, :only => [:show, :update, :destroy] do
+ scope :module => :nodes do
+ resources :ways, :only => :index
+ resources :relations, :only => :index
+ end
+ resources :versions, :path => "history", :controller => :old_nodes, :only => :index
+ resource :version, :path => ":version", :version => /\d+/, :controller => :old_nodes, :only => :show do
+ resource :redaction, :module => :old_nodes, :only => [:create, :destroy]
+ end
+ end
+ put "node/create" => "nodes#create", :as => nil
+ post "node/:node_id/:version/redact" => "old_nodes/redactions#create", :node_id => /\d+/, :version => /\d+/, :allow_delete => true, :as => nil
+
+ resources :ways, :only => [:index, :create]
+ resources :ways, :path => "way", :id => /\d+/, :only => [:show, :update, :destroy] do
+ member do
+ get :full, :action => :show, :full => true, :as => nil
+ end
+ scope :module => :ways do
+ resources :relations, :only => :index
+ end
+ resources :versions, :path => "history", :controller => :old_ways, :only => :index
+ resource :version, :path => ":version", :version => /\d+/, :controller => :old_ways, :only => :show do
+ resource :redaction, :module => :old_ways, :only => [:create, :destroy]
+ end
+ end
+ put "way/create" => "ways#create", :as => nil
+ post "way/:way_id/:version/redact" => "old_ways/redactions#create", :way_id => /\d+/, :version => /\d+/, :allow_delete => true, :as => nil
+
+ resources :relations, :only => [:index, :create]
+ resources :relations, :path => "relation", :id => /\d+/, :only => [:show, :update, :destroy] do
+ member do
+ get :full, :action => :show, :full => true, :as => nil
+ end
+ scope :module => :relations do
+ resources :relations, :only => :index
+ end
+ resources :versions, :path => "history", :controller => :old_relations, :only => :index
+ resource :version, :path => ":version", :version => /\d+/, :controller => :old_relations, :only => :show do
+ resource :redaction, :module => :old_relations, :only => [:create, :destroy]
+ end
+ end
+ put "relation/create" => "relations#create", :as => nil
+ post "relation/:relation_id/:version/redact" => "old_relations/redactions#create", :relation_id => /\d+/, :version => /\d+/, :allow_delete => true, :as => nil
+
+ resource :map, :only => :show
+
+ resources :tracepoints, :path => "trackpoints", :only => :index
+
+ resources :users, :only => :index
+ resources :users, :path => "user", :id => /\d+/, :only => :show
+ resources :user_traces, :path => "user/gpx_files", :module => :users, :controller => :traces, :only => :index
+ get "user/details" => "users#details"
+
+ resources :user_preferences, :except => [:new, :create, :edit], :param => :preference_key, :path => "user/preferences" do
+ collection do
+ put "" => "user_preferences#update_all", :as => ""
+ end
+ end
+
+ resources :messages, :path => "user/messages", :constraints => { :id => /\d+/ }, :only => [:create, :show, :update, :destroy]
+ namespace :messages, :path => "user/messages" do
+ resource :inbox, :only => :show
+ resource :outbox, :only => :show
+ end
+ post "/user/messages/:id" => "messages#update", :as => nil
+
+ resources :traces, :path => "gpx", :only => [:create, :show, :update, :destroy], :id => /\d+/ do
+ scope :module => :traces do
+ resource :data, :only => :show
+ end
+ end
+ post "gpx/create" => "traces#create", :id => /\d+/, :as => :trace_create
+ get "gpx/:id/details" => "traces#show", :id => /\d+/, :as => :trace_details
+
+ # Map notes API
+ resources :notes, :except => [:new, :edit, :update], :id => /\d+/, :controller => "notes" do