2011-03-09 16:16:48 +00:00
|
|
|
class User < ActiveRecord::Base
|
2011-11-21 13:26:32 +00:00
|
|
|
ROLES = ['admin']
|
2012-01-17 11:48:40 +00:00
|
|
|
LANGUAGES = [['Russian', 'ru'], ['English', 'en']]
|
2011-10-23 22:39:44 +01:00
|
|
|
|
2011-10-26 10:31:58 +01:00
|
|
|
devise :database_authenticatable, :registerable, :omniauthable, # :token_authenticatable, :encryptable, :timeoutable
|
2011-10-11 21:56:51 +01:00
|
|
|
:recoverable, :rememberable, :validatable #, :trackable, :confirmable, :lockable
|
2011-10-21 18:17:49 +01:00
|
|
|
|
2012-01-11 13:58:13 +00:00
|
|
|
has_one :notifier, :class_name => 'Settings::Notifier' #:notifier
|
|
|
|
|
2011-10-21 18:17:49 +01:00
|
|
|
has_many :authentications, :dependent => :destroy
|
2011-12-21 21:42:06 +00:00
|
|
|
has_many :build_lists, :dependent => :destroy
|
2011-10-21 18:17:49 +01:00
|
|
|
|
2011-11-19 11:41:11 +00:00
|
|
|
has_many :relations, :as => :object, :dependent => :destroy
|
2011-10-13 16:55:03 +01:00
|
|
|
has_many :targets, :as => :object, :class_name => 'Relation'
|
|
|
|
|
2011-11-01 22:33:20 +00:00
|
|
|
has_many :own_projects, :as => :owner, :class_name => 'Project', :dependent => :destroy
|
2011-10-18 16:00:06 +01:00
|
|
|
has_many :own_groups, :foreign_key => :owner_id, :class_name => 'Group'
|
2011-11-01 22:33:20 +00:00
|
|
|
has_many :own_platforms, :as => :owner, :class_name => 'Platform', :dependent => :destroy
|
|
|
|
has_many :own_repositories, :as => :owner, :class_name => 'Repository', :dependent => :destroy
|
2011-10-18 16:00:06 +01:00
|
|
|
|
2011-10-17 15:23:51 +01:00
|
|
|
has_many :groups, :through => :targets, :source => :target, :source_type => 'Group', :autosave => true
|
|
|
|
has_many :projects, :through => :targets, :source => :target, :source_type => 'Project', :autosave => true
|
|
|
|
has_many :platforms, :through => :targets, :source => :target, :source_type => 'Platform', :autosave => true
|
|
|
|
has_many :repositories, :through => :targets, :source => :target, :source_type => 'Repository', :autosave => true
|
2011-10-13 16:55:03 +01:00
|
|
|
|
2011-11-24 21:46:19 +00:00
|
|
|
include Modules::Models::PersonalRepository
|
2011-10-27 14:04:03 +01:00
|
|
|
|
2011-11-24 21:46:19 +00:00
|
|
|
validates :uname, :presence => true, :uniqueness => {:case_sensitive => false}, :format => { :with => /^[a-z0-9_]+$/ }
|
2011-10-26 21:57:51 +01:00
|
|
|
validate { errors.add(:uname, :taken) if Group.where('uname LIKE ?', uname).present? }
|
2011-11-18 18:35:12 +00:00
|
|
|
validates :ssh_key, :uniqueness => true, :allow_blank => true
|
2011-11-21 13:17:25 +00:00
|
|
|
validates :role, :inclusion => {:in => ROLES}, :allow_blank => true
|
2011-03-10 21:48:15 +00:00
|
|
|
|
2012-01-17 11:48:40 +00:00
|
|
|
attr_accessible :email, :password, :password_confirmation, :remember_me, :login, :name, :ssh_key, :uname, :language
|
2011-10-20 15:05:06 +01:00
|
|
|
attr_readonly :uname
|
2011-10-11 21:56:51 +01:00
|
|
|
attr_accessor :login
|
|
|
|
|
2012-01-11 13:58:13 +00:00
|
|
|
after_create :create_settings_notifier
|
|
|
|
|
2011-11-15 20:05:08 +00:00
|
|
|
def admin?
|
2011-11-16 18:45:01 +00:00
|
|
|
role == 'admin'
|
2011-11-15 20:05:08 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def guest?
|
2011-11-24 21:46:19 +00:00
|
|
|
self.id.blank? # persisted?
|
2011-11-15 20:05:08 +00:00
|
|
|
end
|
|
|
|
|
2011-12-20 17:09:29 +00:00
|
|
|
def fullname
|
|
|
|
return "#{uname} (#{name})"
|
|
|
|
end
|
2011-10-11 21:56:51 +01:00
|
|
|
class << self
|
|
|
|
def find_for_database_authentication(warden_conditions)
|
|
|
|
conditions = warden_conditions.dup
|
|
|
|
login = conditions.delete(:login)
|
2011-10-20 15:05:06 +01:00
|
|
|
where(conditions).where(["lower(uname) = :value OR lower(email) = :value", { :value => login.downcase }]).first
|
2011-10-11 21:56:51 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def new_with_session(params, session)
|
|
|
|
super.tap do |user|
|
|
|
|
if data = session["devise.omniauth_data"]
|
2011-12-06 19:57:03 +00:00
|
|
|
if info = data['info'] and info.present?
|
2011-10-13 11:19:42 +01:00
|
|
|
user.email = info['email'].presence if user.email.blank?
|
2011-10-21 18:17:49 +01:00
|
|
|
user.uname ||= info['nickname'].presence || info['username'].presence
|
2011-10-11 21:56:51 +01:00
|
|
|
user.name ||= info['name'].presence || [info['first_name'], info['last_name']].join(' ').strip
|
|
|
|
end
|
|
|
|
user.password = Devise.friendly_token[0,20] # stub password
|
|
|
|
user.authentications.build :uid => data['uid'], :provider => data['provider']
|
|
|
|
end
|
2011-03-29 23:16:04 +01:00
|
|
|
end
|
2011-03-10 21:48:15 +00:00
|
|
|
end
|
2011-10-11 21:56:51 +01:00
|
|
|
end
|
2011-03-10 21:48:15 +00:00
|
|
|
|
2011-10-11 21:56:51 +01:00
|
|
|
def update_with_password(params={})
|
|
|
|
params.delete(:current_password)
|
|
|
|
# self.update_without_password(params) # Don't allow password update
|
|
|
|
if params[:password].blank?
|
|
|
|
params.delete(:password)
|
|
|
|
params.delete(:password_confirmation) if params[:password_confirmation].blank?
|
2011-03-10 21:48:15 +00:00
|
|
|
end
|
2011-10-11 21:56:51 +01:00
|
|
|
result = update_attributes(params)
|
|
|
|
clean_up_passwords
|
|
|
|
result
|
|
|
|
end
|
2012-01-11 13:58:13 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def create_settings_notifier
|
|
|
|
self.create_notifier
|
|
|
|
end
|
2011-11-20 22:10:53 +00:00
|
|
|
|
2011-03-09 16:16:48 +00:00
|
|
|
end
|