rosa-build/app/models/platform.rb

126 lines
3.7 KiB
Ruby
Raw Normal View History

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
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
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
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-03-09 17:38:21 +00:00
2011-10-18 16:00:06 +01:00
#after_create :make_owner_rel
before_save :create_directory
before_save :make_owner_rel
after_destroy :remove_directory
2011-10-16 21:50:56 +01:00
# before_create :xml_rpc_create
# before_destroy :xml_rpc_destroy
# before_update :check_freezing
2011-03-09 17:38:21 +00:00
2011-03-11 09:39:34 +00:00
def path
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
def build_path(dir)
2011-10-18 16:00:06 +01:00
File.join(APP_CONFIG['root_path'], 'platforms', dir)
end
2011-04-07 10:10:46 +01:00
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?
2011-04-07 10:10:46 +01:00
FileUtils.mv(build_path(unixname_was), build_path(unixname))
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-16 21:50:56 +01:00
return true
# 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
2011-04-07 10:10:46 +01:00
end
def xml_rpc_destroy
2011-10-16 21:50:56 +01:00
return true
# result = BuildServer.delete_platform unixname
# if result == BuildServer::SUCCESS
# return true
# else
# raise "Failed to delete platform #{unixname}."
# 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-16 21:50:56 +01:00
return true
# 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
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