project.rb 5.17 KB
Newer Older
gitlabhq's avatar
gitlabhq committed
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
  # 
gitlabhq's avatar
gitlabhq committed
12
  belongs_to :owner, :class_name => "User"
13 14
  has_many :users,          :through => :users_projects
  has_many :events,         :dependent => :destroy
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
15
  has_many :merge_requests, :dependent => :destroy
16
  has_many :issues,         :dependent => :destroy, :order => "closed, created_at DESC"
17
  has_many :milestones,     :dependent => :destroy
gitlabhq's avatar
gitlabhq committed
18
  has_many :users_projects, :dependent => :destroy
19 20 21
  has_many :notes,          :dependent => :destroy
  has_many :snippets,       :dependent => :destroy
  has_many :deploy_keys,    :dependent => :destroy, :foreign_key => "project_id", :class_name => "Key"
22
  has_many :hooks,          :dependent => :destroy, :class_name => "ProjectHook"
23
  has_many :wikis,          :dependent => :destroy
24
  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
  #
gitlabhq's avatar
gitlabhq committed
36
  scope :public_only, where(:private_flag => false)
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
37
  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 44 45 46
  def self.search query
    where("name like :query or code like :query or path like :query", :query => "%#{query}%")
  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 56 57 58 59 60 61 62 63

      # 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
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
  rescue Gitlab::Gitolite::AccessDenied => ex
    project.error_code = :gitolite
    project
  rescue => ex
    project.error_code = :db
    project.errors.add(:base, "Cant save project. Please try again later")
    project
  end

  def git_error?
    error_code == :gitolite
  end

  def saved?
    id && valid?
79 80
  end

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

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

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

  validates :code,
            :presence => true,
            :uniqueness => true,
102 103
            :format => { :with => /^[a-zA-Z][a-zA-Z0-9_\-\.]*$/,
                         :message => "only letters, digits & '_' '-' '.' allowed. Letter should be first"  },
104 105 106 107 108 109 110 111 112 113 114 115
            :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")
gitlabhq's avatar
gitlabhq committed
116 117
  end

118 119 120 121 122
  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
123

124 125
  def self.access_options
    UsersProject.access_roles
126 127
  end

128 129
  def to_param
    code
130 131
  end

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

gitlabhq's avatar
gitlabhq committed
136
  def common_notes
gitlabhq's avatar
gitlabhq committed
137
    notes.where(:noteable_type => ["", nil]).inc_author_project
gitlabhq's avatar
gitlabhq committed
138 139
  end

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

144
  def commit_notes(commit)
145 146 147 148
    notes.where(:noteable_id => commit.id, :noteable_type => "Commit", :line_code => nil)
  end

  def commit_line_notes(commit)
Valery Sizov's avatar
Valery Sizov committed
149
    notes.where(:noteable_id => commit.id, :noteable_type => "Commit").where("line_code is not null")
gitlabhq's avatar
gitlabhq committed
150
  end
Nihad Abbasov's avatar
Nihad Abbasov committed
151

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

  def private?
    private_flag
  end

160
  def last_activity
161
    events.last || nil
gitlabhq's avatar
gitlabhq committed
162 163 164
  end

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

172 173 174
  def project_id
    self.id
  end
gitlabhq's avatar
gitlabhq committed
175
end
176

gitlabhq's avatar
gitlabhq committed
177 178 179 180
# == Schema Information
#
# Table name: projects
#
randx's avatar
randx committed
181
#  id                     :integer(4)      not null, primary key
182 183 184
#  name                   :string(255)
#  path                   :string(255)
#  description            :text
randx's avatar
randx committed
185 186 187
#  created_at             :datetime        not null
#  updated_at             :datetime        not null
#  private_flag           :boolean(1)      default(TRUE), not null
188
#  code                   :string(255)
randx's avatar
randx committed
189
#  owner_id               :integer(4)
190
#  default_branch         :string(255)     default("master"), not null
randx's avatar
randx committed
191 192 193 194
#  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
195 196
#