Sha256: 8ccb97fc601536ad7cb9dd3cdb501cd32a3abd30e78a9f5e39695b913dab0c4e

Contents?: true

Size: 1.51 KB

Versions: 15

Compression:

Stored size: 1.51 KB

Contents

module Katello
  class Api::V2::SyncController < Api::V2::ApiController
    before_action :find_optional_organization, :only => [:index]
    before_action :find_object, :only => [:index]
    before_action :ensure_library, :only => [:index]

    api :GET, "/repositories/:repository_id/sync", N_("Get status of synchronisation for given repository")
    def index
      respond_for_async(:resource => @obj.sync_status)
    end

    private

    # used in unit tests
    def find_object
      if params.key?(:product_id)
        @obj = find_product
      elsif params.key?(:repository_id)
        @obj = find_repository
      else
        fail HttpErrors::NotFound, N_("Couldn't find subject of synchronization") if @obj.nil?
      end
      @obj
    end

    def find_product
      fail _("Organization required") if @organization.nil?
      @product = Product.syncable.find_by_cp_id(params[:product_id], @organization)
      fail HttpErrors::NotFound, _("Couldn't find product with id '%s'") % params[:product_id] if @product.nil?
      @product
    end

    def find_repository
      @repository = Repository.syncable.find_by(:id => params[:repository_id])
      fail HttpErrors::NotFound, _("Couldn't find repository '%s'") % params[:repository_id] if @repository.nil?
      @repository
    end

    def ensure_library
      unless @repository.nil?
        fail HttpErrors::NotFound, _("You can check sync status for repositories only in the library lifecycle environment.'") unless @repository.environment.library?
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
katello-4.13.1 app/controllers/katello/api/v2/sync_controller.rb
katello-4.13.0 app/controllers/katello/api/v2/sync_controller.rb
katello-4.12.1 app/controllers/katello/api/v2/sync_controller.rb
katello-4.13.0.rc1 app/controllers/katello/api/v2/sync_controller.rb
katello-4.12.0 app/controllers/katello/api/v2/sync_controller.rb
katello-4.12.0.rc3 app/controllers/katello/api/v2/sync_controller.rb
katello-4.12.0.rc2 app/controllers/katello/api/v2/sync_controller.rb
katello-4.12.0.rc1 app/controllers/katello/api/v2/sync_controller.rb
katello-4.11.1 app/controllers/katello/api/v2/sync_controller.rb
katello-4.11.0 app/controllers/katello/api/v2/sync_controller.rb
katello-4.11.0.rc2 app/controllers/katello/api/v2/sync_controller.rb
katello-4.11.0.rc1 app/controllers/katello/api/v2/sync_controller.rb
katello-4.10.0 app/controllers/katello/api/v2/sync_controller.rb
katello-4.10.0.rc2 app/controllers/katello/api/v2/sync_controller.rb
katello-4.10.0.rc1 app/controllers/katello/api/v2/sync_controller.rb