1 class UserController < ApplicationController
4 before_filter :authorize, :only => [:api_details, :api_gpx_files]
5 before_filter :authorize_web, :only => [:account, :go_public, :view, :diary, :make_friend]
6 before_filter :require_user, :only => [:set_home, :account, :go_public, :make_friend]
8 filter_parameter_logging :password, :pass_crypt, :pass_crypt_confirmation
11 @title = 'create account'
12 @user = User.new(params[:user])
16 flash[:notice] = "User was successfully created. Check your email for a confirmation note, and you\'ll be mapping in no time :-)<br>Please note that you won't be able to login until you've received and confirmed your email address."
17 Notifier::deliver_signup_confirm(@user)
18 redirect_to :action => 'login'
20 render :action => 'new'
25 @title = 'edit account'
26 if params[:user] and params[:user][:display_name] and params[:user][:description]
27 home_lat = params[:user][:home_lat]
28 home_lon = params[:user][:home_lon]
30 @user.display_name = params[:user][:display_name]
31 if params[:user][:pass_crypt].length > 0 or params[:user][:pass_crypt_confirmation].length > 0
32 @user.pass_crypt = params[:user][:pass_crypt]
33 @user.pass_crypt_confirmation = params[:user][:pass_crypt_confirmation]
35 @user.description = params[:user][:description]
36 @user.home_lat = home_lat.to_f
37 @user.home_lon = home_lon.to_f
39 flash[:notice] = "User information updated successfully."
47 if params[:user][:home_lat] and params[:user][:home_lon]
48 @user.home_lat = params[:user][:home_lat].to_f
49 @user.home_lon = params[:user][:home_lon].to_f
51 flash[:notice] = "Home location saved successfully."
52 redirect_to :controller => 'user', :action => 'account'
58 @user.data_public = true
60 flash[:notice] = 'All your edits are now public.'
61 redirect_to :controller => 'user', :action => 'account', :display_name => @user.display_name
65 @title = 'lost password'
66 if params[:user] and params[:user][:email]
67 user = User.find_by_email(params['user']['email'])
69 user.token = User.make_token
71 Notifier::deliver_lost_password(user)
72 flash[:notice] = "Sorry you lost it :-( but an email is on its way so you can reset it soon."
74 flash[:notice] = "Couldn't find that email address, sorry."
77 render :action => 'lost_password'
82 @title = 'reset password'
84 user = User.find_by_token(params['token'])
86 pass = User.make_token(8)
87 user.pass_crypt = pass
88 user.pass_crypt_confirmation = pass
91 Notifier::deliver_reset_password(user, pass)
92 flash[:notice] = "Your password has been changed and is on its way to your mailbox :-)"
94 flash[:notice] = "Didn't find that token, check the URL maybe?"
97 redirect_to :action => 'login'
101 @title = 'create account'
107 email = params[:user][:email]
108 pass = params[:user][:password]
109 u = User.authenticate(email, pass)
111 u.token = User.make_token
112 u.timeout = 1.day.from_now
114 session[:token] = u.token
116 redirect_to params[:referer]
118 redirect_to :controller => 'site', :action => 'index'
121 elsif User.authenticate(email, pass, false)
122 flash[:notice] = "Sorry, your account is not active yet.<br>Please click on the link in the account confirmation email to activate your account."
124 flash[:notice] = "Sorry, couldn't log in with those details."
131 u = User.find_by_token(session[:token])
133 u.token = User.make_token
138 session[:token] = nil
140 redirect_to params[:referer]
142 redirect_to :controller => 'site', :action => 'index'
147 @user = User.find_by_token(params[:confirm_string])
148 if @user && @user.active == 0
150 @user.token = User.make_token
151 @user.timeout = 1.day.from_now
153 flash[:notice] = 'Confirmed your account, thanks for signing up!'
154 session[:token] = @user.token
155 redirect_to :action => 'account', :display_name => @user.display_name
157 flash[:notice] = 'Something went wrong confirming that user.'
162 render :text => @user.to_xml.to_s, :content_type => "text/xml"
166 doc = OSM::API.new.get_xml_doc
167 @user.traces.each do |trace|
168 doc.root << trace.to_xml_node() if trace.public? or trace.user == @user
170 render :text => doc.to_s, :content_type => "text/xml"
174 @this_user = User.find_by_display_name(params[:display_name])
175 @title = @this_user.display_name
180 if params[:display_name]
181 name = params[:display_name]
183 friend.user_id = @user.id
184 friend.friend_user_id = User.find_by_display_name(name).id
185 unless @user.is_friends_with?(friend)
187 flash[:notice] = "#{name} is now your friend."
189 friend.add_error("Sorry, failed to add #{name} as a friend.")
192 flash[:notice] = "You are already friends with #{name}."
194 redirect_to :controller => 'user', :action => 'view'