]> git.openstreetmap.org Git - rails.git/blob - app/controllers/user_controller.rb
Validate passwords properly when creating an account. Fixes #419.
[rails.git] / app / controllers / user_controller.rb
1 class UserController < ApplicationController
2   layout 'site'
3
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]
7
8   def save
9     @user = User.new(params[:user])
10     @user.set_defaults
11
12     if @user.save
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'
16     else
17       render :action => 'new'
18     end
19   end
20
21   def edit
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]
25
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
30       if @user.save
31         flash[:notice] = "User information updated successfully."
32         redirect_to :controller => 'user', :action => 'account'
33       end
34     end
35   end
36
37   def set_home
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
41       if @user.save
42         flash[:notice] = "Home location saved successfully."
43         redirect_to :controller => 'user', :action => 'account'
44       end
45     end
46   end
47
48   def go_public
49     @user.data_public = true
50     @user.save
51     flash[:notice] = 'All your edits are now public.'
52     redirect_to :controller => 'user', :action => 'account', :display_name => @user.display_name
53   end
54
55   def lost_password
56     if params[:user] and params[:user][:email]
57       user = User.find_by_email(params['user']['email'])
58       if user
59         user.token = User.make_token
60         user.save
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."
63       else
64         flash[:notice] = "Couldn't find that email address, sorry."
65       end
66     else
67       render :action => 'lost_password'
68     end
69   end
70
71   def reset_password
72     if params['token']
73       user = User.find_by_token(params['token'])
74       if user
75         pass = User.make_token(8)
76         user.pass_crypt = pass
77         user.pass_crypt_confirmation = pass
78         user.save
79         Notifier::deliver_reset_password(user, pass)
80         flash[:notice] = "Your password has been changed and is on its way to your mailbox :-)"
81       else
82         flash[:notice] = "Didn't find that token, check the URL maybe?"
83       end
84     end
85     redirect_to :action => 'login'
86   end
87
88   def new
89   end
90
91   def login
92     if params[:user]
93       email = params[:user][:email]
94       pass = params[:user][:password]
95       u = User.authenticate(email, pass)
96       if u
97         u.token = User.make_token
98         u.timeout = 1.day.from_now
99         u.save
100         session[:token] = u.token
101         if params[:next_controller] and params[:next_action]
102           redirect_to :controller => params[:next_controller], :action => params[:next_action]
103         else
104           redirect_to :controller => 'site', :action => 'index'
105         end
106         return
107       else
108         flash[:notice] = "Sorry, couldn't log in with those details."
109       end
110     end
111   end
112
113   def logout
114     if session[:token]
115       u = User.find_by_token(session[:token])
116       if u
117         u.token = User.make_token
118         u.timeout = Time.now
119         u.save
120       end
121     end
122     session[:token] = nil
123     if params[:next_controller] and params[:next_action]
124       redirect_to :controller => params[:next_controller], :action => params[:next_action]
125     else
126       redirect_to :controller => 'site', :action => 'index'
127     end
128   end
129
130   def confirm
131     @user = User.find_by_token(params[:confirm_string])
132     if @user && @user.active == 0
133       @user.active = true
134       @user.save
135       flash[:notice] = 'Confirmed your account, thanks for signing up!'
136
137       #FIXME: login the person magically
138
139       redirect_to :action => 'login'
140     else
141       flash[:notice] = 'Something went wrong confirming that user.'
142     end
143   end
144
145   def preferences
146     if request.get?
147       render_text @user.preferences
148     elsif request.post? or request.put?
149       @user.preferences = request.raw_post
150       @user.save!
151       render :nothing => true
152     else
153       render :status => 400, :nothing => true
154     end
155   end
156
157   def api_details
158     render :text => @user.to_xml.to_s
159   end
160
161   def api_gpx_files
162     doc = OSM::API.new.get_xml_doc
163     @user.traces.each do |trace|
164       doc.root << trace.to_xml_node() if trace.public? or trace.user == @user
165     end
166     render :text => doc.to_s
167   end
168
169   def view
170     @this_user = User.find_by_display_name(params[:display_name])
171   end
172
173   def diary
174     @this_user = User.find_by_display_name(params[:display_name])
175   end
176
177   def make_friend
178
179     if params[:display_name]     
180       name = params[:display_name]
181       friend = Friend.new
182       friend.user_id = @user.id
183       friend.friend_user_id = User.find_by_display_name(name).id 
184       unless @user.is_friends_with?(friend)
185         if friend.save
186           flash[:notice] = "#{name} is now your friend."
187         else
188           friend.add_error("Sorry, failed to add #{name} as a friend.")
189         end
190       else
191         flash[:notice] = "You are already friends with #{name}."  
192       end
193         redirect_to :controller => 'user', :action => 'view'
194     end
195   end
196
197 end
198