Sha256: 3679212676fd2193518aa46aae891c8e51a61a49753035a5f7e76705b9222ffc

Contents?: true

Size: 1.48 KB

Versions: 58

Compression:

Stored size: 1.48 KB

Contents

module Katello
  module Authorization
    module Product
      extend ActiveSupport::Concern

      include Authorizable

      def readable?
        authorized?(:view_products)
      end

      def syncable?
        authorized?(:sync_products)
      end

      def editable?
        authorized?(:edit_products)
      end

      def deletable?
        promoted_repos = repositories.select { |repo| repo.promoted? }
        authorized?(:destroy_products) && promoted_repos.empty?
      end

      module ClassMethods
        def readable
          authorized(:view_products)
        end

        def editable
          authorized(:edit_products)
        end

        def deletable
          authorized(:destroy_products)
        end

        def syncable
          authorized(:sync_products)
        end

        def readable?
          ::User.current.can?(:view_products)
        end

        def readable_repositories(repo_ids = nil)
          query = Katello::Repository.all

          if repo_ids
            query = query.where(:id => repo_ids)
          end

          query.joins(:product)
               .joins(:content_view_version)
               .where("#{Katello::ContentViewVersion.table_name}.content_view_id" => Katello::ContentView.default.pluck(:id))
               .where(:product_id => Katello::Product.readable.pluck(:id))
        end

        def syncable?
          ::User.current.can?(:sync_products)
        end
      end # ClassMethods
    end # Product
  end # Authorization
end # Katello

Version data entries

58 entries across 58 versions & 1 rubygems

Version Path
katello-3.8.1 app/models/katello/authorization/product.rb
katello-3.7.1.1 app/models/katello/authorization/product.rb
katello-3.7.1 app/models/katello/authorization/product.rb
katello-3.8.0 app/models/katello/authorization/product.rb
katello-3.8.0.rc3 app/models/katello/authorization/product.rb
katello-3.8.0.rc2 app/models/katello/authorization/product.rb
katello-3.7.0 app/models/katello/authorization/product.rb
katello-3.8.0.rc1 app/models/katello/authorization/product.rb
katello-3.7.0.rc2 app/models/katello/authorization/product.rb
katello-3.7.0.rc1 app/models/katello/authorization/product.rb
katello-3.5.2 app/models/katello/authorization/product.rb
katello-3.6.0 app/models/katello/authorization/product.rb
katello-3.6.0.1.rc2 app/models/katello/authorization/product.rb
katello-3.6.0.rc2 app/models/katello/authorization/product.rb
katello-3.6.0.rc1 app/models/katello/authorization/product.rb
katello-3.5.1.1 app/models/katello/authorization/product.rb
katello-3.5.1 app/models/katello/authorization/product.rb
katello-3.5.0.1 app/models/katello/authorization/product.rb
katello-3.5.0 app/models/katello/authorization/product.rb
katello-3.5.0.rc2 app/models/katello/authorization/product.rb