project.rb 4.3 KB
Newer Older
G
gitlabhq 已提交
1 2 3
require "grit"

class Project < ActiveRecord::Base
4 5 6 7 8 9 10 11
  include Repository
  include GitPush
  include Authority
  include Team

  #
  # Relations
  # 
G
gitlabhq 已提交
12
  belongs_to :owner, :class_name => "User"
13 14
  has_many :users,          :through => :users_projects
  has_many :events,         :dependent => :destroy
D
Dmitriy Zaporozhets 已提交
15
  has_many :merge_requests, :dependent => :destroy
16
  has_many :issues,         :dependent => :destroy, :order => "position"
D
Dmitriy Zaporozhets 已提交
17
  has_many :milestones,     :dependent => :destroy
G
gitlabhq 已提交
18
  has_many :users_projects, :dependent => :destroy
19 20 21 22 23
  has_many :notes,          :dependent => :destroy
  has_many :snippets,       :dependent => :destroy
  has_many :deploy_keys,    :dependent => :destroy, :foreign_key => "project_id", :class_name => "Key"
  has_many :web_hooks,      :dependent => :destroy
  has_many :wikis,          :dependent => :destroy
24
  has_many :protected_branches, :dependent => :destroy
A
Aleksei Kvitinskii 已提交
25

26 27 28
  # 
  # Protected attributes
  #
V
Valera Sizov 已提交
29
  attr_protected :private_flag, :owner_id
G
gitlabhq 已提交
30

31 32 33
  # 
  # Scopes
  #
G
gitlabhq 已提交
34
  scope :public_only, where(:private_flag => false)
D
Dmitriy Zaporozhets 已提交
35
  scope :without_user, lambda { |user|  where("id not in (:ids)", :ids => user.projects.map(&:id) ) }
G
gitlabhq 已提交
36

37 38 39
  def self.active
    joins(:issues, :notes, :merge_requests).order("issues.created_at, notes.created_at, merge_requests.created_at DESC")
  end
40

41 42 43 44
  def self.search query
    where("name like :query or code like :query or path like :query", :query => "%#{query}%")
  end

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
  #
  # Validations
  #
  validates :name,
            :uniqueness => true,
            :presence => true,
            :length   => { :within => 0..255 }

  validates :path,
            :uniqueness => true,
            :presence => true,
            :format => { :with => /^[a-zA-Z0-9_\-\.]*$/,
                         :message => "only letters, digits & '_' '-' '.' allowed" },
            :length   => { :within => 0..255 }

  validates :description,
            :length   => { :within => 0..2000 }

  validates :code,
            :presence => true,
            :uniqueness => true,
            :format => { :with => /^[a-zA-Z0-9_\-\.]*$/,
                         :message => "only letters, digits & '_' '-' '.' allowed"  },
            :length   => { :within => 1..255 }

  validates :owner, :presence => true
  validate :check_limit
  validate :repo_name

  def check_limit
    unless owner.can_create_project?
      errors[:base] << ("Your own projects limit is #{owner.projects_limit}! Please contact administrator to increase it")
    end
  rescue
    errors[:base] << ("Cant check your ability to create project")
G
gitlabhq 已提交
80 81
  end

82 83 84 85 86 87 88 89
  def repo_name
    if path == "gitolite-admin"
      errors.add(:path, " like 'gitolite-admin' is not allowed")
    end
  end
  
  def self.access_options
    UsersProject.access_roles
A
Ariejan de Vroom 已提交
90 91
  end

92 93
  def to_param
    code
94 95
  end

96 97
  def web_url
    [GIT_HOST['host'], code].join("/")
98 99
  end

G
gitlabhq 已提交
100
  def common_notes
G
gitlabhq 已提交
101
    notes.where(:noteable_type => ["", nil]).inc_author_project
G
gitlabhq 已提交
102 103
  end

104 105
  def build_commit_note(commit)
    notes.new(:noteable_id => commit.id, :noteable_type => "Commit")
G
gitlabhq 已提交
106
  end
N
Nihad Abbasov 已提交
107

108
  def commit_notes(commit)
D
Dmitriy Zaporozhets 已提交
109 110 111 112
    notes.where(:noteable_id => commit.id, :noteable_type => "Commit", :line_code => nil)
  end

  def commit_line_notes(commit)
V
Valery Sizov 已提交
113
    notes.where(:noteable_id => commit.id, :noteable_type => "Commit").where("line_code is not null")
G
gitlabhq 已提交
114
  end
N
Nihad Abbasov 已提交
115

G
gitlabhq 已提交
116 117 118 119 120 121 122 123
  def public?
    !private_flag
  end

  def private?
    private_flag
  end

N
Nihad Abbasov 已提交
124
  def last_activity
125
    events.last || nil
G
gitlabhq 已提交
126 127 128
  end

  def last_activity_date
D
Dmitriy Zaporozhets 已提交
129 130
    if events.last
      events.last.created_at
131
    else
D
Dmitriy Zaporozhets 已提交
132
      updated_at
133
    end
D
Dmitriy Zaporozhets 已提交
134
  end
135

D
Dmitriy Zaporozhets 已提交
136 137 138
  def project_id
    self.id
  end
G
gitlabhq 已提交
139
end
D
Dmitriy Zaporozhets 已提交
140

G
gitlabhq 已提交
141 142 143 144
# == Schema Information
#
# Table name: projects
#
145 146 147 148 149 150 151 152 153 154 155 156 157
#  id                     :integer         not null, primary key
#  name                   :string(255)
#  path                   :string(255)
#  description            :text
#  created_at             :datetime
#  updated_at             :datetime
#  private_flag           :boolean         default(TRUE), not null
#  code                   :string(255)
#  owner_id               :integer
#  default_branch         :string(255)     default("master"), not null
#  issues_enabled         :boolean         default(TRUE), not null
#  wall_enabled           :boolean         default(TRUE), not null
#  merge_requests_enabled :boolean         default(TRUE), not null
D
Dmitriy Zaporozhets 已提交
158
#  wiki_enabled           :boolean         default(TRUE), not null
G
gitlabhq 已提交
159 160
#