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

class Project < ActiveRecord::Base
G
gitlabhq 已提交
4 5
  belongs_to :owner, :class_name => "User"

V
VSizov 已提交
6
  has_many :issues, :dependent => :destroy, :order => "position"
G
gitlabhq 已提交
7 8 9
  has_many :users_projects, :dependent => :destroy
  has_many :users, :through => :users_projects
  has_many :notes, :dependent => :destroy
G
gitlabhq 已提交
10
  has_many :snippets, :dependent => :destroy
G
gitlabhq 已提交
11

A
Aleksei Kvitinskii 已提交
12 13
  acts_as_taggable

G
gitlabhq 已提交
14 15 16 17 18 19 20 21
  validates :name,
            :uniqueness => true,
            :presence => true,
            :length   => { :within => 0..255 }

  validates :path,
            :uniqueness => true,
            :presence => true,
G
gitlabhq 已提交
22 23
            :format => { :with => /^[a-zA-Z0-9_\-]*$/,
                         :message => "only letters, digits & '_' '-' allowed" },
G
gitlabhq 已提交
24
            :length   => { :within => 0..255 }
N
Nihad Abbasov 已提交
25

G
gitlabhq 已提交
26 27 28 29 30 31
  validates :description,
            :length   => { :within => 0..2000 }

  validates :code,
            :presence => true,
            :uniqueness => true,
G
gitlabhq 已提交
32 33
            :format => { :with => /^[a-zA-Z0-9_\-]*$/,
                         :message => "only letters, digits & '_' '-' allowed"  },
G
gitlabhq 已提交
34
            :length   => { :within => 3..255 }
G
gitlabhq 已提交
35

G
gitlabhq 已提交
36 37 38
  validates :owner,
            :presence => true

V
Valera Sizov 已提交
39
  validate :check_limit
G
gitlabhq 已提交
40 41
  validate :repo_name

G
gitlabhq 已提交
42 43 44
  after_destroy :destroy_gitosis_project
  after_save :update_gitosis_project

V
Valera Sizov 已提交
45
  attr_protected :private_flag, :owner_id
G
gitlabhq 已提交
46 47 48 49 50 51 52

  scope :public_only, where(:private_flag => false)

  def to_param
    code
  end

53 54 55 56 57
  def team_member_by_name_or_email(email = nil, name = nil)
    user = users.where("email like ? or name like ?", email, name).first
    users_projects.find_by_user_id(user.id) if user
  end

G
gitlabhq 已提交
58 59 60 61 62 63 64 65 66
  def common_notes
    notes.where(:noteable_type => ["", nil])
  end

  def update_gitosis_project
    Gitosis.new.configure do |c|
      c.update_project(path, gitosis_writers)
    end
  end
N
Nihad Abbasov 已提交
67

G
gitlabhq 已提交
68 69 70 71 72
  def destroy_gitosis_project
    Gitosis.new.configure do |c|
      c.destroy_project(self)
    end
  end
N
Nihad Abbasov 已提交
73

G
gitlabhq 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
  def add_access(user, *access)
    opts = { :user => user }
    access.each { |name| opts.merge!(name => true) }
    users_projects.create(opts)
  end

  def reset_access(user)
    users_projects.where(:project_id => self.id, :user_id => user.id).destroy if self.id
  end

  def writers
    @writers ||= users_projects.includes(:user).where(:write => true).map(&:user)
  end

  def gitosis_writers
    keys = Key.joins({:user => :users_projects}).where("users_projects.project_id = ? AND users_projects.write = ?", id, true)
    keys.map(&:identifier)
  end

  def readers
    @readers ||= users_projects.includes(:user).where(:read => true).map(&:user)
  end

  def admins
    @admins ||=users_projects.includes(:user).where(:admin => true).map(&:user)
  end

  def public?
    !private_flag
  end

  def private?
    private_flag
  end

  def url_to_repo
    "#{GITOSIS["git_user"]}@#{GITOSIS["host"]}:#{path}.git"
  end
N
Nihad Abbasov 已提交
112

G
gitlabhq 已提交
113 114 115 116
  def path_to_repo
    GITOSIS["base_path"] + path + ".git"
  end

N
Nihad Abbasov 已提交
117
  def repo
G
gitlabhq 已提交
118 119 120 121 122 123 124 125 126 127 128
    @repo ||= Grit::Repo.new(path_to_repo)
  end

  def tags
    repo.tags.map(&:name).sort.reverse
  end

  def repo_exists?
    repo rescue false
  end

G
gitlabhq 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
  def last_activity 
    updates(1).first
  rescue 
    nil
  end

  def last_activity_date
    last_activity.try(:created_at)
  end

  def updates(n = 3)
    [ 
      fresh_commits(n),
      issues.last(n),
      notes.fresh.limit(n)
    ].compact.flatten.sort do |x, y|
      y.created_at <=> x.created_at
G
gitlabhq 已提交
146
    end[0...n]
G
gitlabhq 已提交
147 148
  end

G
gitlabhq 已提交
149 150 151
  def commit(commit_id = nil)
    if commit_id
      repo.commits(commit_id).first
N
Nihad Abbasov 已提交
152
    else
G
gitlabhq 已提交
153 154 155 156
      repo.commits.first
    end
  end

N
Nihad Abbasov 已提交
157
  def heads
G
gitlabhq 已提交
158 159 160
    @heads ||= repo.heads
  end

G
gitlabhq 已提交
161
  def fresh_commits(n = 10)
N
Nihad Abbasov 已提交
162
    commits = heads.map do |h|
G
gitlabhq 已提交
163
      repo.commits(h.name, n)
G
gitlabhq 已提交
164 165 166 167 168 169
    end.flatten.uniq { |c| c.id }

    commits.sort! do |x, y|
      y.committed_date <=> x.committed_date
    end

G
gitlabhq 已提交
170
    commits[0...n]
G
gitlabhq 已提交
171 172 173
  end

  def commits_since(date)
N
Nihad Abbasov 已提交
174
    commits = heads.map do |h|
G
gitlabhq 已提交
175 176 177 178 179 180 181 182 183 184
      repo.log(h.name, nil, :since => date)
    end.flatten.uniq { |c| c.id }

    commits.sort! do |x, y|
      y.committed_date <=> x.committed_date
    end

    commits
  end

G
gitlabhq 已提交
185 186 187 188 189 190
  def tree(fcommit, path = nil)
    fcommit = commit if fcommit == :head
    tree = fcommit.tree
    path ? (tree / path) : tree
  end

V
Valera Sizov 已提交
191 192
  def check_limit
    unless owner.can_create_project?
G
gitlabhq 已提交
193
      errors[:base] << ("Your own projects limit is #{owner.projects_limit}! Please contact administrator to increase it")
V
Valera Sizov 已提交
194
    end
N
Nihad Abbasov 已提交
195
  rescue
G
gitlabhq 已提交
196
    errors[:base] << ("Cant check your ability to create project")
V
Valera Sizov 已提交
197 198
  end

G
gitlabhq 已提交
199 200
  def repo_name
    if path == "gitosis-admin"
G
gitlabhq 已提交
201
      errors.add(:path, " like 'gitosis-admin' is not allowed")
G
gitlabhq 已提交
202 203 204
    end
  end

G
gitlabhq 已提交
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
  def valid_repo?
    repo
  rescue
    errors.add(:path, "Invalid repository path")
    false
  end
end
# == Schema Information
#
# Table name: projects
#
#  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)
V
Valera Sizov 已提交
224
#  owner_id     :integer
G
gitlabhq 已提交
225 226
#