gitlabhq/app/models/user.rb

132 lines
3.8 KiB
Ruby
Raw Normal View History

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
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
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
2011-10-08 23:36:38 +02:00
scope :not_in_project, lambda { |project| where("id not in (:ids)", :ids => project.users.map(&:id) ) }
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
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
def self.find_for_ldap_auth(omniauth_info)
name = omniauth_info.name
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
@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
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
#