project.rb 7.4 KB
Newer Older
D
Dmitriy Zaporozhets 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# == Schema Information
#
# Table name: projects
#
#  id                     :integer          not null, primary key
#  name                   :string(255)
#  path                   :string(255)
#  description            :text
#  created_at             :datetime         not null
#  updated_at             :datetime         not null
#  private_flag           :boolean          default(TRUE), not null
#  owner_id               :integer
#  default_branch         :string(255)
#  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
D
Dmitriy Zaporozhets 已提交
18
#  namespace_id           :integer
D
Dmitriy Zaporozhets 已提交
19 20
#

G
gitlabhq 已提交
21 22 23
require "grit"

class Project < ActiveRecord::Base
24
  include Repository
R
randx 已提交
25
  include PushObserver
26 27 28
  include Authority
  include Team

29
  attr_accessible :name, :path, :description, :default_branch, :issues_enabled,
30 31 32 33
                  :wall_enabled, :merge_requests_enabled, :wiki_enabled, as: [:default, :admin]

  attr_accessible :namespace_id, as: :admin

N
Nihad Abbasov 已提交
34
  attr_accessor :error_code
35

36
  # Relations
37
  belongs_to :group, foreign_key: "namespace_id", conditions: "type = 'Group'"
38
  belongs_to :namespace
39 40 41 42 43 44 45 46 47 48 49 50 51
  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
52
  has_one :last_event, class_name: 'Event', order: 'events.created_at DESC', foreign_key: 'project_id'
D
Dmitriy Zaporozhets 已提交
53
  has_one :gitlab_ci_service, dependent: :destroy
A
Aleksei Kvitinskii 已提交
54

55 56
  delegate :name, to: :owner, allow_nil: true, prefix: true

A
Andrey Kumanyaev 已提交
57 58 59
  # Validations
  validates :owner, presence: true
  validates :description, length: { within: 0..2000 }
60 61
  validates :name, presence: true, length: { within: 0..255 }
  validates :path, presence: true, length: { within: 0..255 },
A
Andrey Kumanyaev 已提交
62 63 64 65
            format: { with: /\A[a-zA-Z][a-zA-Z0-9_\-\.]*\z/,
                      message: "only letters, digits & '_' '-' '.' allowed. Letter should be first" }
  validates :issues_enabled, :wall_enabled, :merge_requests_enabled,
            :wiki_enabled, inclusion: { in: [true, false] }
66

67 68 69
  validates_uniqueness_of :name, scope: :namespace_id
  validates_uniqueness_of :path, scope: :namespace_id

A
Andrey Kumanyaev 已提交
70 71
  validate :check_limit, :repo_name

72
  # Scopes
73
  scope :public_only, where(private_flag: false)
D
Dmitriy Zaporozhets 已提交
74 75
  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 已提交
76

A
Andrey Kumanyaev 已提交
77 78 79 80
  class << self
    def active
      joins(:issues, :notes, :merge_requests).order("issues.created_at, notes.created_at, merge_requests.created_at DESC")
    end
81

A
Andrey Kumanyaev 已提交
82
    def search query
83
      where("projects.name LIKE :query OR projects.path LIKE :query", query: "%#{query}%")
A
Andrey Kumanyaev 已提交
84
    end
85

86 87 88 89 90 91 92 93 94 95
    def find_with_namespace(id)
      if id.include?("/")
        id = id.split("/")
        namespace_id = Namespace.find_by_path(id.first).id
        where(namespace_id: namespace_id).find_by_path(id.last)
      else
        find_by_path(id)
      end
    end

A
Andrey Kumanyaev 已提交
96
    def create_by_user(params, user)
97
      namespace_id = params.delete(:namespace_id)
98

A
Andrey Kumanyaev 已提交
99 100 101
      project = Project.new params

      Project.transaction do
102

103
        # Parametrize path for project
104
        #
105 106 107 108
        # Ex.
        #  'GitLab HQ'.parameterize => "gitlab-hq"
        #
        project.path = project.name.dup.parameterize
109

A
Andrey Kumanyaev 已提交
110
        project.owner = user
