]> git.openstreetmap.org Git - rails.git/blob - app/controllers/site_controller.rb
Use turbo for pagination
[rails.git] / app / controllers / site_controller.rb
1 class SiteController < ApplicationController
2   layout "site"
3   layout :map_layout, :only => [:index, :export]
4
5   before_action :authorize_web
6   before_action :set_locale
7   before_action :redirect_browse_params, :only => :index
8   before_action :redirect_map_params, :only => [:index, :edit, :export]
9   before_action :require_oauth, :only => [:index]
10   before_action :require_user, :only => [:id]
11   before_action :update_totp, :only => [:index]
12
13   authorize_resource :class => false
14
15   content_security_policy(:only => :edit) do |policy|
16     policy.frame_src(*policy.frame_src, :blob)
17   end
18
19   content_security_policy(:only => :id) do |policy|
20     policy.connect_src("*")
21     policy.img_src(*policy.img_src, "*", :blob)
22     policy.script_src(*policy.script_src, :unsafe_eval)
23     policy.style_src(*policy.style_src, :unsafe_inline)
24   end
25
26   def index
27     session[:location] ||= OSM.ip_location(request.env["REMOTE_ADDR"]) unless Settings.status == "database_readonly" || Settings.status == "database_offline"
28   end
29
30   def permalink
31     lon, lat, zoom = ShortLink.decode(params[:code])
32     new_params = params.except(:host, :controller, :action, :code, :lon, :lat, :zoom, :layers, :node, :way, :relation, :changeset)
33
34     if new_params.key? :m
35       new_params.delete :m
36       new_params[:mlat] = lat
37       new_params[:mlon] = lon
38     end
39
40     new_params[:anchor] = "map=#{zoom}/#{lat}/#{lon}"
41     new_params[:anchor] += "&layers=#{params[:layers]}" if params.key? :layers
42
43     options = new_params.to_unsafe_h.to_options
44
45     path = if params.key? :node
46              node_path(params[:node], options)
47            elsif params.key? :way
48              way_path(params[:way], options)
49            elsif params.key? :relation
50              relation_path(params[:relation], options)
51            elsif params.key? :changeset
52              changeset_path(params[:changeset], options)
53            else
54              root_url(options)
55            end
56
57     redirect_to path
58   end
59
60   def key
61     expires_in 7.days, :public => true
62     @key = YAML.load_file(Rails.root.join("config/key.yml"))
63     @key.each_value do |layer_data|
64       layer_data.each do |entry|
65         entry["name"] = Array(entry["name"])
66       end
67       layer_data.each_cons(2) do |entry, next_entry|
68         entry["max_zoom"] = next_entry["min_zoom"] - 1 if entry["name"] == next_entry["name"] && !entry["max_zoom"] && next_entry["min_zoom"]
69       end
70     end
71     render :layout => false
72   end
73
74   def edit
75     editor = preferred_editor
76
77     if editor == "remote"
78       require_oauth
79       render :action => :index, :layout => map_layout
80       return
81     else
82       require_user
83     end
84
85     begin
86       if params[:node]
87         bbox = Node.visible.find(params[:node]).bbox.to_unscaled
88         @lat = bbox.centre_lat
89         @lon = bbox.centre_lon
90         @zoom = 18
91       elsif params[:way]
92         bbox = Way.visible.find(params[:way]).bbox.to_unscaled
93         @lat = bbox.centre_lat
94         @lon = bbox.centre_lon
95         @zoom = 17
96       elsif params[:note]
97         note = Note.visible.find(params[:note])
98         @lat = note.lat
99         @lon = note.lon
100         @zoom = 17
101       elsif params[:gpx] && current_user
102         trace = Trace.visible_to(current_user).find(params[:gpx])
103         @lat = trace.latitude
104         @lon = trace.longitude
105         @zoom = 16
106       end
107     rescue ActiveRecord::RecordNotFound
108       # don't try and derive a location from a missing/deleted object
109     end
110   end
111
112   def copyright
113     @title = t ".title"
114     @locale = params[:copyright_locale] || I18n.locale
115   end
116
117   def welcome; end
118
119   def help; end
120
121   def about
122     @locale = params[:about_locale] || I18n.locale
123   end
124
125   def communities
126     @local_chapters = Community.where(:type => "osm-lc").where.not(:id => "OSMF")
127   end
128
129   def export; end
130
131   def offline
132     flash.now[:warning] = if Settings.status == "database_offline"
133                             t("layouts.osm_offline")
134                           else
135                             t("layouts.osm_read_only")
136                           end
137     render :html => nil, :layout => true
138   end
139
140   def preview
141     if params[:text].blank?
142       flash.now[:warning] = t("layouts.nothing_to_preview")
143       render :partial => "layouts/flash"
144     else
145       render :html => RichText.new(params[:type], params[:text]).to_html
146     end
147   end
148
149   def id
150     render :layout => false
151   end
152
153   private
154
155   def redirect_browse_params
156     if params[:node]
157       redirect_to node_path(params[:node])
158     elsif params[:way]
159       redirect_to way_path(params[:way])
160     elsif params[:relation]
161       redirect_to relation_path(params[:relation])
162     elsif params[:note]
163       redirect_to note_path(params[:note])
164     elsif params[:query]
165       redirect_to search_path(:query => params[:query])
166     end
167   end
168
169   def redirect_map_params
170     anchor = []
171
172     anchor << "map=#{params.delete(:zoom) || 5}/#{params.delete(:lat)}/#{params.delete(:lon)}" if params[:lat] && params[:lon]
173
174     if params[:layers]
175       anchor << "layers=#{params.delete(:layers)}"
176     elsif params.delete(:notes) == "yes"
177       anchor << "layers=N"
178     end
179
180     redirect_to params.to_unsafe_h.merge(:only_path => true, :anchor => anchor.join("&")) if anchor.present?
181   end
182 end