2011-08-31 09:06:24 +04:00
|
|
|
# Redmine - project management software
|
2012-05-05 16:56:53 +04:00
|
|
|
# Copyright (C) 2006-2012 Jean-Philippe Lang
|
2006-07-29 13:32:58 +04:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-08-31 09:06:24 +04:00
|
|
|
#
|
2006-07-29 13:32:58 +04:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2011-08-31 09:06:24 +04:00
|
|
|
#
|
2006-07-29 13:32:58 +04:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
2012-02-19 22:13:46 +04:00
|
|
|
# Generic exception for when the AuthSource can not be reached
|
|
|
|
# (eg. can not connect to the LDAP)
|
|
|
|
class AuthSourceException < Exception; end
|
2012-07-07 13:36:04 +04:00
|
|
|
class AuthSourceTimeoutException < AuthSourceException; end
|
2012-02-19 22:13:46 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
class AuthSource < ActiveRecord::Base
|
2012-03-11 15:43:27 +04:00
|
|
|
include Redmine::SubclassFactory
|
2011-02-26 16:09:25 +03:00
|
|
|
include Redmine::Ciphering
|
2011-08-31 09:06:24 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
has_many :users
|
2011-08-31 09:06:24 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
validates_presence_of :name
|
|
|
|
validates_uniqueness_of :name
|
2008-07-19 14:47:19 +04:00
|
|
|
validates_length_of :name, :maximum => 60
|
2006-07-29 13:32:58 +04:00
|
|
|
|
|
|
|
def authenticate(login, password)
|
|
|
|
end
|
2011-08-31 09:06:24 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
def test_connection
|
|
|
|
end
|
2011-08-31 09:06:24 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
def auth_method_name
|
|
|
|
"Abstract"
|
|
|
|
end
|
2011-08-31 09:06:24 +04:00
|
|
|
|
2011-02-26 16:09:25 +03:00
|
|
|
def account_password
|
|
|
|
read_ciphered_attribute(:account_password)
|
|
|
|
end
|
2011-08-31 09:06:24 +04:00
|
|
|
|
2011-02-26 16:09:25 +03:00
|
|
|
def account_password=(arg)
|
|
|
|
write_ciphered_attribute(:account_password, arg)
|
|
|
|
end
|
2006-07-29 13:32:58 +04:00
|
|
|
|
2012-12-26 15:23:53 +04:00
|
|
|
def searchable?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.search(q)
|
|
|
|
results = []
|
|
|
|
AuthSource.all.each do |source|
|
|
|
|
begin
|
|
|
|
if source.searchable?
|
|
|
|
results += source.search(q)
|
|
|
|
end
|
|
|
|
rescue AuthSourceException => e
|
|
|
|
logger.error "Error while searching users in #{source.name}: #{e.message}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
results
|
|
|
|
end
|
|
|
|
|
2010-05-23 07:16:37 +04:00
|
|
|
def allow_password_changes?
|
|
|
|
self.class.allow_password_changes?
|
|
|
|
end
|
|
|
|
|
|
|
|
# Does this auth source backend allow password changes?
|
|
|
|
def self.allow_password_changes?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
# Try to authenticate a user not yet registered against available sources
|
|
|
|
def self.authenticate(login, password)
|
2012-07-07 17:53:38 +04:00
|
|
|
AuthSource.where(:onthefly_register => true).all.each do |source|
|
2006-07-29 13:32:58 +04:00
|
|
|
begin
|
|
|
|
logger.debug "Authenticating '#{login}' against '#{source.name}'" if logger && logger.debug?
|
|
|
|
attrs = source.authenticate(login, password)
|
2008-11-25 22:33:41 +03:00
|
|
|
rescue => e
|
|
|
|
logger.error "Error during authentication: #{e.message}"
|
2006-07-29 13:32:58 +04:00
|
|
|
attrs = nil
|
|
|
|
end
|
|
|
|
return attrs if attrs
|
|
|
|
end
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
end
|