2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +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-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
class AuthSource < ActiveRecord::Base
|
2011-02-26 16:09:25 +03:00
|
|
|
include Redmine::Ciphering
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
has_many :users
|
2011-05-30 22:52:25 +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-05-30 22:52:25 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
def test_connection
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
def auth_method_name
|
|
|
|
"Abstract"
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-02-26 16:09:25 +03:00
|
|
|
def account_password
|
|
|
|
read_ciphered_attribute(:account_password)
|
|
|
|
end
|
2011-05-30 22:52:25 +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
|
|
|
|
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)
|
|
|
|
AuthSource.find(:all, :conditions => ["onthefly_register=?", true]).each do |source|
|
|
|
|
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
|