1 class UserController < ApplicationController
4 before_filter :authorize, :only => [:preferences, :api_details, :api_gpx_files]
5 before_filter :authorize_web, :only => [:edit, :account, :go_public, :view, :diary, :make_friend]
6 before_filter :require_user, :only => [:edit, :set_home, :account, :go_public, :make_friend]
9 @user = User.new(params[:user])
13 flash[:notice] = 'User was successfully created. Check your email for a confirmation note, and you\'ll be mapping in no time :-)'
14 Notifier::deliver_signup_confirm(@user)
15 redirect_to :action => 'login'
17 render :action => 'new'
22 if params[:user] and params[:user][:display_name] and params[:user][:description]
23 home_lat = params[:user][:home_lat]
24 home_lon = params[:user][:home_lon]
26 @user.display_name = params[:user][:display_name]
27 @user.description = params[:user][:description]
28 @user.home_lat = home_lat.to_f
29 @user.home_lon = home_lon.to_f
31 flash[:notice] = "User information updated successfully."
32 redirect_to :controller => 'user', :action => 'account'
38 if params[:user][:home_lat] and params[:user][:home_lon]
39 @user.home_lat = params[:user][:home_lat].to_f
40 @user.home_lon = params[:user][:home_lon].to_f
42 flash[:notice] = "Home location saved successfully."
43 redirect_to :controller => 'user', :action => 'account'
49 @user.data_public = true
51 flash[:notice] = 'All your edits are now public.'
52 redirect_to :controller => 'user', :action => 'account', :display_name => @user.display_name
56 if params[:user] and params[:user][:email]
57 user = User.find_by_email(params['user']['email'])
59 user.token = User.make_token
61 Notifier::deliver_lost_password(user)
62 flash[:notice] = "Sorry you lost it :-( but an email is on its way so you can reset it soon."
64 flash[:notice] = "Couldn't find that email address, sorry."
67 render :action => 'lost_password'
73 user = User.find_by_token(params['token'])
75 pass = User.make_token(8)
76 user.pass_crypt = pass
78 Notifier::deliver_reset_password(user, pass)
79 flash[:notice] = "Your password has been changed and is on its way to your mailbox :-)"
81 flash[:notice] = "Didn't find that token, check the URL maybe?"
84 redirect_to :action => 'login'
92 email = params[:user][:email]
93 pass = params[:user][:password]
94 u = User.authenticate(email, pass)
96 u.token = User.make_token
97 u.timeout = 1.day.from_now
99 session[:token] = u.token
100 if params[:next_controller] and params[:next_action]
101 redirect_to :controller => params[:next_controller], :action => params[:next_action]
103 redirect_to :controller => 'site', :action => 'index'
107 flash[:notice] = "Sorry, couldn't log in with those details."
114 u = User.find_by_token(session[:token])
116 u.token = User.make_token
121 session[:token] = nil
122 if params[:next_controller] and params[:next_action]
123 redirect_to :controller => params[:next_controller], :action => params[:next_action]
125 redirect_to :controller => 'site', :action => 'index'
130 @user = User.find_by_token(params[:confirm_string])
131 if @user && @user.active == 0
134 flash[:notice] = 'Confirmed your account, thanks for signing up!'
136 #FIXME: login the person magically
138 redirect_to :action => 'login'
140 flash[:notice] = 'Something went wrong confirming that user.'
146 render_text @user.preferences
147 elsif request.post? or request.put?
148 @user.preferences = request.raw_post
150 render :nothing => true
152 render :status => 400, :nothing => true
157 render :text => @user.to_xml.to_s
161 doc = OSM::API.new.get_xml_doc
162 @user.traces.each do |trace|
163 doc.root << trace.to_xml_node() if trace.public? or trace.user == @user
165 render :text => doc.to_s
169 @this_user = User.find_by_display_name(params[:display_name])
173 @this_user = User.find_by_display_name(params[:display_name])
178 if params[:display_name]
179 name = params[:display_name]
181 friend.user_id = @user.id
182 friend.friend_user_id = User.find_by_display_name(name).id
183 unless @user.is_friends_with?(friend)
185 flash[:notice] = "#{name} is now your friend."
187 friend.add_error("Sorry, failed to add #{name} as a friend.")
190 flash[:notice] = "You are already friends with #{name}."
192 redirect_to :controller => 'user', :action => 'view'