X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3ebad9ec2f59f2ba5716952f6169cdbb4972f931..315d1dab540ad5c11e7a22201387327525578229:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index 0f06b2283..5c391d7b2 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -1,9 +1,10 @@ class SiteController < ApplicationController - layout 'site', :except => [:key, :permalink] - layout false, :only => [:key, :permalink] + layout 'site' + layout :map_layout, :only => [:index, :export] before_filter :authorize_web before_filter :set_locale + before_filter :redirect_browse_params, :only => :index before_filter :redirect_map_params, :only => [:index, :edit, :export] before_filter :require_user, :only => [:edit, :welcome] before_filter :require_oauth, :only => [:index] @@ -33,18 +34,18 @@ class SiteController < ApplicationController def key expires_in 7.days, :public => true + render :layout => false end def edit editor = preferred_editor if editor == "remote" + require_oauth render :action => :index return end - @extra_body_class = "site-edit-#{editor}" - if params[:node] bbox = Node.find(params[:node]).bbox.to_unscaled @lat = bbox.centre_lat @@ -87,6 +88,20 @@ class SiteController < ApplicationController private + def redirect_browse_params + if params[:node] + redirect_to node_path(params[:node]) + elsif params[:way] + redirect_to way_path(params[:way]) + elsif params[:relation] + redirect_to relation_path(params[:relation]) + elsif params[:note] + redirect_to browse_note_path(params[:note]) + elsif params[:query] + redirect_to search_path(:query => params[:query]) + end + end + def redirect_map_params anchor = [] @@ -100,15 +115,7 @@ class SiteController < ApplicationController anchor << "layers=N" end - if params[:node] - redirect_to node_path(params[:node]) - elsif params[:way] - redirect_to way_path(params[:way]) - elsif params[:relation] - redirect_to relation_path(params[:relation]) - elsif params[:note] - redirect_to browse_note_path(params[:note]) - elsif anchor.present? + if anchor.present? redirect_to params.merge(:anchor => anchor.join('&')) end end