rosa-build/app/models/platform.rb

175 lines
6.2 KiB
Ruby
Raw Normal View History

#require 'lib/build_server.rb'
class Platform < ActiveRecord::Base
2011-10-23 22:39:44 +01:00
VISIBILITIES = ['open', 'hidden']
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 :relations, :as => :target, :dependent => :destroy
has_many :objects, :as => :target, :class_name => 'Relation', :dependent => :destroy
has_many :members, :through => :objects, :source => :object, :source_type => 'User'
has_many :groups, :through => :objects, :source => :object, :source_type => 'Group'
validates :description, :presence => true, :uniqueness => true
validates :name, :uniqueness => true, :presence => true, :format => { :with => /^[a-zA-Z0-9_]+$/ }
validates :distrib_type, :presence => true, :inclusion => {:in => APP_CONFIG['distr_types']}
2011-03-09 17:38:21 +00:00
before_create :xml_rpc_create, :unless => lambda {Thread.current[:skip]}
before_destroy :xml_rpc_destroy
2011-10-16 21:50:56 +01:00
# before_update :check_freezing
after_create lambda { mount_directory_for_rsync unless hidden? }
after_destroy lambda { umount_directory_for_rsync unless hidden? }
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(',')]}}
scope :open, where(:visibility => 'open')
scope :hidden, where(:visibility => 'hidden')
scope :main, where(:platform_type => 'main')
scope :personal, where(:platform_type => 'personal')
2011-10-23 22:39:44 +01:00
#attr_accessible :visibility
include Modules::Models::Owner
def urpmi_list(host, pair = nil)
blank_pair = {:login => 'login', :pass => 'password'}
pair = blank_pair if pair.blank?
urpmi_commands = ActiveSupport::OrderedHash.new
Platform.main.open.each do |pl|
urpmi_commands[pl.name] = []
local_pair = pl.id != self.id ? blank_pair : pair
head = hidden? ? "http://#{local_pair[:login]}@#{local_pair[:pass]}:#{host}/private/" : "http://#{host}/downloads/"
if pl.distrib_type == APP_CONFIG['distr_types'].first
Arch.all.each do |arch|
tail = "/#{arch.name}/main/release"
urpmi_commands[pl.name] << "urpmi.addmedia #{name} #{head}#{name}/repository/#{pl.name}#{tail}"
end
else
tail = ''
urpmi_commands[pl.name] << "urpmi.addmedia #{name} #{head}#{name}/repository/#{pl.name}#{tail}"
end
end
return urpmi_commands
end
2011-03-11 09:39:34 +00:00
def path
build_path(name)
2011-03-11 09:39:34 +00:00
end
def hidden?
visibility == 'hidden'
end
def personal?
platform_type == 'personal'
end
def full_clone(attrs) # :description, :name, :owner
2011-11-03 00:32:01 +00:00
clone.tap do |c|
c.attributes = attrs
c.updated_at = nil; c.created_at = nil # :id = nil
c.parent = self
2011-11-03 11:27:35 +00:00
new_attrs = {:platform_id => nil}
c.repositories = repositories.map{|r| r.full_clone(new_attrs.merge(:owner_id => attrs[:owner_id], :owner_type => attrs[:owner_type]))}
2011-11-03 00:32:01 +00:00
c.products = products.map{|p| p.full_clone(new_attrs)}
2011-11-01 14:20:53 +00:00
end
2011-11-03 00:32:01 +00:00
end
# TODO * make it Delayed Job *
def make_clone(attrs)
p = full_clone(attrs)
begin
Thread.current[:skip] = true
p.save and xml_rpc_clone(attrs[:name])
ensure
Thread.current[:skip] = false
end
2011-11-03 00:32:01 +00:00
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
def change_visibility
if !self.hidden?
self.update_attribute(:visibility, 'hidden')
umount_directory_for_rsync
else
self.update_attribute(:visibility, 'open')
mount_directory_for_rsync
end
end
def mount_directory_for_rsync
#FileUtils.rm_rf "#{ Rails.root.join('tmp', 'umount', self.name) }" if File.exist? "#{ Rails.root.join('tmp', 'umount', name) }"
#FileUtils.mkdir_p "#{ Rails.root.join('tmp', 'mount', name) }"
system("sudo mkdir -p \"/srv/rosa_build/shared/downloads/#{ name }\"")
system("sudo mount --bind \"/home/share/platforms/#{ name }\" \"/srv/rosa_build/shared/downloads/#{ name }\"")
system("sudo cp -f /srv/rosa_build/current/tmp/mount/#{ name }/* /home/share/platforms/#{ name }/repository/")
system("sudo rm -Rf \"/srv/rosa_build/current/tmp/mount/#{ name }\"")
Arch.all.each do |arch|
host = EventLog.current_controller.request.host_with_port rescue ::Rosa::Application.config.action_mailer.default_url_options[:host]
url = "http://#{host}/downloads/#{name}/repository/"
str = "country=Russian Federation,city=Moscow,latitude=52.18,longitude=48.88,bw=1GB,version=2011,arch=#{arch.name},type=distrib,url=#{url}\n"
File.open(Rails.root.join('tmp', 'mount', name, "#{name}.#{arch.name}.list"), 'w') {|f| f.write(str) }
end
end
def umount_directory_for_rsync
system("umount \"/srv/rosa_build/shared/downloads/#{ name }\"")
system("rm -Rf \"/srv/rosa_build/shared/downloads/#{ name }\"")
system("rm -Rf \"/srv/rosa_build/current/tmp/umount/#{ name }\"")
#FileUtils.rm_rf "#{ Rails.root.join('tmp', 'mount', name) }" if File.exist? "#{ Rails.root.join('tmp', 'mount', name) }"
#FileUtils.mkdir_p "#{ Rails.root.join('tmp', 'umount', name) }"
end
2011-10-17 15:27:07 +01:00
2011-12-01 14:20:24 +00:00
def make_admin_relation(user_id)
r = self.relations.build :object_id => user_id, :object_type => 'User', :role => 'admin'
r.save
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 xml_rpc_create
result = BuildServer.add_platform name, APP_CONFIG['root_path'] + '/platforms' , distrib_type
if result == BuildServer::SUCCESS
return true
else
raise "Failed to create platform #{name} with code #{result}. Path: #{build_path(name)}"
end
2011-04-07 10:10:46 +01:00
end
def xml_rpc_destroy
result = BuildServer.delete_platform name
if result == BuildServer::SUCCESS
return true
else
raise "Failed to delete platform #{name} with code #{result}."
end
2011-04-07 10:10:46 +01:00
end
2011-04-11 17:55:52 +01:00
def xml_rpc_clone(new_name)
result = BuildServer.clone_platform new_name, self.name, APP_CONFIG['root_path'] + '/platforms'
if result == BuildServer::SUCCESS
return true
else
raise "Failed to clone platform #{name} with code #{result}. Path: #{build_path(name)} to platform #{new_name}"
end
2011-05-30 10:04:32 +01:00
end
2011-04-11 17:55:52 +01:00
def check_freezing
if released_changed?
BuildServer.freeze_platform self.name
2011-04-11 17:55:52 +01:00
end
end
2011-03-09 17:38:21 +00:00
end