project.rb 5.24 KB
Newer Older
gitlabhq's avatar
gitlabhq committed
1 2 3
require "grit"

class Project < ActiveRecord::Base
4
  include Repository
randx's avatar
randx committed
5
  include PushObserver
6 7 8 9 10
  include Authority
  include Team

  #
  # Relations
11
  #
12 13 14 15 16 17 18 19 20 21 22 23 24
  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
Aleksei Kvitinskii's avatar
Aleksei Kvitinskii committed
25

26 27
  attr_accessor :error_code

28
  #
29 30
  # Protected attributes
  #
31
  attr_protected :private_flag, :owner_id
gitlabhq's avatar
gitlabhq committed
32

33
  #
34 35
  # Scopes
  #
36 37
  scope :public_only, where(private_flag: false)
  scope :without_user, lambda { |user|  where("id not in (:ids)", ids: user.projects.map(&:id) ) }
gitlabhq's avatar
gitlabhq committed
38

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

43
  def self.search query
44
    where("name like :query or code like :query or path like :query", query: "%#{query}%")
45 46
  end

47 48 49 50 51 52
  def self.create_by_user(params, user)
    project = Project.new params

    Project.transaction do
      project.owner = user

53
      project.save!
54 55

      # Add user as project master
56
      project.users_projects.create!(project_access: UsersProject::MASTER, user: user)
57 58 59 60 61 62 63

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

    project
64 65 66 67 68
  rescue Gitlab::Gitolite::AccessDenied => ex
    project.error_code = :gitolite
    project
  rescue => ex
    project.error_code = :db
Robert Speicher's avatar
Robert Speicher committed
69
    project.errors.add(:base, "Can't save project. Please try again later")
70 71 72 73 74 75 76 77 78
    project
  end

  def git_error?
    error_code == :gitolite
  end

  def saved?
    id && valid?
79 80
  end

81 82 83 84
  #
  # Validations
  #
  validates :name,
85 86 87
            uniqueness: true,
            presence: true,
            length: { within: 0..255 }
88 89

  validates :path,
90 91 92 93 94
            uniqueness: true,
            presence: true,
            format: { with: /^[a-zA-Z][a-zA-Z0-9_\-\.]*$/,
                         message: "only letters, digits & '_' '-' '.' allowed. Letter should be first" },
            length: { within: 0..255 }
95 96

  validates :description,
97
            length: { within: 0..2000 }
98 99

  validates :code,
100 101 102 103 104
            presence: true,
            uniqueness: true,
            format: { with: /^[a-zA-Z][a-zA-Z0-9_\-\.]*$/,
                         message: "only letters, digits & '_' '-' '.' allowed. Letter should be first"  },
            length: { within: 1..255 }
105

106
  validates :owner, presence: true
107 108
  validates :issues_enabled, :wall_enabled, :merge_requests_enabled,
            :wiki_enabled, inclusion: { in: [true, false] }
109 110 111 112 113 114 115 116
  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
Robert Speicher's avatar
Robert Speicher committed
117
    errors[:base] << ("Can't check your ability to create project")
gitlabhq's avatar
gitlabhq committed
118 119
  end

120 121 122 123 124
  def repo_name
    if path == "gitolite-admin"
      errors.add(:path, " like 'gitolite-admin' is not allowed")
    end
  end
Valeriy Sizov's avatar
Valeriy Sizov committed
125

126 127
  def self.access_options
    UsersProject.access_roles
128 129
  end

130 131
  def to_param
    code
132 133
  end

134
  def web_url
135
    [Gitlab.config.url, code].join("/")
136 137
  end

gitlabhq's avatar
gitlabhq committed
138
  def common_notes
139
    notes.where(noteable_type: ["", nil]).inc_author_project
gitlabhq's avatar
gitlabhq committed
140 141
  end

142
  def build_commit_note(commit)
143
    notes.new(noteable_id: commit.id, noteable_type: "Commit")
gitlabhq's avatar
gitlabhq committed
144
  end
Nihad Abbasov's avatar
Nihad Abbasov committed
145

146
  def commit_notes(commit)
147
    notes.where(noteable_id: commit.id, noteable_type: "Commit", line_code: nil)
148 149 150
  end

  def commit_line_notes(commit)
151
    notes.where(noteable_id: commit.id, noteable_type: "Commit").where("line_code is not null")
gitlabhq's avatar
gitlabhq committed
152
  end
Nihad Abbasov's avatar
Nihad Abbasov committed
153

gitlabhq's avatar
gitlabhq committed
154 155 156 157 158 159 160 161
  def public?
    !private_flag
  end

  def private?
    private_flag
  end

162
  def last_activity
randx's avatar
randx committed
163
    events.order("created_at ASC").last
gitlabhq's avatar
gitlabhq committed
164 165 166
  end

  def last_activity_date
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
167 168
    if events.last
      events.last.created_at
169
    else
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
170
      updated_at
171
    end
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
172
  end
173

174 175 176 177
  def wiki_notes
    Note.where(noteable_id: wikis.map(&:id), noteable_type: 'Wiki', project_id: self.id)
  end

178 179 180
  def project_id
    self.id
  end
gitlabhq's avatar
gitlabhq committed
181
end
182

gitlabhq's avatar
gitlabhq committed
183 184 185 186
# == Schema Information
#
# Table name: projects
#
randx's avatar
randx committed
187
#  id                     :integer(4)      not null, primary key
188 189 190
#  name                   :string(255)
#  path                   :string(255)
#  description            :text
randx's avatar
randx committed
191 192 193
#  created_at             :datetime        not null
#  updated_at             :datetime        not null
#  private_flag           :boolean(1)      default(TRUE), not null
194
#  code                   :string(255)
randx's avatar
randx committed
195
#  owner_id               :integer(4)
196
#  default_branch         :string(255)
randx's avatar
randx committed
197 198 199 200
#  issues_enabled         :boolean(1)      default(TRUE), not null
#  wall_enabled           :boolean(1)      default(TRUE), not null
#  merge_requests_enabled :boolean(1)      default(TRUE), not null
#  wiki_enabled           :boolean(1)      default(TRUE), not null
gitlabhq's avatar
gitlabhq committed
201 202
#