module Actions module Katello module CapsuleContent class Sync < ::Actions::EntryAction def resource_locks :link end input_format do param :name end def humanized_name _("Synchronize smart proxy") end def humanized_input ["'#{input['smart_proxy']['name']}'"] + super end def plan(smart_proxy, options = {}) action_subject(smart_proxy) capsule_content = ::Katello::CapsuleContent.new(smart_proxy) capsule_content.ping_pulp capsule_content.verify_ueber_certs environment_id = options.fetch(:environment_id, nil) environment = ::Katello::KTEnvironment.find(environment_id) if environment_id repository_id = options.fetch(:repository_id, nil) repository = ::Katello::Repository.find(repository_id) if repository_id content_view_id = options.fetch(:content_view_id, nil) content_view = ::Katello::ContentView.find(content_view_id) if content_view_id fail _("Action not allowed for the default capsule.") if capsule_content.default_capsule? affected_repos = affected_repositories(capsule_content, environment, content_view, repository) need_updates = repos_needing_updates(capsule_content, affected_repos) repository_ids = get_repository_ids(capsule_content, environment, content_view, repository) unless repository_ids.blank? sequence do need_updates.each do |repo| plan_action(Pulp::Repository::Refresh, repo, capsule_id: capsule_content.capsule.id) end plan_action(ConfigureCapsule, capsule_content, environment, content_view, repository) sync_repos_to_capsule(capsule_content, repository_ids) end end end def sync_repos_to_capsule(capsule_content, repository_ids) concurrence do repository_ids.each do |repo_id| sequence do repo = ::Katello::Repository.find_by(pulp_id: repo_id) if repo && ['yum', 'puppet'].exclude?(repo.content_type) # we unassociate units in non-yum/puppet repos in order to avoid version conflicts # during publish. (i.e. two versions of a unit in the same repo) plan_action(Pulp::Consumer::UnassociateUnits, capsule_id: capsule_content.capsule.id, repo_pulp_id: repo_id) end plan_action(Pulp::Consumer::SyncCapsule, capsule_id: capsule_content.capsule.id, repo_pulp_id: repo_id, sync_options: { remove_missing: repo && ["puppet", "yum"].include?(repo.content_type) }) end end end end def get_repository_ids(capsule, environment, content_view, repository) if environment repository_ids = capsule.repos_available_to_capsule(environment, content_view).map(&:pulp_id) elsif repository repository_ids = [repository.pulp_id] environment = repository.environment else repository_ids = capsule.repos_available_to_capsule.map(&:pulp_id) end if environment && !capsule.lifecycle_environments.include?(environment) fail _("Lifecycle environment '%{environment}' is not attached to this capsule.") % { :environment => environment.name } end repository_ids end def affected_repositories(capsule_content, environment, content_view, repository) if repository [repository] else capsule_content.repos_available_to_capsule(environment, content_view) end end def repos_needing_updates(capsule_content, repos) need_importer_update = ::Katello::Repository.needs_importer_updates(repos, capsule_content) need_distributor_update = ::Katello::Repository.needs_distributor_updates(repos, capsule_content) (need_distributor_update + need_importer_update).uniq end def rescue_strategy Dynflow::Action::Rescue::Skip end end end end end