2011-06-24 15:34:13 -04:00
|
|
|
class Devise::UnlocksController < DeviseController
|
2010-03-26 07:26:51 -04:00
|
|
|
prepend_before_filter :require_no_authentication
|
2010-02-08 13:07:24 -05:00
|
|
|
|
|
|
|
# GET /resource/unlock/new
|
|
|
|
def new
|
2013-04-14 02:21:46 -04:00
|
|
|
self.resource = resource_class.new
|
2010-02-08 13:07:24 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# POST /resource/unlock
|
|
|
|
def create
|
2012-05-15 04:07:02 -04:00
|
|
|
self.resource = resource_class.send_unlock_instructions(resource_params)
|
2013-11-05 22:33:41 -05:00
|
|
|
yield resource if block_given?
|
2010-02-08 13:07:24 -05:00
|
|
|
|
2011-10-15 04:51:40 -04:00
|
|
|
if successfully_sent?(resource)
|
2014-02-25 11:42:55 -05:00
|
|
|
respond_with({}, location: after_sending_unlock_instructions_path_for(resource))
|
2011-06-20 22:03:01 -04:00
|
|
|
else
|
2012-01-02 16:12:09 -05:00
|
|
|
respond_with(resource)
|
2010-02-08 13:07:24 -05:00
|
|
|
end
|
|
|
|
end
|
2009-12-30 12:19:33 -05:00
|
|
|
|
|
|
|
# GET /resource/unlock?unlock_token=abcdef
|
|
|
|
def show
|
2010-03-10 10:13:54 -05:00
|
|
|
self.resource = resource_class.unlock_access_by_token(params[:unlock_token])
|
2013-11-05 22:33:41 -05:00
|
|
|
yield resource if block_given?
|
2009-12-30 12:19:33 -05:00
|
|
|
|
|
|
|
if resource.errors.empty?
|
2013-11-01 16:47:40 -04:00
|
|
|
set_flash_message :notice, :unlocked if is_flashing_format?
|
2012-04-17 07:38:50 -04:00
|
|
|
respond_with_navigational(resource){ redirect_to after_unlock_path_for(resource) }
|
2009-12-30 12:19:33 -05:00
|
|
|
else
|
2014-02-25 11:42:55 -05:00
|
|
|
respond_with_navigational(resource.errors, status: :unprocessable_entity){ render :new }
|
2009-12-30 12:19:33 -05:00
|
|
|
end
|
|
|
|
end
|
2012-04-17 04:04:06 -04:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
# The path used after sending unlock password instructions
|
2012-04-22 09:05:26 -04:00
|
|
|
def after_sending_unlock_instructions_path_for(resource)
|
2013-05-07 04:18:23 -04:00
|
|
|
new_session_path(resource) if is_navigational_format?
|
2012-04-17 04:04:06 -04:00
|
|
|
end
|
|
|
|
|
2012-04-17 07:38:50 -04:00
|
|
|
# The path used after unlocking the resource
|
|
|
|
def after_unlock_path_for(resource)
|
2013-05-07 04:18:23 -04:00
|
|
|
new_session_path(resource) if is_navigational_format?
|
2012-04-17 07:38:50 -04:00
|
|
|
end
|
|
|
|
|
2009-12-30 12:19:33 -05:00
|
|
|
end
|