2013-08-17 21:48:01 +00:00
|
|
|
# Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2014-05-03 12:34:36 +00:00
|
|
|
class Auth
|
|
|
|
include ApplicationLib
|
2013-08-17 21:48:01 +00:00
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
authenticate user via username and password
|
|
|
|
|
|
|
|
result = Auth.check( username, password, user )
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
result = user_model # if authentication was successfully
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def self.check(username, password, user)
|
|
|
|
|
|
|
|
# use std. auth backends
|
|
|
|
config = [
|
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
adapter: 'Auth::Internal',
|
2013-08-17 21:48:01 +00:00
|
|
|
},
|
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
adapter: 'Auth::Developer',
|
2013-08-17 21:48:01 +00:00
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
# added configured backends
|
2015-04-27 13:42:53 +00:00
|
|
|
Setting.where( area: 'Security::Authentication' ).each {|setting|
|
2013-08-17 21:48:01 +00:00
|
|
|
if setting.state[:value]
|
|
|
|
config.push setting.state[:value]
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
# try to login against configure auth backends
|
|
|
|
user_auth = nil
|
|
|
|
config.each {|config_item|
|
|
|
|
next if !config_item[:adapter]
|
|
|
|
|
|
|
|
# load backend
|
|
|
|
backend = self.load_adapter( config_item[:adapter] )
|
|
|
|
return if !backend
|
|
|
|
|
|
|
|
user_auth = backend.check( username, password, config_item, user )
|
|
|
|
|
|
|
|
# auth ok
|
|
|
|
if user_auth
|
|
|
|
|
2015-05-05 05:55:06 +00:00
|
|
|
Rails.logger.info "Authentication against #{config_item[:adapter]} for user #{user.login} ok."
|
|
|
|
|
2013-08-17 21:48:01 +00:00
|
|
|
# remember last login date
|
|
|
|
user_auth.update_last_login
|
|
|
|
|
|
|
|
return user_auth
|
|
|
|
end
|
|
|
|
}
|
2015-05-01 07:48:10 +00:00
|
|
|
nil
|
|
|
|
end
|
2013-08-17 21:48:01 +00:00
|
|
|
end
|