111 112 113 114 115 116 117 118 119 120 121 122

        # Apply namespace if user has access to it
        # else fallback to user namespace
        project.namespace_id = user.namespace_id

        if namespace_id
          group = Group.find_by_id(namespace_id)
          if user.can? :manage_group, group
            project.namespace_id = namespace_id
          end
        end

A
Andrey Kumanyaev 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
        project.save!

        # Add user as project master
        project.users_projects.create!(project_access: UsersProject::MASTER, user: user)

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

      project
    rescue Gitlab::Gitolite::AccessDenied => ex
      project.error_code = :gitolite
      project
    rescue => ex
      project.error_code = :db
      project.errors.add(:base, "Can't save project. Please try again later")
      project
141 142
    end

A
Andrey Kumanyaev 已提交
143 144 145
    def access_options
      UsersProject.access_roles
    end
146 147 148 149 150 151 152 153
  end

  def git_error?
    error_code == :gitolite
  end

  def saved?
    id && valid?
154 155
  end

156 157 158 159 160
  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 已提交
161
    errors[:base] << ("Can't check your ability to create project")
G
gitlabhq 已提交
162 163
  end

164
  def repo_name
165 166 167 168
    denied_paths = %w(gitolite-admin groups projects dashboard)

    if denied_paths.include?(path)
      errors.add(:path, "like #{path} is not allowed")
169 170
    end
  end
V
Valeriy Sizov 已提交
171

172
  def to_param
173
    if namespace
174
      namespace.path + "/" + path
175
    else
176
      path
177
    end
178 179
  end

180
  def web_url
181
    [Gitlab.config.url, path].join("/")
182 183
  end

G
gitlabhq 已提交
184
  def common_notes
185
    notes.where(noteable_type: ["", nil]).inc_author_project
G
gitlabhq 已提交
186 187
  end

188
  def build_commit_note(commit)
189
    notes.new(noteable_id: commit.id, noteable_type: "Commit")
G
gitlabhq 已提交
190
  end
N
Nihad Abbasov 已提交
191

192
  def commit_notes(commit)
193
    notes.where(noteable_id: commit.id, noteable_type: "Commit", line_code: nil)
D
Dmitriy Zaporozhets 已提交
194 195 196
  end

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

G
gitlabhq 已提交
200 201 202 203 204 205 206 207
  def public?
    !private_flag
  end

  def private?
    private_flag
  end

N
Nihad Abbasov 已提交
208
  def last_activity
209
    last_event
G
gitlabhq 已提交
210 211 212
  end

  def last_activity_date
213
    last_event.try(:created_at) || updated_at
D
Dmitriy Zaporozhets 已提交
214
  end
215

216
  def wiki_notes
N
Nihad Abbasov 已提交
217
    Note.where(noteable_id: wikis.pluck(:id), noteable_type: 'Wiki', project_id: self.id)
218 219
  end

D
Dmitriy Zaporozhets 已提交
220 221 222
  def project_id
    self.id
  end
R
randx 已提交
223 224 225 226

  def issues_labels
    issues.tag_counts_on(:labels)
  end
227 228 229 230

  def services
    [gitlab_ci_service].compact
  end
D
Dmitriy Zaporozhets 已提交
231 232 233 234

  def gitlab_ci?
    gitlab_ci_service && gitlab_ci_service.active
  end
235 236 237

  def path_with_namespace
    if namespace
238
      namespace.path + '/' + path
239 240 241 242
    else
      path
    end
  end
243

244 245 246
  # For compatibility with old code
  def code
    path
247
  end
248 249 250 251 252 253 254 255 256 257 258 259 260 261

  def transfer(new_namespace)
    Project.transaction do
      old_namespace = namespace
      self.namespace = new_namespace

      old_dir = old_namespace.try(:path) || ''
      new_dir = new_namespace.try(:path) || ''

      Gitlab::ProjectMover.new(self, old_dir, new_dir).execute

      save!
    end
  end
262 263 264 265 266 267 268 269 270 271

  def name_with_namespace
    @name_with_namespace ||= begin
                               if namespace
                                 namespace.human_name + " / " + name
                               else
                                 name
                               end
                             end
  end
G
gitlabhq 已提交
272
end