X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/72e33046c80bddc0ca9b1336786dcb4b349137f7..6659fb9b33503ee6519f89131a8a4b5fef515bcd:/app/controllers/site_controller.rb diff --git a/app/controllers/site_controller.rb b/app/controllers/site_controller.rb index 21ef26bac..0e26185a1 100644 --- a/app/controllers/site_controller.rb +++ b/app/controllers/site_controller.rb @@ -1,12 +1,16 @@ class SiteController < ApplicationController layout 'site', :except => [:key, :permalink] + layout false, :only => [:key, :permalink] before_filter :authorize_web before_filter :set_locale before_filter :require_user, :only => [:edit] + before_filter :require_oauth, :only => [:index] - def export - render :action => 'index' + def index + unless STATUS == :database_readonly or STATUS == :database_offline + session[:location] ||= OSM::IPLocation(request.env['REMOTE_ADDR']) + end end def permalink @@ -36,47 +40,33 @@ class SiteController < ApplicationController if editor == "remote" render :action => :index - else - # Decide on a lat lon to initialise potlatch with. Various ways of doing this - if params['lon'] and params['lat'] - @lon = params['lon'].to_f - @lat = params['lat'].to_f - @zoom = params['zoom'].to_i - - elsif params['mlon'] and params['mlat'] - @lon = params['mlon'].to_f - @lat = params['mlat'].to_f - @zoom = params['zoom'].to_i - - elsif params['bbox'] - bbox = params['bbox'].split(",") - - @lon = ( bbox[0].to_f + bbox[2].to_f ) / 2.0 - @lat = ( bbox[1].to_f + bbox[3].to_f ) / 2.0 - @zoom = 16 - - elsif params['minlon'] and params['minlat'] and params['maxlon'] and params['maxlat'] - @lon = ( params['maxlon'].to_f + params['minlon'].to_f ) / 2.0 - @lat = ( params['maxlat'].to_f + params['minlat'].to_f ) / 2.0 - @zoom = 16 - - elsif params['gpx'] - @lon = Trace.find(params['gpx']).longitude - @lat = Trace.find(params['gpx']).latitude + return + end - elsif cookies.key?("_osm_location") - @lon, @lat, @zoom, layers = cookies["_osm_location"].split("|") + if params[:node] + bbox = Node.find(params[:node]).bbox.to_unscaled + @lat = bbox.centre_lat + @lon = bbox.centre_lon + elsif params[:way] + bbox = Way.find(params[:way]).bbox.to_unscaled + @lat = bbox.centre_lat + @lon = bbox.centre_lon + elsif params[:gpx] + trace = Trace.visible_to(@user).find(params[:gpx]) + @lat = trace.latitude + @lon = trace.longitude + end + end - elsif @user and !@user.home_lon.nil? and !@user.home_lat.nil? - @lon = @user.home_lon - @lat = @user.home_lat + def copyright + @locale = params[:copyright_locale] || I18n.locale + end - else - #catch all. Do nothing. lat=nil, lon=nil - #Currently this results in potlatch starting up at 0,0 (Atlantic ocean). - end + def preview + render :text => RichText.new(params[:format], params[:text]).to_html + end - @zoom = '17' if @zoom.nil? - end + def id + render "id", :layout => false end end