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