Sha256: 1b33bacb18ebef230c6755d48c06bd842082381a0531b17b058d0d61c759f1f9

Contents?: true

Size: 1.99 KB

Versions: 90

Compression:

Stored size: 1.99 KB

Contents

module Katello
  class Subscription < Katello::Model
    include Glue::Candlepin::CandlepinObject
    include Glue::Candlepin::Subscription
    include Katello::Authorization::Subscription

    has_many :pools, :class_name => "Katello::Pool", :inverse_of => :subscription, :dependent => :destroy
    has_many :products, :class_name => "Katello::Product", :through => :pools

    belongs_to :organization, :class_name => "Organization", :inverse_of => :subscriptions

    scope :in_organization, ->(org) { where(:organization => org) }

    scope :redhat, -> { joins(:products).merge(Katello::Product.redhat).distinct }

    def self.subscribable
      product_ids = Product.subscribable.pluck(:id) + [nil]
      joins(:pools).joins("LEFT OUTER JOIN #{Katello::PoolProduct.table_name} pool_prod ON #{Pool.table_name}.id = pool_prod.pool_id")
        .where("pool_prod.product_id" => product_ids)
        .group("#{self.table_name}.id")
    end

    delegate :user_ids, :to => :organization

    def self.using_virt_who
      joins(:pools).where("#{Katello::Pool.table_name}.virt_who" => true)
    end

    def redhat?
      products.redhat.any?
    end

    def active?
      pools.any?(&:active?)
    end

    def expiring_soon?
      pools.any?(&:expiring_soon?)
    end

    def recently_expired?
      pools.any?(&:recently_expired?)
    end

    def multi_entitlement?
      pools.where("#{Katello::Pool.table_name}.multi_entitlement" => true).any?
    end

    def virt_who_pools
      pools.where("#{Katello::Pool.table_name}.virt_who" => true)
    end

    def virt_who?
      virt_who_pools.any?
    end

    def self.humanize_class_name(_name = nil)
      _("Subscription")
    end

    apipie :class, desc: "A class representing #{model_name.human} object" do
      name 'Subscription'
      refs 'Subscription'
      sections only: %w[all additional]
      prop_group :katello_idname_props, Katello::Model, meta: { friendly_name: 'Subscription' }
    end
    class Jail < ::Safemode::Jail
      allow :id, :name
    end
  end
end

Version data entries

90 entries across 90 versions & 1 rubygems

Version Path
katello-4.7.3 app/models/katello/subscription.rb
katello-4.7.2 app/models/katello/subscription.rb
katello-4.7.1 app/models/katello/subscription.rb
katello-4.6.2.1 app/models/katello/subscription.rb
katello-4.6.2 app/models/katello/subscription.rb
katello-4.7.0 app/models/katello/subscription.rb
katello-4.6.1 app/models/katello/subscription.rb
katello-4.7.0.rc2 app/models/katello/subscription.rb
katello-4.7.0.rc1 app/models/katello/subscription.rb
katello-4.4.2.2 app/models/katello/subscription.rb
katello-4.4.2.1 app/models/katello/subscription.rb
katello-4.4.2 app/models/katello/subscription.rb
katello-4.5.1 app/models/katello/subscription.rb
katello-4.6.0 app/models/katello/subscription.rb
katello-4.6.0.rc2 app/models/katello/subscription.rb
katello-4.6.0.rc1 app/models/katello/subscription.rb
katello-4.5.0 app/models/katello/subscription.rb
katello-4.5.0.rc2 app/models/katello/subscription.rb
katello-4.4.1 app/models/katello/subscription.rb
katello-4.5.0.rc1 app/models/katello/subscription.rb