2011-10-08 23:36:38 +02:00
|
|
|
class User < ActiveRecord::Base
|
|
|
|
# Include default devise modules. Others available are:
|
|
|
|
# :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
|
2011-11-15 08:08:05 +01:00
|
|
|
devise :database_authenticatable, :token_authenticatable,
|
2012-01-21 19:36:14 +01:00
|
|
|
:recoverable, :rememberable, :trackable, :validatable, :omniauthable
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
# Setup accessible (or protected) attributes for your model
|
2012-03-24 00:01:36 +01:00
|
|
|
attr_accessible :email, :password, :password_confirmation, :remember_me, :bio,
|
2012-03-01 20:23:50 +01:00
|
|
|
:name, :projects_limit, :skype, :linkedin, :twitter, :dark_scheme, :theme_id
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
has_many :users_projects, :dependent => :destroy
|
|
|
|
has_many :projects, :through => :users_projects
|
2011-10-09 13:05:31 +02:00
|
|
|
has_many :my_own_projects, :class_name => "Project", :foreign_key => :owner_id
|
2011-10-08 23:36:38 +02:00
|
|
|
has_many :keys, :dependent => :destroy
|
2012-03-24 00:01:36 +01:00
|
|
|
|
|
|
|
has_many :recent_events,
|
|
|
|
:class_name => "Event",
|
|
|
|
:foreign_key => :author_id,
|
|
|
|
:order => "id DESC"
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
has_many :issues,
|
|
|
|
:foreign_key => :author_id,
|
|
|
|
:dependent => :destroy
|
|
|
|
|
2011-11-10 08:46:04 +01:00
|
|
|
has_many :notes,
|
|
|
|
:foreign_key => :author_id,
|
|
|
|
:dependent => :destroy
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
has_many :assigned_issues,
|
|
|
|
:class_name => "Issue",
|
|
|
|
:foreign_key => :assignee_id,
|
|
|
|
:dependent => :destroy
|
|
|
|
|
2011-12-08 01:07:02 +01:00
|
|
|
has_many :merge_requests,
|
|
|
|
:foreign_key => :author_id,
|
|
|
|
:dependent => :destroy
|
|
|
|
|
|
|
|
has_many :assigned_merge_requests,
|
|
|
|
:class_name => "MergeRequest",
|
|
|
|
:foreign_key => :assignee_id,
|
|
|
|
:dependent => :destroy
|
|
|
|
|
2012-01-03 22:39:03 +01:00
|
|
|
validates :projects_limit,
|
|
|
|
:presence => true,
|
|
|
|
:numericality => {:greater_than_or_equal_to => 0}
|
|
|
|
|
2012-03-24 00:01:36 +01:00
|
|
|
validates :bio, :length => { :within => 0..255 }
|
2012-01-03 22:39:03 +01:00
|
|
|
|
2011-11-15 08:08:05 +01:00
|
|
|
before_create :ensure_authentication_token
|
2011-11-15 08:25:26 +01:00
|
|
|
alias_attribute :private_token, :authentication_token
|
2012-04-16 22:33:03 +02:00
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
scope :not_in_project, lambda { |project| where("id not in (:ids)", :ids => project.users.map(&:id) ) }
|
2012-04-16 22:33:03 +02:00
|
|
|
scope :admins, where(:admin => true)
|
|
|
|
scope :blocked, where(:blocked => true)
|
|
|
|
scope :active, where(:blocked => false)
|
|
|
|
|
|
|
|
def self.filter filter_name
|
|
|
|
case filter_name
|
|
|
|
when "admins"; self.admins
|
|
|
|
when "blocked"; self.blocked
|
|
|
|
when "wop"; self.without_projects
|
|
|
|
else
|
|
|
|
self.active
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.without_projects
|
|
|
|
where('id NOT IN (SELECT DISTINCT(user_id) FROM users_projects)')
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
|
|
|
|
def identifier
|
2011-11-18 07:32:22 +01:00
|
|
|
email.gsub /[@.]/, "_"
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def is_admin?
|
|
|
|
admin
|
|
|
|
end
|
2011-10-09 20:15:01 +02:00
|
|
|
|
2012-04-16 22:33:03 +02:00
|
|
|
|
2011-12-19 22:32:59 +01:00
|
|
|
def require_ssh_key?
|
|
|
|
keys.count == 0
|
|
|
|
end
|
|
|
|
|
2011-10-09 20:15:01 +02:00
|
|
|
def can_create_project?
|
2011-12-19 23:07:05 +01:00
|
|
|
projects_limit > my_own_projects.count
|
2011-10-09 20:15:01 +02:00
|
|
|
end
|
2011-10-11 22:00:00 +02:00
|
|
|
|
|
|
|
def last_activity_project
|
|
|
|
projects.first
|
|
|
|
end
|
2012-01-21 19:36:14 +01:00
|
|
|
|
|
|
|
def self.generate_random_password
|
|
|
|
(0...8).map{ ('a'..'z').to_a[rand(26)] }.join
|
2012-02-18 13:12:48 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def first_name
|
|
|
|
name.split(" ").first unless name.blank?
|
|
|
|
end
|
2012-01-28 14:23:17 +01:00
|
|
|
|
2012-02-17 18:10:50 +01:00
|
|
|
def self.find_for_ldap_auth(omniauth_info)
|
|
|
|
name = omniauth_info.name
|
2012-02-24 15:35:44 +01:00
|
|
|
email = omniauth_info.email.downcase
|
2012-01-28 14:23:17 +01:00
|
|
|
|
|
|
|
if @user = User.find_by_email(email)
|
|
|
|
@user
|
|
|
|
else
|
|
|
|
password = generate_random_password
|
2012-02-17 18:10:50 +01:00
|
|
|
@user = User.create(:name => name,
|
2012-01-28 14:23:17 +01:00
|
|
|
:email => email,
|
|
|
|
:password => password,
|
|
|
|
:password_confirmation => password
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2012-03-16 00:31:46 +01:00
|
|
|
|
|
|
|
def cared_merge_requests
|
|
|
|
MergeRequest.where("author_id = :id or assignee_id = :id", :id => self.id).opened
|
|
|
|
end
|
2012-04-14 10:16:11 +02:00
|
|
|
|
|
|
|
def project_ids
|
|
|
|
projects.map(&:id)
|
|
|
|
end
|
2012-04-16 22:33:03 +02:00
|
|
|
|
|
|
|
# Remove user from all projects and
|
|
|
|
# set blocked attribute to true
|
|
|
|
def block
|
|
|
|
users_projects.all.each do |membership|
|
|
|
|
return false unless membership.destroy
|
|
|
|
end
|
|
|
|
|
|
|
|
self.blocked = true
|
|
|
|
save
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: users
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# email :string(255) default(""), not null
|
|
|
|
# encrypted_password :string(128) default(""), not null
|
|
|
|
# reset_password_token :string(255)
|
|
|
|
# reset_password_sent_at :datetime
|
|
|
|
# remember_created_at :datetime
|
|
|
|
# sign_in_count :integer default(0)
|
|
|
|
# current_sign_in_at :datetime
|
|
|
|
# last_sign_in_at :datetime
|
|
|
|
# current_sign_in_ip :string(255)
|
|
|
|
# last_sign_in_ip :string(255)
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# name :string(255)
|
|
|
|
# admin :boolean default(FALSE), not null
|
2011-11-16 09:32:35 +01:00
|
|
|
# projects_limit :integer default(10)
|
|
|
|
# skype :string(255) default(""), not null
|
|
|
|
# linkedin :string(255) default(""), not null
|
|
|
|
# twitter :string(255) default(""), not null
|
|
|
|
# authentication_token :string(255)
|
2012-01-03 22:39:03 +01:00
|
|
|
# dark_scheme :boolean default(FALSE), not null
|
2011-10-08 23:36:38 +02:00
|
|
|
#
|
|
|
|
|