2011-09-15 18:56:20 +01:00
|
|
|
#require 'lib/build_server.rb'
|
2011-03-09 17:38:21 +00:00
|
|
|
class Platform < ActiveRecord::Base
|
2011-10-23 22:39:44 +01:00
|
|
|
VISIBILITIES = ['open', 'hidden']
|
|
|
|
relationable :as => :target
|
|
|
|
|
2011-03-31 00:27:14 +01:00
|
|
|
belongs_to :parent, :class_name => 'Platform', :foreign_key => 'parent_platform_id'
|
2011-10-17 15:27:07 +01:00
|
|
|
belongs_to :owner, :polymorphic => true
|
2011-10-18 16:00:06 +01:00
|
|
|
|
2011-03-11 16:08:41 +00:00
|
|
|
has_many :repositories, :dependent => :destroy
|
2011-04-11 09:35:08 +01:00
|
|
|
has_many :products, :dependent => :destroy
|
2011-03-10 10:45:38 +00:00
|
|
|
|
2011-10-13 16:55:03 +01:00
|
|
|
has_many :objects, :as => :target, :class_name => 'Relation'
|
|
|
|
has_many :members, :through => :objects, :source => :object, :source_type => 'User'
|
|
|
|
has_many :groups, :through => :objects, :source => :object, :source_type => 'Group'
|
|
|
|
|
2011-03-31 00:34:13 +01:00
|
|
|
validates :name, :presence => true, :uniqueness => true
|
2011-10-18 16:00:06 +01:00
|
|
|
validates :unixname, :uniqueness => true, :presence => true, :format => { :with => /^[a-zA-Z0-9_]+$/ }, :allow_nil => false, :allow_blank => false
|
2011-10-27 17:31:54 +01:00
|
|
|
validates :distrib_type, :presence => true, :allow_nil => :false, :allow_blank => false, :inclusion => {:in => APP_CONFIG['distr_types']}
|
2011-03-09 17:38:21 +00:00
|
|
|
|
2011-10-27 16:20:49 +01:00
|
|
|
after_create :make_owner_rel
|
2011-10-27 14:04:03 +01:00
|
|
|
# before_save :create_directory
|
2011-10-18 16:00:06 +01:00
|
|
|
before_save :make_owner_rel
|
2011-10-27 22:24:38 +01:00
|
|
|
# after_destroy :remove_directory
|
2011-10-27 16:20:49 +01:00
|
|
|
before_create :xml_rpc_create
|
|
|
|
before_destroy :xml_rpc_destroy
|
2011-10-16 21:50:56 +01:00
|
|
|
# before_update :check_freezing
|
2011-03-09 17:38:21 +00:00
|
|
|
|
2011-10-23 22:39:44 +01:00
|
|
|
scope :by_visibilities, lambda {|v| {:conditions => ['visibility in (?)', v.join(',')]}}
|
2011-10-27 14:04:03 +01:00
|
|
|
scope :main, where(:platform_type => 'main')
|
|
|
|
scope :personal, where(:platform_type => 'personal')
|
2011-10-23 22:39:44 +01:00
|
|
|
|
2011-10-27 17:52:07 +01:00
|
|
|
#attr_accessible :visibility
|
2011-04-11 09:35:08 +01:00
|
|
|
|
2011-03-11 09:39:34 +00:00
|
|
|
def path
|
2011-03-11 10:25:50 +00:00
|
|
|
build_path(unixname)
|
2011-03-11 09:39:34 +00:00
|
|
|
end
|
|
|
|
|
2011-03-11 17:38:28 +00:00
|
|
|
def clone(new_name, new_unixname)
|
|
|
|
p = Platform.new
|
|
|
|
p.name = new_name
|
|
|
|
p.unixname = new_unixname
|
|
|
|
p.parent = self
|
|
|
|
p.repositories = repositories.map(&:clone)
|
2011-05-30 10:04:32 +01:00
|
|
|
result = p.save
|
|
|
|
return (result && xml_rpc_clone(new_unixname) && p)
|
2011-03-11 17:38:28 +00:00
|
|
|
end
|
|
|
|
|
2011-03-17 14:47:16 +00:00
|
|
|
def name
|
|
|
|
released? ? "#{self[:name]} #{I18n.t("layout.platforms.released_suffix")}" : self[:name]
|
|
|
|
end
|
|
|
|
|
2011-10-17 15:27:07 +01:00
|
|
|
def roles_of(user)
|
|
|
|
objects.where(:object_id => user.id, :object_type => user.class).map {|rel| rel.role}.reject {|r| r.nil?}
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_role(user, role)
|
|
|
|
roles = objects.where(:object_id => user.id, :object_type => user.class).map {|rel| rel.role}.reject {|r| r.nil?}
|
|
|
|
unless roles.include? role
|
|
|
|
rel = Relation.create(:object_type => user.class.to_s, :object_id => user.id,
|
|
|
|
:target_type => self.class.to_s, :target_id => id)
|
|
|
|
rel.role = role
|
|
|
|
rel.save
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-03-09 17:38:21 +00:00
|
|
|
protected
|
|
|
|
|
2011-03-11 10:25:50 +00:00
|
|
|
def build_path(dir)
|
2011-10-18 16:00:06 +01:00
|
|
|
File.join(APP_CONFIG['root_path'], 'platforms', dir)
|
2011-03-11 10:25:50 +00:00
|
|
|
end
|
|
|
|
|
2011-04-07 10:10:46 +01:00
|
|
|
def git_path(dir)
|
|
|
|
File.join(build_path(dir), 'git')
|
|
|
|
end
|
|
|
|
|
2011-03-11 10:25:50 +00:00
|
|
|
def create_directory
|
|
|
|
exists = File.exists?(path) && File.directory?(path)
|
|
|
|
raise "Directory #{path} already exists" if exists
|
|
|
|
if new_record?
|
|
|
|
FileUtils.mkdir_p(path)
|
|
|
|
elsif unixname_changed?
|
2011-04-07 10:10:46 +01:00
|
|
|
FileUtils.mv(build_path(unixname_was), build_path(unixname))
|
2011-03-11 10:25:50 +00:00
|
|
|
end
|
2011-03-09 17:38:21 +00:00
|
|
|
end
|
2011-04-07 10:10:46 +01:00
|
|
|
|
2011-10-18 16:00:06 +01:00
|
|
|
def remove_directory
|
|
|
|
exists = File.exists?(path) && File.directory?(path)
|
|
|
|
raise "Directory #{path} didn't exists" unless exists
|
|
|
|
FileUtils.rm_rf(path)
|
|
|
|
end
|
|
|
|
|
2011-10-17 15:27:07 +01:00
|
|
|
def make_owner_rel
|
2011-10-19 14:14:53 +01:00
|
|
|
unless members.include? owner or groups.include? owner
|
2011-10-18 16:00:06 +01:00
|
|
|
members << owner if owner.instance_of? User
|
|
|
|
groups << owner if owner.instance_of? Group
|
|
|
|
end
|
2011-10-17 15:27:07 +01:00
|
|
|
end
|
|
|
|
|
2011-04-07 10:10:46 +01:00
|
|
|
def xml_rpc_create
|
2011-10-27 16:20:49 +01:00
|
|
|
# return true
|
2011-10-27 23:13:24 +01:00
|
|
|
result = BuildServer.add_platform unixname, APP_CONFIG['root_path'] + '/platforms' , distrib_type
|
2011-10-27 16:20:49 +01:00
|
|
|
if result == BuildServer::SUCCESS
|
|
|
|
return true
|
|
|
|
else
|
2011-10-28 00:39:37 +01:00
|
|
|
raise "Failed to create platform #{name} with code #{result}. Path: #{build_path(unixname)}"
|
2011-10-27 16:20:49 +01:00
|
|
|
end
|
2011-04-07 10:10:46 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def xml_rpc_destroy
|
2011-10-27 16:20:49 +01:00
|
|
|
# return true
|
|
|
|
result = BuildServer.delete_platform unixname
|
|
|
|
if result == BuildServer::SUCCESS
|
|
|
|
return true
|
|
|
|
else
|
2011-10-28 00:39:37 +01:00
|
|
|
raise "Failed to delete platform #{unixname} with code #{result}."
|
2011-10-27 16:20:49 +01:00
|
|
|
end
|
2011-04-07 10:10:46 +01:00
|
|
|
end
|
2011-04-11 17:55:52 +01:00
|
|
|
|
2011-05-30 10:04:32 +01:00
|
|
|
def xml_rpc_clone(new_unixname)
|
2011-10-27 16:20:49 +01:00
|
|
|
# return true
|
2011-10-27 22:14:08 +01:00
|
|
|
result = BuildServer.clone_platform new_unixname, self.unixname, APP_CONFIG['root_path'] + '/platforms'
|
2011-10-27 16:20:49 +01:00
|
|
|
if result == BuildServer::SUCCESS
|
|
|
|
return true
|
|
|
|
else
|
2011-10-28 00:39:37 +01:00
|
|
|
raise "Failed to clone platform #{name} with code #{result}. Path: #{build_path(unixname)} to platform #{new_unixname}"
|
2011-10-27 16:20:49 +01:00
|
|
|
end
|
2011-05-30 10:04:32 +01:00
|
|
|
end
|
|
|
|
|
2011-04-11 17:55:52 +01:00
|
|
|
def check_freezing
|
|
|
|
if released_changed?
|
2011-04-14 12:24:41 +01:00
|
|
|
BuildServer.freeze_platform self.unixname
|
2011-04-11 17:55:52 +01:00
|
|
|
end
|
|
|
|
end
|
2011-03-09 17:38:21 +00:00
|
|
|
end
|