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

class Project < ActiveRecord::Base
4
  include Repository
R
randx 已提交
5
  include PushObserver
6 7 8
  include Authority
  include Team

9 10
  attr_accessible :name, :path, :description, :code, :default_branch, :issues_enabled,
                  :wall_enabled, :merge_requests_enabled, :wiki_enabled
N
Nihad Abbasov 已提交
11
  attr_accessor :error_code
12

13
  # Relations
14
  belongs_to :group
15 16 17 18 19 20 21 22 23 24 25 26 27
  belongs_to :owner, class_name: "User"
  has_many :users,          through: :users_projects
  has_many :events,         dependent: :destroy
  has_many :merge_requests, dependent: :destroy
  has_many :issues,         dependent: :destroy, order: "closed, created_at DESC"
  has_many :milestones,     dependent: :destroy
  has_many :users_projects, dependent: :destroy
  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 :hooks,          dependent: :destroy, class_name: "ProjectHook"
  has_many :wikis,          dependent: :destroy
  has_many :protected_branches, dependent: :destroy
A
Aleksei Kvitinskii 已提交
28

29 30
  delegate :name, to: :owner, allow_nil: true, prefix: true

31
  # Scopes
32
  scope :public_only, where(private_flag: false)
D
Dmitriy Zaporozhets 已提交
33 34
  scope :without_user, ->(user)  { where("id NOT IN (:ids)", ids: user.projects.map(&:id) ) }
  scope :not_in_group, ->(group) { where("id NOT IN (:ids)", ids: group.project_ids ) }
G
gitlabhq 已提交
35

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

40
  def self.search query
V
Valeriy Sizov 已提交
41
    where("name LIKE :query OR code LIKE :query OR path LIKE :query", query: "%#{query}%")
42 43
  end

44 45 46 47 48
  def self.create_by_user(params, user)
    project = Project.new params

    Project.transaction do
      project.owner = user
49
      project.save!
50 51

      # Add user as project master
52
      project.users_projects.create!(project_access: UsersProject::MASTER, user: user)
53 54 55 56 57 58 59

      # when project saved no team member exist so
      # project repository should be updated after first user add
      project.update_repository
    end

    project
60 61 62 63 64
  rescue Gitlab::Gitolite::AccessDenied => ex
    project.error_code = :gitolite
    project
  rescue => ex
    project.error_code = :db
R
Robert Speicher 已提交
65
    project.errors.add(:base, "Can't save project. Please try again later")
66 67 68 69 70 71 72 73 74
    project
  end

  def git_error?
    error_code == :gitolite
  end

  def saved?
    id && valid?
75 76
  end

77
  # Validations
N
Nihad Abbasov 已提交
78 79 80 81
  validates :owner, presence: true
  validates :description, length: { within: 0..2000 }
  validates :name, uniqueness: true, presence: true, length: { within: 0..255 }
  validates :path, uniqueness: true, presence: true, length: { within: 0..255 },
82
            format: { with: /\A[a-zA-Z][a-zA-Z0-9_\-\.]*\z/,
N
Nihad Abbasov 已提交
83 84
                      message: "only letters, digits & '_' '-' '.' allowed. Letter should be first" }
  validates :code, presence: true, uniqueness: true, length: { within: 1..255 },
85
            format: { with: /\A[a-zA-Z][a-zA-Z0-9_\-\.]*\z/,
N
Nihad Abbasov 已提交
86
                      message: "only letters, digits & '_' '-' '.' allowed. Letter should be first" }
87 88
  validates :issues_enabled, :wall_enabled, :merge_requests_enabled,
            :wiki_enabled, inclusion: { in: [true, false] }
N
Nihad Abbasov 已提交
89
  validate :check_limit, :repo_name
90 91 92 93 94 95

  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
R
Robert Speicher 已提交
96
    errors[:base] << ("Can't check your ability to create project")
G
gitlabhq 已提交
97 98
  end

99 100 101 102 103
  def repo_name
    if path == "gitolite-admin"
      errors.add(:path, " like 'gitolite-admin' is not allowed")
    end
  end
V
Valeriy Sizov 已提交
104

105 106
  def self.access_options
    UsersProject.access_roles
A
Ariejan de Vroom 已提交
107 108
  end

109 110
  def to_param
    code
111 112
  end

113
  def web_url
114
    [Gitlab.config.url, code].join("/")
115 116
  end

G
gitlabhq 已提交
117
  def common_notes
118
    notes.where(noteable_type: ["", nil]).inc_author_project
G
gitlabhq 已提交
119 120
  end

121
  def build_commit_note(commit)
122
    notes.new(noteable_id: commit.id, noteable_type: "Commit")
G
gitlabhq 已提交
123
  end
N
Nihad Abbasov 已提交
124

125
  def commit_notes(commit)
126
    notes.where(noteable_id: commit.id, noteable_type: "Commit", line_code: nil)
D
Dmitriy Zaporozhets 已提交
127 128 129
  end

  def commit_line_notes(commit)
V
Valeriy Sizov 已提交
130
    notes.where(noteable_id: commit.id, noteable_type: "Commit").where("line_code IS NOT NULL")
G
gitlabhq 已提交
131
  end
N
Nihad Abbasov 已提交
132

G
gitlabhq 已提交
133 134 135 136 137 138 139 140
  def public?
    !private_flag
  end

  def private?
    private_flag
  end

N
Nihad Abbasov 已提交
141
  def last_activity
R
randx 已提交
142
    events.order("created_at ASC").last
G
gitlabhq 已提交
143 144 145
  end

  def last_activity_date
D
Dmitriy Zaporozhets 已提交
146 147
    if events.last
      events.last.created_at
148
    else
D
Dmitriy Zaporozhets 已提交
149
      updated_at
150
    end
D
Dmitriy Zaporozhets 已提交
151
  end
152

153
  def wiki_notes
N
Nihad Abbasov 已提交
154
    Note.where(noteable_id: wikis.pluck(:id), noteable_type: 'Wiki', project_id: self.id)
155 156
  end

D
Dmitriy Zaporozhets 已提交
157 158 159
  def project_id
    self.id
  end
G
gitlabhq 已提交
160
end
D
Dmitriy Zaporozhets 已提交
161

G
gitlabhq 已提交
162 163 164 165
# == Schema Information
#
# Table name: projects
#
N
Nihad Abbasov 已提交
166
#  id                     :integer         not null, primary key
167 168 169
#  name                   :string(255)
#  path                   :string(255)
#  description            :text
R
randx 已提交
170 171
#  created_at             :datetime        not null
#  updated_at             :datetime        not null
N
Nihad Abbasov 已提交
172
#  private_flag           :boolean         default(TRUE), not null
173
#  code                   :string(255)
N
Nihad Abbasov 已提交
174
#  owner_id               :integer
175
#  default_branch         :string(255)
N
Nihad Abbasov 已提交
176 177 178 179
#  issues_enabled         :boolean         default(TRUE), not null
#  wall_enabled           :boolean         default(TRUE), not null
#  merge_requests_enabled :boolean         default(TRUE), not null
#  wiki_enabled           :boolean         default(TRUE), not null
180
#  group_id               :integer
G
gitlabhq 已提交
181
#
182