mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
40 lines
811 B
Ruby
40 lines
811 B
Ruby
|
class UserAuthenticator
|
||
|
def initialize(user, session, authenticator_finder = Users::OmniauthCallbacksController)
|
||
|
@user = user
|
||
|
@session = session[:authentication]
|
||
|
@authenticator_finder = authenticator_finder
|
||
|
end
|
||
|
|
||
|
def start
|
||
|
if authenticated?
|
||
|
@user.active = true
|
||
|
else
|
||
|
@user.password_required!
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def finish
|
||
|
if authenticator
|
||
|
authenticator.after_create_account(@user, @session)
|
||
|
end
|
||
|
|
||
|
@session = nil
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def authenticated?
|
||
|
@session && @session[:email] == @user.email && @session[:email_valid]
|
||
|
end
|
||
|
|
||
|
def authenticator
|
||
|
if authenticator_name
|
||
|
@authenticator ||= @authenticator_finder.find_authenticator(authenticator_name)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def authenticator_name
|
||
|
@session && @session[:authenticator_name]
|
||
|
end
|
||
|
end
|