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