1 class UserController < ApplicationController
4 before_filter :authorize, :only => [:preferences, :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]
9 @title = 'create account'
10 @user = User.new(params[:user])
14 flash[:notice] = 'User was successfully created. Check your email for a confirmation note, and you\'ll be mapping in no time :-)'
15 Notifier::deliver_signup_confirm(@user)
16 redirect_to :action => 'login'
18 render :action => 'new'
23 @title = 'edit account'
24 if params[:user] and params[:user][:display_name] and params[:user][:description]
25 home_lat = params[:user][:home_lat]
26 home_lon = params[:user][:home_lon]
28 @user.display_name = params[:user][:display_name]
29 if params[:user][:pass_crypt].length > 0 or params[:user][:pass_crypt_confirmation].length > 0
30 @user.pass_crypt = params[:user][:pass_crypt]
31 @user.pass_crypt_confirmation = params[:user][:pass_crypt_confirmation]
33 @user.description = params[:user][:description]
34 @user.home_lat = home_lat.to_f
35 @user.home_lon = home_lon.to_f
37 flash[:notice] = "User information updated successfully."
45 if params[:user][:home_lat] and params[:user][:home_lon]
46 @user.home_lat = params[:user][:home_lat].to_f
47 @user.home_lon = params[:user][:home_lon].to_f
49 flash[:notice] = "Home location saved successfully."
50 redirect_to :controller => 'user', :action => 'account'
56 @user.data_public = true
58 flash[:notice] = 'All your edits are now public.'
59 redirect_to :controller => 'user', :action => 'account', :display_name => @user.display_name
63 @title = 'lost password'
64 if params[:user] and params[:user][:email]
65 user = User.find_by_email(params['user']['email'])
67 user.token = User.make_token
69 Notifier::deliver_lost_password(user)
70 flash[:notice] = "Sorry you lost it :-( but an email is on its way so you can reset it soon."
72 flash[:notice] = "Couldn't find that email address, sorry."
75 render :action => 'lost_password'
80 @title = 'reset password'
82 user = User.find_by_token(params['token'])
84 pass = User.make_token(8)
85 user.pass_crypt = pass
86 user.pass_crypt_confirmation = pass
89 Notifier::deliver_reset_password(user, pass)
90 flash[:notice] = "Your password has been changed and is on its way to your mailbox :-)"
92 flash[:notice] = "Didn't find that token, check the URL maybe?"
95 redirect_to :action => 'login'
99 @title = 'create account'
105 email = params[:user][:email]
106 pass = params[:user][:password]
107 u = User.authenticate(email, pass)
109 u.token = User.make_token
110 u.timeout = 1.day.from_now
112 session[:token] = u.token
114 redirect_to params[:referer]
116 redirect_to :controller => 'site', :action => 'index'
120 flash[:notice] = "Sorry, couldn't log in with those details."
127 u = User.find_by_token(session[:token])
129 u.token = User.make_token
134 session[:token] = nil
136 redirect_to params[:referer]
138 redirect_to :controller => 'site', :action => 'index'
143 @user = User.find_by_token(params[:confirm_string])
144 if @user && @user.active == 0
146 @user.token = User.make_token
147 @user.timeout = 1.day.from_now
149 flash[:notice] = 'Confirmed your account, thanks for signing up!'
150 session[:token] = @user.token
151 redirect_to :action => 'account', :display_name => @user.display_name
153 flash[:notice] = 'Something went wrong confirming that user.'
158 @title = 'preferences'
160 render_text @user.preferences
161 elsif request.post? or request.put?
162 @user.preferences = request.raw_post
164 render :nothing => true
166 render :status => 400, :nothing => true
171 render :text => @user.to_xml.to_s
175 doc = OSM::API.new.get_xml_doc
176 @user.traces.each do |trace|
177 doc.root << trace.to_xml_node() if trace.public? or trace.user == @user
179 render :text => doc.to_s
183 @this_user = User.find_by_display_name(params[:display_name])
184 @title = @this_user.display_name
188 @this_user = User.find_by_display_name(params[:display_name])
189 @title = @this_user.display_name + "'s diary"
194 if params[:display_name]
195 name = params[:display_name]
197 friend.user_id = @user.id
198 friend.friend_user_id = User.find_by_display_name(name).id
199 unless @user.is_friends_with?(friend)
201 flash[:notice] = "#{name} is now your friend."
203 friend.add_error("Sorry, failed to add #{name} as a friend.")
206 flash[:notice] = "You are already friends with #{name}."
208 redirect_to :controller => 'user', :action => 'view'