2010-02-17 06:25:20 -05:00
|
|
|
class Devise::ConfirmationsController < ApplicationController
|
2010-01-13 12:12:13 -05:00
|
|
|
include Devise::Controllers::InternalHelpers
|
2010-02-08 13:07:24 -05:00
|
|
|
|
|
|
|
# GET /resource/confirmation/new
|
|
|
|
def new
|
2010-07-13 13:46:44 -04:00
|
|
|
build_resource({})
|
2010-02-08 13:07:24 -05:00
|
|
|
render_with_scope :new
|
|
|
|
end
|
|
|
|
|
|
|
|
# POST /resource/confirmation
|
|
|
|
def create
|
|
|
|
self.resource = resource_class.send_confirmation_instructions(params[resource_name])
|
|
|
|
|
|
|
|
if resource.errors.empty?
|
2011-01-15 15:13:14 -05:00
|
|
|
set_flash_message(:notice, :send_instructions) if is_navigational_format?
|
2011-04-15 03:39:54 -04:00
|
|
|
respond_with resource, :location => after_resending_confirmation_instructions_path_for(resource_name)
|
2010-02-08 13:07:24 -05:00
|
|
|
else
|
2011-03-30 08:09:12 -04:00
|
|
|
respond_with_navigational(resource){ render_with_scope :new }
|
2010-02-08 13:07:24 -05:00
|
|
|
end
|
|
|
|
end
|
2009-10-07 23:53:04 -04:00
|
|
|
|
2009-11-10 15:55:13 -05:00
|
|
|
# GET /resource/confirmation?confirmation_token=abcdef
|
2009-10-07 23:53:04 -04:00
|
|
|
def show
|
2010-03-10 10:13:54 -05:00
|
|
|
self.resource = resource_class.confirm_by_token(params[:confirmation_token])
|
2009-10-12 07:37:28 -04:00
|
|
|
|
2009-10-11 21:11:58 -04:00
|
|
|
if resource.errors.empty?
|
2011-01-15 15:13:14 -05:00
|
|
|
set_flash_message(:notice, :confirmed) if is_navigational_format?
|
|
|
|
sign_in(resource_name, resource)
|
2011-03-30 08:09:12 -04:00
|
|
|
respond_with_navigational(resource){ redirect_to redirect_location(resource_name, resource) }
|
2009-10-07 23:53:04 -04:00
|
|
|
else
|
2011-03-30 08:09:12 -04:00
|
|
|
respond_with_navigational(resource.errors, :status => :unprocessable_entity){ render_with_scope :new }
|
2009-10-07 23:53:04 -04:00
|
|
|
end
|
|
|
|
end
|
2011-04-15 03:39:54 -04:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
# The path used after resending confirmation instructions.
|
|
|
|
def after_resending_confirmation_instructions_path_for(resource_name)
|
|
|
|
new_session_path(resource_name)
|
|
|
|
end
|
2009-10-07 23:53:04 -04:00
|
|
|
end
|