2011-10-08 17:36:38 -04:00
|
|
|
require "grit"
|
|
|
|
|
|
|
|
class Project < ActiveRecord::Base
|
2011-10-09 15:36:57 -04:00
|
|
|
belongs_to :owner, :class_name => "User"
|
|
|
|
|
2011-11-28 02:39:43 -05:00
|
|
|
has_many :merge_requests, :dependent => :destroy
|
2011-10-15 12:56:53 -04:00
|
|
|
has_many :issues, :dependent => :destroy, :order => "position"
|
2011-10-08 17:36:38 -04:00
|
|
|
has_many :users_projects, :dependent => :destroy
|
|
|
|
has_many :users, :through => :users_projects
|
|
|
|
has_many :notes, :dependent => :destroy
|
2011-10-16 17:07:10 -04:00
|
|
|
has_many :snippets, :dependent => :destroy
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-11-04 03:42:36 -04:00
|
|
|
acts_as_taggable
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
validates :name,
|
|
|
|
:uniqueness => true,
|
|
|
|
:presence => true,
|
|
|
|
:length => { :within => 0..255 }
|
|
|
|
|
|
|
|
validates :path,
|
|
|
|
:uniqueness => true,
|
|
|
|
:presence => true,
|
2011-10-15 12:30:56 -04:00
|
|
|
:format => { :with => /^[a-zA-Z0-9_\-]*$/,
|
|
|
|
:message => "only letters, digits & '_' '-' allowed" },
|
2011-10-08 17:36:38 -04:00
|
|
|
:length => { :within => 0..255 }
|
2011-10-26 09:46:25 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
validates :description,
|
|
|
|
:length => { :within => 0..2000 }
|
|
|
|
|
|
|
|
validates :code,
|
|
|
|
:presence => true,
|
|
|
|
:uniqueness => true,
|
2011-10-15 12:30:56 -04:00
|
|
|
:format => { :with => /^[a-zA-Z0-9_\-]*$/,
|
|
|
|
:message => "only letters, digits & '_' '-' allowed" },
|
2011-10-18 04:21:44 -04:00
|
|
|
:length => { :within => 3..255 }
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-10-09 15:36:57 -04:00
|
|
|
validates :owner,
|
|
|
|
:presence => true
|
|
|
|
|
2011-10-09 14:15:01 -04:00
|
|
|
validate :check_limit
|
2011-10-21 14:40:36 -04:00
|
|
|
validate :repo_name
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
after_destroy :destroy_gitosis_project
|
|
|
|
after_save :update_gitosis_project
|
|
|
|
|
2011-10-09 07:05:31 -04:00
|
|
|
attr_protected :private_flag, :owner_id
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
scope :public_only, where(:private_flag => false)
|
|
|
|
|
2011-11-10 17:51:19 -05:00
|
|
|
def repository
|
|
|
|
@repository ||= Repository.new(self)
|
|
|
|
end
|
|
|
|
|
|
|
|
delegate :repo,
|
2011-11-10 18:28:26 -05:00
|
|
|
:url_to_repo,
|
|
|
|
:path_to_repo,
|
|
|
|
:update_gitosis_project,
|
|
|
|
:destroy_gitosis_project,
|
2011-11-10 17:51:19 -05:00
|
|
|
:tags,
|
|
|
|
:repo_exists?,
|
|
|
|
:commit,
|
|
|
|
:commits,
|
|
|
|
:tree,
|
|
|
|
:heads,
|
|
|
|
:commits_since,
|
|
|
|
:fresh_commits,
|
|
|
|
:to => :repository, :prefix => nil
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def to_param
|
|
|
|
code
|
|
|
|
end
|
|
|
|
|
2011-11-06 15:38:08 -05:00
|
|
|
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
|
|
|
|
|
2011-11-15 04:09:07 -05:00
|
|
|
def fresh_issues(n)
|
|
|
|
issues.includes(:project, :author).order("created_at desc").first(n)
|
|
|
|
end
|
|
|
|
|
|
|
|
def fresh_notes(n)
|
|
|
|
notes.inc_author_project.order("created_at desc").first(n)
|
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def common_notes
|
2011-11-15 04:09:07 -05:00
|
|
|
notes.where(:noteable_type => ["", nil]).inc_author_project
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2011-11-10 18:28:26 -05:00
|
|
|
def build_commit_note(commit)
|
|
|
|
notes.new(:noteable_id => commit.id, :noteable_type => "Commit")
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2011-10-26 09:46:25 -04:00
|
|
|
|
2011-11-10 18:28:26 -05:00
|
|
|
def commit_notes(commit)
|
|
|
|
notes.where(:noteable_id => commit.id, :noteable_type => "Commit")
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2011-10-26 09:46:25 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
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
|
|
|
|
|
2011-11-16 00:38:53 -05:00
|
|
|
def root_ref
|
|
|
|
"master"
|
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def public?
|
|
|
|
!private_flag
|
|
|
|
end
|
|
|
|
|
|
|
|
def private?
|
|
|
|
private_flag
|
|
|
|
end
|
|
|
|
|
2011-11-15 03:34:30 -05:00
|
|
|
def last_activity
|
2011-10-31 16:57:16 -04:00
|
|
|
updates(1).first
|
2011-11-15 03:34:30 -05:00
|
|
|
rescue
|
2011-10-31 16:57:16 -04:00
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def last_activity_date
|
|
|
|
last_activity.try(:created_at)
|
|
|
|
end
|
|
|
|
|
2011-11-27 07:53:12 -05:00
|
|
|
# Get project updates from cache
|
|
|
|
# or calculate.
|
|
|
|
def cached_updates(limit, expire = 2.minutes)
|
|
|
|
activities_key = "project_#{id}_activities"
|
|
|
|
cached_activities = Rails.cache.read(activities_key)
|
|
|
|
if cached_activities
|
|
|
|
activities = cached_activities
|
|
|
|
else
|
|
|
|
activities = updates(limit)
|
|
|
|
Rails.cache.write(activities_key, activities, :expires_in => 60.seconds)
|
|
|
|
end
|
|
|
|
|
|
|
|
activities
|
|
|
|
end
|
|
|
|
|
|
|
|
# Get 20 events for project like
|
|
|
|
# commits, issues or notes
|
2011-10-31 16:57:16 -04:00
|
|
|
def updates(n = 3)
|
2011-11-15 03:34:30 -05:00
|
|
|
[
|
2011-10-31 16:57:16 -04:00
|
|
|
fresh_commits(n),
|
2011-11-15 04:09:07 -05:00
|
|
|
fresh_issues(n),
|
|
|
|
fresh_notes(n)
|
2011-10-31 16:57:16 -04:00
|
|
|
].compact.flatten.sort do |x, y|
|
|
|
|
y.created_at <=> x.created_at
|
2011-11-02 16:14:03 -04:00
|
|
|
end[0...n]
|
2011-10-31 16:57:16 -04:00
|
|
|
end
|
|
|
|
|
2011-10-09 14:15:01 -04:00
|
|
|
def check_limit
|
|
|
|
unless owner.can_create_project?
|
2011-10-09 15:36:57 -04:00
|
|
|
errors[:base] << ("Your own projects limit is #{owner.projects_limit}! Please contact administrator to increase it")
|
2011-10-09 14:15:01 -04:00
|
|
|
end
|
2011-10-26 09:46:25 -04:00
|
|
|
rescue
|
2011-10-09 15:36:57 -04:00
|
|
|
errors[:base] << ("Cant check your ability to create project")
|
2011-10-09 14:15:01 -04:00
|
|
|
end
|
|
|
|
|
2011-10-21 14:40:36 -04:00
|
|
|
def repo_name
|
|
|
|
if path == "gitosis-admin"
|
2011-10-21 14:51:55 -04:00
|
|
|
errors.add(:path, " like 'gitosis-admin' is not allowed")
|
2011-10-21 14:40:36 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
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)
|
2011-10-09 07:05:31 -04:00
|
|
|
# owner_id :integer
|
2011-10-08 17:36:38 -04:00
|
|
|
#
|
|
|
|
|