]> git.openstreetmap.org Git - rails.git/blob - app/controllers/user_controller.rb
Fixed up name search and postcode search
[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]
6   before_filter :require_user, :only => [:edit, :account, :go_public]
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       @user.display_name = params[:user][:display_name]
24       @user.description = params[:user][:description]
25       if @user.save
26         flash[:notice] = "User edited OK."
27         redirect_to :controller => 'user', :action => 'account'
28       end
29     end
30   end
31
32   def set_home
33     if params[:user][:home_lat] and params[:user][:home_lon]
34     lat = params[:user][:home_lat]
35     lon = params[:user][:home_lon]
36     unless 
37       #check the lat and lon
38     end
39     #make an api request to insert a new node
40     #get the onde id
41     end
42     end
43
44   def go_public
45     @user.data_public = true
46     @user.save
47     flash[:notice] = 'All your edits are now public'
48     redirect_to :controller => 'user', :action => 'account'
49   end
50
51   def lost_password
52     if params['user']['email']
53       user = User.find_by_email(params['user']['email'])
54       if user
55         user.token = User.make_token
56         user.save
57         Notifier::deliver_lost_password(user)
58         flash[:notice] = "Sorry you lost it :-( but an email is on it's way so you can reset it soon."
59       else
60         flash[:notice] = "Couldn't find that email address, sorry."
61       end
62     end
63   end
64
65   def reset_password
66     if params['token']
67       user = User.find_by_token(params['token'])
68       if user
69         pass = User.make_token(8)
70         user.pass_crypt = pass
71         user.save
72         Notifier::deliver_reset_password(user, pass)
73         flash[:notice] = "You're password has been changed and is on the way to your mailbox :-)"
74       else
75         flash[:notice] = "Didn't find that token, check the URL maybe?"
76       end
77     end
78     redirect_to :action => 'login'
79   end
80
81   def new
82   end
83
84   def login
85     if params[:user]
86       email = params[:user][:email]
87       pass = params[:user][:password]
88       u = User.authenticate(email, pass)
89       if u
90         u.token = User.make_token
91         u.timeout = 1.day.from_now
92         u.save
93         session[:token] = u.token
94         redirect_to :controller => 'site', :action => 'index'
95         return
96       else
97         flash[:notice] = "Couldn't log in with those details"
98       end
99     end
100   end
101
102   def logout
103     if session[:token]
104       u = User.find_by_token(session[:token])
105       if u
106         u.token = User.make_token
107         u.timeout = Time.now
108         u.save
109       end
110     end
111     session[:token] = nil
112     redirect_to :controller => 'site', :action => 'index'
113   end
114
115   def confirm
116     @user = User.find_by_token(params[:confirm_string])
117     if @user && @user.active == 0
118       @user.active = true
119       @user.save
120       flash[:notice] = 'Confirmed your account, thanks for signing up!'
121
122       #FIXME: login the person magically
123
124       redirect_to :action => 'login'
125     else
126       flash[:notice] = 'Something went wrong confirming that user'
127     end
128   end
129
130   def preferences
131     if request.get?
132       render_text @user.preferences
133     elsif request.post? or request.put?
134       @user.preferences = request.raw_post
135       @user.save!
136       render :nothing => true
137     else
138       render :status => 400, :nothing => true
139     end
140   end
141
142   def api_details
143     render :text => @user.to_xml.to_s
144   end
145
146   def api_gpx_files
147     doc = OSM::API.new.get_xml_doc
148     @user.traces.each do |trace|
149       doc.root << trace.to_xml_node() if trace.public? or trace.user == @user
150     end
151     render :text => doc.to_s
152   end
153
154   def view
155     @this_user = User.find_by_display_name(params[:display_name])
156   end
157
158   def diary
159     @this_user = User.find_by_display_name(params[:display_name])
160   end
161
162
163 end
164