@@ -10,11+10,11 @@ class UserController < ApplicationController
def save
@title = 'create account'
@user = User.new(params[:user])
def save
@title = 'create account'
@user = User.new(params[:user])
- @user.set_defaults
if @user.save
if @user.save
+ token = @user.tokens.create
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."
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."
- Notifier::deliver_signup_confirm(@user)
+ Notifier::deliver_signup_confirm(@user, token)
redirect_to :action => 'login'
else
render :action => 'new'
redirect_to :action => 'login'
else
render :action => 'new'
@@ -64,11+64,10 @@ class UserController < ApplicationController
def lost_password
@title = 'lost password'
if params[:user] and params[:user][:email]
def lost_password
@title = 'lost password'
if params[:user] and params[:user][:email]
- user = User.find_by_email(params['user']['email'])
+ user = User.find_by_email(params[:user][:email])
if user
if user
- user.token = User.make_token
- user.save
- Notifier::deliver_lost_password(user)
+ token = user.tokens.create
+ Notifier::deliver_lost_password(user, token)
flash[:notice] = "Sorry you lost it :-( but an email is on its way so you can reset it soon."
else
flash[:notice] = "Couldn't find that email address, sorry."
flash[:notice] = "Sorry you lost it :-( but an email is on its way so you can reset it soon."
else
flash[:notice] = "Couldn't find that email address, sorry."
@@ -81,13+80,15 @@ class UserController < ApplicationController
def reset_password
@title = 'reset password'
if params['token']
def reset_password
@title = 'reset password'
if params['token']
- user = User.find_by_token(params['token'])
- if user
- pass = User.make_token(8)
+ token = UserToken.find_by_token(params[:token])
+ if token
+ pass = OSM::make_token(8)
+ user = token.user
user.pass_crypt = pass
user.pass_crypt_confirmation = pass
user.active = true
user.pass_crypt = pass
user.pass_crypt_confirmation = pass
user.active = true
- user.save
+ user.save!
+ token.destroy
Notifier::deliver_reset_password(user, pass)
flash[:notice] = "Your password has been changed and is on its way to your mailbox :-)"
else
Notifier::deliver_reset_password(user, pass)
flash[:notice] = "Your password has been changed and is on its way to your mailbox :-)"
else
@@ -106,19+107,16 @@ class UserController < ApplicationController
if params[:user]
email = params[:user][:email]
pass = params[:user][:password]
if params[:user]
email = params[:user][:email]
pass = params[:user][:password]
- u = User.authenticate(email, pass)
- if u
- u.token = User.make_token
- u.timeout = 1.day.from_now
- u.save
- session[:token] = u.token
+ user = User.authenticate(:username => email, :password => pass)