rosa-build/app/models/project.rb

172 lines
5.6 KiB
Ruby
Raw Normal View History

2011-03-09 17:38:21 +00:00
class Project < ActiveRecord::Base
2011-10-23 22:39:44 +01:00
VISIBILITIES = ['open', 'hidden']
belongs_to :category, :counter_cache => true
2011-10-17 15:21:29 +01:00
belongs_to :owner, :polymorphic => true
2011-10-18 16:00:06 +01:00
has_many :issues, :dependent => :destroy
2011-04-07 14:20:21 +01:00
has_many :build_lists, :dependent => :destroy
has_many :auto_build_lists, :dependent => :destroy
2011-03-10 12:35:23 +00:00
has_many :project_imports, :dependent => :destroy
has_many :project_to_repositories, :dependent => :destroy
has_many :repositories, :through => :project_to_repositories
has_many :relations, :as => :target, :dependent => :destroy
2011-10-18 16:00:06 +01:00
has_many :collaborators, :through => :relations, :source => :object, :source_type => 'User'
has_many :groups, :through => :relations, :source => :object, :source_type => 'Group'
validates :name, :uniqueness => {:scope => [:owner_id, :owner_type], :case_sensitive => false}, :presence => true, :format => { :with => /^[a-zA-Z0-9_\-\+\.]+$/ }
validates :owner, :presence => true
# validate {errors.add(:base, I18n.t('flash.project.save_warning_ssh_key')) if owner.ssh_key.blank?}
validates_attachment_size :srpm, :less_than => 500.megabytes
validates_attachment_content_type :srpm, :content_type => ['application/octet-stream', "application/x-rpm", "application/x-redhat-package-manager"], :message => I18n.t('layout.invalid_content_type')
2011-03-09 17:38:21 +00:00
#attr_accessible :category_id, :name, :description, :visibility
attr_readonly :name
2011-03-31 02:15:17 +01:00
scope :recent, order("name ASC")
scope :by_name, lambda {|name| where('projects.name ILIKE ?', name)}
2011-10-23 22:39:44 +01:00
scope :by_visibilities, lambda {|v| {:conditions => ['visibility in (?)', v.join(',')]}}
scope :addable_to_repository, lambda { |repository_id| where("projects.id NOT IN (SELECT project_to_repositories.project_id FROM project_to_repositories WHERE (project_to_repositories.repository_id = #{ repository_id }))") }
scope :automateable, where("projects.id NOT IN (SELECT auto_build_lists.project_id FROM auto_build_lists)")
2011-10-23 22:39:44 +01:00
after_create :attach_to_personal_repository
after_create :create_git_repo
after_destroy :destroy_git_repo
after_save {|p| p.delay.import_attached_srpm if p.srpm?} # should be after create_git_repo
# after_rollback lambda { destroy_git_repo rescue true if new_record? }
has_ancestry
2011-10-28 00:18:04 +01:00
has_attached_file :srpm
include Modules::Models::Owner
def auto_build
auto_build_lists.each do |auto_build_list|
build_lists.create(
:pl => auto_build_list.pl,
:bpl => auto_build_list.bpl,
:arch => auto_build_list.arch,
:project_version => versions.last,
:build_requires => true,
:update_type => 'bugfix') unless build_lists.for_creation_date_period(Time.current - 15.seconds, Time.current).present?
end
end
def build_for(platform, user)
build_lists.create do |bl|
bl.pl = platform
bl.bpl = platform
bl.update_type = 'recommended'
2012-01-27 01:00:44 +00:00
bl.arch = Arch.find_by_name('x86_64') # Return i586 after mass rebuild
# FIXME: Need to set "latest_#{platform.name}"
bl.project_version = "latest_mandriva2011"
bl.build_requires = false # already set as db default
bl.user = user
2012-01-23 16:19:10 +00:00
bl.auto_publish = true # already set as db default
bl.include_repos = [platform.repositories.find_by_name('main').id]
end
end
def tags
self.git_repository.tags #.sort_by{|t| t.name.gsub(/[a-zA-Z.]+/, '').to_i}
end
def branches
self.git_repository.branches
end
def versions
tags.map(&:name) + branches.map{|b| "latest_#{b.name}"}
end
2011-10-23 22:39:44 +01:00
2011-10-18 16:00:06 +01:00
def members
collaborators + groups.map(&:members).flatten
2011-10-18 16:00:06 +01:00
end
def git_repository
@git_repository ||= Git::Repository.new(path)
end
def git_repo_name
File.join owner.uname, name
end
2011-03-10 13:38:50 +00:00
def public?
visibility == 'open'
2011-03-11 09:39:34 +00:00
end
def fork(new_owner)
clone.tap do |c|
c.parent_id = id
c.owner = new_owner
c.updated_at = nil; c.created_at = nil # :id = nil
c.save
end
2011-03-11 17:38:28 +00:00
end
2011-10-28 00:18:04 +01:00
def path
build_path(git_repo_name)
end
2011-10-28 14:53:46 +01:00
def xml_rpc_create(repository)
result = BuildServer.create_project name, repository.platform.name, repository.name, path
2011-10-28 14:31:26 +01:00
if result == BuildServer::SUCCESS
return true
else
raise "Failed to create project #{name} (repo #{repository.name}) inside platform #{repository.platform.name} in path #{path} with code #{result}."
2012-01-11 18:15:35 +00:00
end
2011-10-28 14:31:26 +01:00
end
2011-10-28 14:53:46 +01:00
def xml_rpc_destroy(repository)
result = BuildServer.delete_project name, repository.platform.name
2011-10-28 14:31:26 +01:00
if result == BuildServer::SUCCESS
return true
else
raise "Failed to delete repository #{name} (repo main) inside platform #{owner.uname}_personal with code #{result}."
end
end
def platforms
@platforms ||= repositories.map(&:platform).uniq
end
def import_srpm(srpm_path = srpm.path, branch_name = 'import')
system("#{Rails.root.join('bin', 'import_srpm.sh')} #{srpm_path} #{path} #{branch_name} >> /dev/null 2>&1")
end
2012-01-11 18:15:35 +00:00
class << self
def commit_comments(commit, project)
2012-01-17 11:17:27 +00:00
comments = Comment.where(:commentable_id => commit.id, :commentable_type => 'Grit::Commit').order(:created_at)
comments.each {|x| x.project = project}
2012-01-11 18:15:35 +00:00
end
end
2011-03-09 17:38:21 +00:00
protected
def build_path(dir)
File.join(APP_CONFIG['root_path'], 'git_projects', "#{dir}.git")
end
2011-10-28 00:18:04 +01:00
def attach_to_personal_repository
repositories << self.owner.personal_repository if !repositories.exists?(:id => self.owner.personal_repository)
end
2011-10-28 00:18:04 +01:00
def create_git_repo
is_root? ? Grit::Repo.init_bare(path) : parent.git_repository.repo.delay.fork_bare(path)
end
def destroy_git_repo
FileUtils.rm_rf path
end
def import_attached_srpm
if srpm?
import_srpm # srpm.path
self.srpm = nil; save # clear srpm
2011-10-19 14:14:53 +01:00
end
end
2011-03-09 17:38:21 +00:00
end