90 lines
2.6 KiB
Ruby
90 lines
2.6 KiB
Ruby
#require 'lib/build_server.rb'
|
|
class Platform < ActiveRecord::Base
|
|
belongs_to :parent, :class_name => 'Platform', :foreign_key => 'parent_platform_id'
|
|
has_many :repositories, :dependent => :destroy
|
|
has_many :products, :dependent => :destroy
|
|
|
|
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'
|
|
|
|
validates :name, :presence => true, :uniqueness => true
|
|
validates :unixname, :uniqueness => true, :presence => true, :format => { :with => /^[a-zA-Z0-9\-.]+$/ }, :allow_nil => false, :allow_blank => false
|
|
|
|
before_create :xml_rpc_create
|
|
before_destroy :xml_rpc_destroy
|
|
before_update :check_freezing
|
|
|
|
|
|
def path
|
|
build_path(unixname)
|
|
end
|
|
|
|
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)
|
|
result = p.save
|
|
return (result && xml_rpc_clone(new_unixname) && p)
|
|
end
|
|
|
|
def name
|
|
released? ? "#{self[:name]} #{I18n.t("layout.platforms.released_suffix")}" : self[:name]
|
|
end
|
|
|
|
protected
|
|
|
|
def build_path(dir)
|
|
File.join(APP_CONFIG['root_path'], dir)
|
|
end
|
|
|
|
def git_path(dir)
|
|
File.join(build_path(dir), 'git')
|
|
end
|
|
|
|
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?
|
|
FileUtils.mv(build_path(unixname_was), build_path(unixname))
|
|
end
|
|
end
|
|
|
|
def xml_rpc_create
|
|
result = BuildServer.add_platform unixname, APP_CONFIG['root_path']
|
|
if result == BuildServer::SUCCESS
|
|
return true
|
|
else
|
|
raise "Failed to create platform #{name}. Path: #{build_path(unixname)}"
|
|
end
|
|
end
|
|
|
|
def xml_rpc_destroy
|
|
result = BuildServer.delete_platform unixname
|
|
if result == BuildServer::SUCCESS
|
|
return true
|
|
else
|
|
raise "Failed to delete platform #{unixname}."
|
|
end
|
|
end
|
|
|
|
def xml_rpc_clone(new_unixname)
|
|
result = BuildServer.clone_platform new_unixname, self.unixname, APP_CONFIG['root_path']
|
|
if result == BuildServer::SUCCESS
|
|
return true
|
|
else
|
|
raise "Failed to clone platform #{name}. Path: #{build_path(unixname)} to platform #{new_unixname}"
|
|
end
|
|
end
|
|
|
|
def check_freezing
|
|
if released_changed?
|
|
BuildServer.freeze_platform self.unixname
|
|
end
|
|
end
|
|
end
|