before_action :redirect_browse_params, :only => :index
before_action :redirect_map_params, :only => [:index, :edit, :export]
before_action :require_oauth, :only => [:index]
+ before_action :require_user, :only => [:id]
before_action :update_totp, :only => [:index]
authorize_resource :class => false
+ content_security_policy(:only => :edit) do |policy|
+ policy.frame_src(*policy.frame_src, :blob)
+ end
+
+ content_security_policy(:only => :id) do |policy|
+ policy.connect_src("*")
+ policy.img_src(*policy.img_src, "*", :blob)
+ policy.script_src(*policy.script_src, "dev.virtualearth.net", :unsafe_eval)
+ policy.style_src(*policy.style_src, :unsafe_inline)
+ end
+
def index
session[:location] ||= OSM.ip_location(request.env["REMOTE_ADDR"]) unless Settings.status == "database_readonly" || Settings.status == "database_offline"
end
def key
expires_in 7.days, :public => true
+ @key = YAML.load_file(Rails.root.join("config/key.yml"))
+ @key.each_value do |layer_data|
+ layer_data.each do |entry|
+ entry["name"] = Array(entry["name"])
+ end
+ layer_data.each_cons(2) do |entry, next_entry|
+ entry["max_zoom"] = next_entry["min_zoom"] - 1 if entry["name"] == next_entry["name"] && !entry["max_zoom"] && next_entry["min_zoom"]
+ end
+ end
render :layout => false
end
require_user
end
- if %w[id].include?(editor)
- append_content_security_policy_directives(
- :frame_src => %w[blob:]
- )
- end
-
begin
if params[:node]
bbox = Node.visible.find(params[:node]).bbox.to_unscaled
def export; end
- def offline; end
+ def offline
+ flash.now[:warning] = if Settings.status == "database_offline"
+ t("layouts.osm_offline")
+ else
+ t("layouts.osm_read_only")
+ end
+ render :html => nil, :layout => true
+ end
def preview
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 :layout => false
end
elsif params[:relation]
redirect_to relation_path(params[:relation])
elsif params[:note]
- redirect_to browse_note_path(params[:note])
+ redirect_to note_path(params[:note])
elsif params[:query]
redirect_to search_path(:query => params[:query])
end