Sha256: d9a845a2645a17a5e802cc0029f5409f9edff3989caddd697e6017fa0dfb5650
Contents?: true
Size: 1.78 KB
Versions: 12
Compression:
Stored size: 1.78 KB
Contents
module Katello module Glue::Candlepin::Owner def self.included(base) base.send :include, LazyAccessor base.send :include, InstanceMethods base.class_eval do validates :label, :presence => true, :format => { :with => /\A[\w-]*\z/ } lazy_accessor :events, :initializer => lambda { |_s| Resources::Candlepin::Owner.events(label) } lazy_accessor :service_levels, :initializer => lambda { |_s| Resources::Candlepin::Owner.service_levels(label) } lazy_accessor :debug_cert, :initializer => lambda { |_s| load_debug_cert } end end module InstanceMethods def owner_info Glue::Candlepin::OwnerInfo.new(self) end def owner_details details = Resources::Candlepin::Owner.find self.label details['virt_who'] = self.subscriptions.using_virt_who.any? details end def service_level self.owner_details['defaultServiceLevel'] end def service_level=(level) Resources::Candlepin::Owner.update(self.label, :defaultServiceLevel => level) end def content_access_mode self.owner_details['contentAccessMode'] end def pools(consumer_uuid = nil) if consumer_uuid Resources::Candlepin::Owner.pools self.label, :consumer => consumer_uuid else Resources::Candlepin::Owner.pools self.label end end def generate_debug_cert Resources::Candlepin::Owner.generate_ueber_cert(label) end def load_debug_cert return Resources::Candlepin::Owner.get_ueber_cert(label) rescue RestClient::ResourceNotFound return generate_debug_cert end def imports Resources::Candlepin::Owner.imports(self.label) end end end end
Version data entries
12 entries across 12 versions & 1 rubygems