X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5cbd4038edb32b0304bd766e70fc680ea447b52b..b97e8d5427e5be6eb5c83eb4e634882acaa69d16:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index 01cdcf23f..471e9f3c5 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -1,18 +1,18 @@ class SiteController < ApplicationController - layout 'site' + 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 => [:welcome] - before_filter :require_oauth, :only => [:index] + before_action :authorize_web + before_action :set_locale + before_action :redirect_browse_params, :only => :index + before_action :redirect_map_params, :only => [:index, :edit, :export] + before_action :require_oauth, :only => [:index] + before_action :update_totp, :only => [:index] + + authorize_resource :class => false def index - unless STATUS == :database_readonly || STATUS == :database_offline - session[:location] ||= OSM.ip_location(request.env['REMOTE_ADDR']) - end + session[:location] ||= OSM.ip_location(request.env["REMOTE_ADDR"]) unless Settings.status == "database_readonly" || Settings.status == "database_offline" end def permalink @@ -26,30 +26,30 @@ class SiteController < ApplicationController end if params.key? :node - new_params[:controller] = 'browse' - new_params[:action] = 'node' + new_params[:controller] = "browse" + new_params[:action] = "node" new_params[:id] = params[:node] elsif params.key? :way - new_params[:controller] = 'browse' - new_params[:action] = 'way' + new_params[:controller] = "browse" + new_params[:action] = "way" new_params[:id] = params[:way] elsif params.key? :relation - new_params[:controller] = 'browse' - new_params[:action] = 'relation' + new_params[:controller] = "browse" + new_params[:action] = "relation" new_params[:id] = params[:relation] elsif params.key? :changeset - new_params[:controller] = 'browse' - new_params[:action] = 'changeset' + new_params[:controller] = "browse" + new_params[:action] = "changeset" new_params[:id] = params[:changeset] else - new_params[:controller] = 'site' - new_params[:action] = 'index' + new_params[:controller] = "site" + new_params[:action] = "index" end new_params[:anchor] = "map=#{zoom}/#{lat}/#{lon}" new_params[:anchor] += "&layers=#{params[:layers]}" if params.key? :layers - redirect_to Hash[new_params] + redirect_to new_params.to_unsafe_h end def key @@ -68,6 +68,15 @@ class SiteController < ApplicationController require_user end + if %w[potlatch potlatch2].include?(editor) + append_content_security_policy_directives( + :connect_src => %w[*], + :object_src => %w[*], + :plugin_types => %w[application/x-shockwave-flash], + :script_src => %w['unsafe-inline'] + ) + end + if params[:node] bbox = Node.find(params[:node]).bbox.to_unscaled @lat = bbox.centre_lat @@ -83,8 +92,8 @@ class SiteController < ApplicationController @lat = note.lat @lon = note.lon @zoom = 17 - elsif params[:gpx] - trace = Trace.visible_to(@user).find(params[:gpx]) + elsif params[:gpx] && current_user + trace = Trace.visible_to(current_user).find(params[:gpx]) @lat = trace.latitude @lon = trace.longitude @zoom = 16 @@ -95,26 +104,28 @@ class SiteController < ApplicationController @locale = params[:copyright_locale] || I18n.locale end - def welcome - end + def welcome; end - def help - end + def help; end - def about - end + def about; end - def export - end + def export; end - def offline - end + def offline; end def preview - render :text => RichText.new(params[:format], params[:text]).to_html + render :html => RichText.new(params[:type], params[:text]).to_html end def id + append_content_security_policy_directives( + :connect_src => %w[*], + :img_src => %w[* blob:], + :script_src => %w[dev.virtualearth.net 'unsafe-eval'], + :style_src => %w['unsafe-inline'] + ) + render "id", :layout => false end @@ -137,18 +148,14 @@ class SiteController < ApplicationController def redirect_map_params anchor = [] - if params[:lat] && params[:lon] - anchor << "map=#{params.delete(:zoom) || 5}/#{params.delete(:lat)}/#{params.delete(:lon)}" - end + anchor << "map=#{params.delete(:zoom) || 5}/#{params.delete(:lat)}/#{params.delete(:lon)}" if params[:lat] && params[:lon] if params[:layers] anchor << "layers=#{params.delete(:layers)}" - elsif params.delete(:notes) == 'yes' + elsif params.delete(:notes) == "yes" anchor << "layers=N" end - if anchor.present? - redirect_to Hash[params].merge(:anchor => anchor.join('&')) - end + redirect_to params.to_unsafe_h.merge(:anchor => anchor.join("&")) if anchor.present? end end