]> git.openstreetmap.org Git - rails.git/blob - config/routes.rb
Create api permissions resource
[rails.git] / config / routes.rb
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"
6   end
7
8   use_doorkeeper_openid_connect :scope => "oauth2" if Settings.key?(:doorkeeper_signing_key)
9
10   # API
11   namespace :api do
12     get "capabilities" => "capabilities#show" # Deprecated, remove when 0.6 support is removed
13     get "versions" => "versions#show"
14   end
15
16   scope "api/0.6", :module => :api do
17     get "capabilities" => "capabilities#show"
18   end
19
20   namespace :api, :path => "api/0.6" do
21     resource :permissions, :only => :show
22
23     resources :changesets, :only => [:index, :create]
24     resources :changesets, :path => "changeset", :id => /\d+/, :only => [:show, :update] do
25       scope :module => :changesets do
26         resource :upload, :only => :create
27         resource :download, :only => :show
28         resource :close, :only => :update
29       end
30       resource :subscription, :controller => :changeset_subscriptions, :only => [:create, :destroy]
31       resources :changeset_comments, :path => "comment", :only => :create
32     end
33     put "changeset/create" => "changesets#create", :as => nil
34     post "changeset/:changeset_id/subscribe" => "changeset_subscriptions#create", :changeset_id => /\d+/, :as => nil
35     post "changeset/:changeset_id/unsubscribe" => "changeset_subscriptions#destroy", :changeset_id => /\d+/, :as => nil
36
37     resources :changeset_comments, :id => /\d+/, :only => :index do
38       resource :visibility, :module => :changeset_comments, :only => [:create, :destroy]
39     end
40     post "changeset/comment/:changeset_comment_id/unhide" => "changeset_comments/visibilities#create", :changeset_comment_id => /\d+/, :as => nil
41     post "changeset/comment/:changeset_comment_id/hide" => "changeset_comments/visibilities#destroy", :changeset_comment_id => /\d+/, :as => nil
42
43     resources :nodes, :only => [:index, :create]
44     resources :nodes, :path => "node", :id => /\d+/, :only => [:show, :update, :destroy] do
45       scope :module => :nodes do
46         resources :ways, :only => :index
47         resources :relations, :only => :index
48       end
49       resources :versions, :path => "history", :controller => :old_nodes, :only => :index
50       resource :version, :path => ":version", :version => /\d+/, :controller => :old_nodes, :only => :show do
51         resource :redaction, :module => :old_nodes, :only => [:create, :destroy]
52       end
53     end
54     put "node/create" => "nodes#create", :as => nil
55     post "node/:node_id/:version/redact" => "old_nodes/redactions#create", :node_id => /\d+/, :version => /\d+/, :allow_delete => true, :as => nil
56
57     resources :ways, :only => [:index, :create]
58     resources :ways, :path => "way", :id => /\d+/, :only => [:show, :update, :destroy] do
59       member do
60         get :full, :action => :show, :full => true, :as => nil
61       end
62       scope :module => :ways do
63         resources :relations, :only => :index
64       end
65       resources :versions, :path => "history", :controller => :old_ways, :only => :index
66       resource :version, :path => ":version", :version => /\d+/, :controller => :old_ways, :only => :show do
67         resource :redaction, :module => :old_ways, :only => [:create, :destroy]
68       end
69     end
70     put "way/create" => "ways#create", :as => nil
71     post "way/:way_id/:version/redact" => "old_ways/redactions#create", :way_id => /\d+/, :version => /\d+/, :allow_delete => true, :as => nil
72
73     resources :relations, :only => [:index, :create]
74     resources :relations, :path => "relation", :id => /\d+/, :only => [:show, :update, :destroy] do
75       member do
76         get :full, :action => :show, :full => true, :as => nil
77       end
78       scope :module => :relations do
79         resources :relations, :only => :index
80       end
81       resources :versions, :path => "history", :controller => :old_relations, :only => :index
82       resource :version, :path => ":version", :version => /\d+/, :controller => :old_relations, :only => :show do
83         resource :redaction, :module => :old_relations, :only => [:create, :destroy]
84       end
85     end
86     put "relation/create" => "relations#create", :as => nil
87     post "relation/:relation_id/:version/redact" => "old_relations/redactions#create", :relation_id => /\d+/, :version => /\d+/, :allow_delete => true, :as => nil
88
89     resource :map, :only => :show
90
91     resources :tracepoints, :path => "trackpoints", :only => :index
92
93     resources :users, :only => :index
94     resources :users, :path => "user", :id => /\d+/, :only => :show
95     resources :user_traces, :path => "user/gpx_files", :module => :users, :controller => :traces, :only => :index
96     get "user/details" => "users#details"
97
98     resources :user_preferences, :except => [:new, :create, :edit], :param => :preference_key, :path => "user/preferences" do
99       collection do
100         put "" => "user_preferences#update_all", :as => ""
101       end
102     end
103
104     resources :messages, :path => "user/messages", :constraints => { :id => /\d+/ }, :only => [:create, :show, :update, :destroy]
105     namespace :messages, :path => "user/messages" do
106       resource :inbox, :only => :show
107       resource :outbox, :only => :show
108     end
109     post "/user/messages/:id" => "messages#update", :as => nil
110
111     resources :traces, :path => "gpx", :only => [:create, :show, :update, :destroy], :id => /\d+/ do
112       scope :module => :traces do
113         resource :data, :only => :show
114       end
115     end
116     post "gpx/create" => "traces#create", :id => /\d+/, :as => :trace_create
117     get "gpx/:id/details" => "traces#show", :id => /\d+/, :as => :trace_details
118
119     # Map notes API
120     resources :notes, :except => [:new, :edit, :update], :id => /\d+/, :controller => "notes" do
121       collection do
122         get "search"
123         get "feed", :defaults => { :format => "rss" }
124       end
125
126       member do
127         post "comment"
128         post "close"
129         post "reopen"
130       end
131
132       resource :subscription, :only => [:create, :destroy], :controller => "note_subscriptions"
133     end
134
135     resources :user_blocks, :only => [:show, :create], :id => /\d+/, :controller => "user_blocks"
136     namespace :user_blocks, :path => "user/blocks" do
137       resource :active_list, :path => "active", :only => :show
138     end
139   end
140
141   # Data browsing
142   get "/way/:id" => "ways#show", :id => /\d+/, :as => :way
143   get "/way/:id/history" => "old_ways#index", :id => /\d+/, :as => :way_history
144   resources :old_ways, :path => "/way/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
145   get "/node/:id" => "nodes#show", :id => /\d+/, :as => :node
146   get "/node/:id/history" => "old_nodes#index", :id => /\d+/, :as => :node_history
147   resources :old_nodes, :path => "/node/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
148   get "/relation/:id" => "relations#show", :id => /\d+/, :as => :relation
149   get "/relation/:id/history" => "old_relations#index", :id => /\d+/, :as => :relation_history
150   resources :old_relations, :path => "/relation/:id/history", :id => /\d+/, :version => /\d+/, :param => :version, :only => :show
151
152   resources :changesets, :path => "changeset", :id => /\d+/, :only => :show do
153     resource :subscription, :controller => :changeset_subscriptions, :only => [:show, :create, :destroy]
154     namespace :changeset_comments, :as => :comments, :path => :comments do
155       resource :feed, :only => :show, :defaults => { :format => "rss" }
156     end
157   end
158   get "/changeset/:id/subscribe", :id => /\d+/, :to => redirect(:path => "/changeset/%{id}/subscription")
159   get "/changeset/:id/unsubscribe", :id => /\d+/, :to => redirect(:path => "/changeset/%{id}/subscription")
160
161   resources :notes, :path => "note", :id => /\d+/, :only => [:show, :new]
162
163   get "/user/:display_name/history" => "changesets#index"
164   get "/user/:display_name/history/feed" => "changesets#feed", :defaults => { :format => :atom }
165   get "/user/:display_name/notes" => "notes#index", :as => :user_notes
166   get "/history/friends" => "changesets#index", :friends => true, :as => "friend_changesets", :defaults => { :format => :html }
167   get "/history/nearby" => "changesets#index", :nearby => true, :as => "nearby_changesets", :defaults => { :format => :html }
168
169   get "/browse/way/:id",                :to => redirect(:path => "/way/%{id}")
170   get "/browse/way/:id/history",        :to => redirect(:path => "/way/%{id}/history")
171   get "/browse/node/:id",               :to => redirect(:path => "/node/%{id}")
172   get "/browse/node/:id/history",       :to => redirect(:path => "/node/%{id}/history")
173   get "/browse/relation/:id",           :to => redirect(:path => "/relation/%{id}")
174   get "/browse/relation/:id/history",   :to => redirect(:path => "/relation/%{id}/history")
175   get "/browse/changeset/:id",          :to => redirect(:path => "/changeset/%{id}")
176   get "/browse/note/:id",               :to => redirect(:path => "/note/%{id}")
177   get "/user/:display_name/edits",      :to => redirect(:path => "/user/%{display_name}/history")
178   get "/user/:display_name/edits/feed", :to => redirect(:path => "/user/%{display_name}/history/feed")
179   get "/browse/friends",                :to => redirect(:path => "/history/friends")
180   get "/browse/nearby",                 :to => redirect(:path => "/history/nearby")
181   get "/browse/changesets/feed",        :to => redirect(:path => "/history/feed")
182   get "/browse/changesets",             :to => redirect(:path => "/history")
183   get "/browse",                        :to => redirect(:path => "/history")
184
185   # web site
186   root :to => "site#index", :via => [:get, :post]
187   get "/edit" => "site#edit"
188   get "/copyright/:copyright_locale" => "site#copyright"
189   get "/copyright" => "site#copyright"
190   get "/welcome" => "site#welcome"
191   get "/fixthemap" => "site#fixthemap"
192   get "/help" => "site#help"
193   get "/about/:about_locale" => "site#about"
194   get "/about" => "site#about"
195   get "/communities" => "site#communities"
196   get "/history" => "changesets#index"
197   get "/history/feed" => "changesets#feed", :defaults => { :format => :atom }
198   scope "/history" do
199     namespace :changeset_comments, :path => :comments, :as => :changesets_comments do
200       resource :feed, :only => :show, :defaults => { :format => "rss" }
201     end
202   end
203   get "/export" => "site#export"
204   get "/login" => "sessions#new"
205   post "/login" => "sessions#create"
206   match "/logout" => "sessions#destroy", :via => [:get, :post]
207   get "/offline" => "site#offline"
208   resource :map_key, :path => "key", :only => :show
209   get "/id" => "site#id"
210   resource :feature_query, :path => "query", :only => :show
211   post "/user/:display_name/confirm/resend" => "confirmations#confirm_resend", :as => :user_confirm_resend
212   match "/user/:display_name/confirm" => "confirmations#confirm", :via => [:get, :post]
213   match "/user/confirm" => "confirmations#confirm", :via => [:get, :post]
214   match "/user/confirm-email" => "confirmations#confirm_email", :via => [:get, :post]
215   post "/user/go_public" => "users#go_public"
216   scope :user, :as => "user" do
217     get "forgot-password" => "passwords#new"
218     post "forgot-password" => "passwords#create"
219     get "reset-password" => "passwords#edit"
220     post "reset-password" => "passwords#update"
221   end
222   get "/user/suspended" => "users#suspended"
223
224   get "/index.html", :to => redirect(:path => "/")
225   get "/create-account.html", :to => redirect(:path => "/user/new")
226   get "/forgot-password.html", :to => redirect(:path => "/user/forgot-password")
227
228   # omniauth
229   get "/auth/failure" => "users#auth_failure"
230   match "/auth/:provider/callback" => "users#auth_success", :via => [:get, :post], :as => :auth_success
231   match "/auth/:provider" => "users#auth", :via => [:post, :patch], :as => :auth
232
233   # permalink
234   get "/go/:code" => "site#permalink", :code => /[a-zA-Z0-9_@~]+[=-]*/, :as => :permalink
235
236   # rich text preview
237   post "/preview/:type" => "site#preview", :as => :preview
238
239   # traces
240   resources :traces, :id => /\d+/, :except => [:show] do
241     resource :data, :module => :traces, :only => :show
242   end
243   get "/user/:display_name/traces/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/traces/tag/%{tag}")
244   get "/user/:display_name/traces/tag/:tag" => "traces#index"
245   get "/user/:display_name/traces/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/traces")
246   get "/user/:display_name/traces" => "traces#index"
247   get "/user/:display_name/traces/:id" => "traces#show", :id => /\d+/, :as => "show_trace"
248   scope "/user/:display_name/traces/:trace_id", :module => :traces, :trace_id => /\d+/ do
249     get "picture" => "pictures#show", :as => "trace_picture"
250     get "icon" => "icons#show", :as => "trace_icon"
251   end
252   get "/traces/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/tag/%{tag}")
253   get "/traces/tag/:tag" => "traces#index"
254   get "/traces/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces")
255   get "/traces/mine/tag/:tag/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/mine/tag/%{tag}")
256   get "/traces/mine/tag/:tag" => "traces#mine"
257   get "/traces/mine/page/:page", :page => /[1-9][0-9]*/, :to => redirect(:path => "/traces/mine")
258   get "/traces/mine" => "traces#mine"
259   get "/trace/create", :to => redirect(:path => "/traces/new")
260   get "/trace/:id/data", :format => false, :id => /\d+/, :to => redirect(:path => "/traces/%{id}/data")
261   get "/trace/:id/data.:format", :id => /\d+/, :to => redirect(:path => "/traces/%{id}/data.%{format}")
262   get "/trace/:id/edit", :id => /\d+/, :to => redirect(:path => "/traces/%{id}/edit")
263
264   namespace :traces, :path => "" do
265     resource :feed, :path => "(/user/:display_name)/traces(/tag/:tag)/rss", :only => :show, :defaults => { :format => :rss }
266   end
267
268   # diary pages
269   resources :diary_entries, :path => "diary", :only => [:new, :create, :index] do
270     collection do
271       get "friends" => "diary_entries#index", :friends => true
272       get "nearby" => "diary_entries#index", :nearby => true
273     end
274   end
275   get "/user/:display_name/diary/rss" => "diary_entries#rss", :defaults => { :format => :rss }
276   get "/diary/:language/rss" => "diary_entries#rss", :defaults => { :format => :rss }
277   get "/diary/rss" => "diary_entries#rss", :defaults => { :format => :rss }
278   get "/user/:display_name/diary" => "diary_entries#index"
279   get "/diary/:language" => "diary_entries#index"
280   scope "/user/:display_name" do
281     resources :diary_entries, :path => "diary", :only => [:edit, :update, :show], :id => /\d+/ do
282       member do
283         post :hide
284         post :unhide
285       end
286     end
287   end
288   match "/user/:display_name/diary/:id/subscribe" => "diary_entries#subscribe", :via => [:get, :post], :as => :diary_entry_subscribe, :id => /\d+/
289   match "/user/:display_name/diary/:id/unsubscribe" => "diary_entries#unsubscribe", :via => [:get, :post], :as => :diary_entry_unsubscribe, :id => /\d+/
290   post "/user/:display_name/diary/:id/comments" => "diary_comments#create", :id => /\d+/, :as => :comment_diary_entry
291   post "/diary_comments/:comment/hide" => "diary_comments#hide", :comment => /\d+/, :as => :hide_diary_comment
292   post "/diary_comments/:comment/unhide" => "diary_comments#unhide", :comment => /\d+/, :as => :unhide_diary_comment
293
294   # user pages
295   get "/user/terms", :to => redirect(:path => "/account/terms")
296   resources :users, :path => "user", :param => :display_name, :only => [:new, :create, :show] do
297     resource :role, :controller => "user_roles", :path => "roles/:role", :only => [:create, :destroy]
298     scope :module => :users do
299       resources :diary_comments, :only => :index
300       resources :changeset_comments, :only => :index
301       resource :issued_blocks, :path => "blocks_by", :only => :show
302       resource :received_blocks, :path => "blocks", :only => [:show, :edit, :destroy]
303       resource :status, :only => :update
304     end
305   end
306   get "/user/:display_name/account", :to => redirect(:path => "/account")
307   get "/user/:display_name/diary/comments(/:page)", :page => /[1-9][0-9]*/, :to => redirect(:path => "/user/%{display_name}/diary_comments")
308
309   resource :account, :only => [:show, :update, :destroy] do
310     scope :module => :accounts do
311       resource :terms, :only => [:show, :update]
312       resource :pd_declaration, :only => [:show, :create]
313       resource :deletion, :only => :show
314       resource :home, :only => :show
315     end
316   end
317   get "/account/edit", :to => redirect(:path => "/account"), :as => nil
318
319   resource :dashboard, :only => [:show]
320   resource :preferences, :only => [:show, :update]
321   get "/preferences/edit", :to => redirect(:path => "/preferences")
322   resource :profile, :only => [:edit, :update]
323
324   # friendships
325   scope "/user/:display_name" do
326     resource :follow, :only => [:create, :destroy, :show], :path => "follow"
327
328     get "make_friend", :to => redirect("/user/%{display_name}/follow")
329     get "remove_friend", :to => redirect("/user/%{display_name}/follow")
330   end
331
332   # user lists
333   namespace :users do
334     resource :list, :path => "(:status)", :only => [:show, :update]
335   end
336
337   # geocoder
338   resource :search, :only => :show do
339     scope :module => :searches do
340       resource :latlon_query, :only => :create
341       resource :nominatim_query, :only => :create
342       resource :nominatim_reverse_query, :only => :create
343     end
344   end
345
346   # directions
347   resource :directions, :only => :show
348
349   # export
350   post "/export/finish" => "export#finish"
351   get "/export/embed" => "export#embed"
352
353   # messages
354   resources :messages, :path_names => { :new => "new/:display_name" }, :id => /\d+/, :only => [:new, :create, :show, :destroy] do
355     scope :module => :messages do
356       resource :reply, :path_names => { :new => "new" }, :only => :new
357       resource :read_mark, :only => [:create, :destroy]
358       resource :mute, :only => :destroy
359     end
360   end
361   namespace :messages, :path => "/messages" do
362     resource :inbox, :only => :show
363     resource :muted_inbox, :path => "muted", :only => :show
364     resource :outbox, :only => :show
365   end
366   get "/user/:display_name/inbox", :to => redirect(:path => "/messages/inbox")
367   get "/user/:display_name/outbox", :to => redirect(:path => "/messages/outbox")
368   get "/message/new/:display_name", :to => redirect(:path => "/messages/new/%{display_name}")
369   get "/message/read/:message_id", :to => redirect(:path => "/messages/%{message_id}")
370   get "/messages/:message_id/reply", :to => redirect(:path => "/messages/%{message_id}/reply/new")
371
372   # muting users
373   scope "/user/:display_name" do
374     resource :user_mute, :only => [:create, :destroy], :path => "mute"
375   end
376   resources :user_mutes, :only => [:index]
377
378   # banning pages
379   resources :user_blocks, :path_names => { :new => "new/:display_name" }
380
381   # issues and reports
382   resources :issues do
383     resources :comments, :controller => :issue_comments
384     resources :reporters, :module => :issues, :only => :index
385     member do
386       post "resolve"
387       post "assign"
388       post "ignore"
389       post "reopen"
390     end
391   end
392
393   resources :reports
394
395   # redactions
396   resources :redactions
397
398   # errors
399   match "/400", :to => "errors#bad_request", :via => :all
400   match "/403", :to => "errors#forbidden", :via => :all
401   match "/404", :to => "errors#not_found", :via => :all
402   match "/500", :to => "errors#internal_server_error", :via => :all
403 end