Sha256: 45e3cfb2ce3c8fd6f18967df5da217c1bfa000f0a08031cbb68cea91ee8cb812

Contents?: true

Size: 1.72 KB

Versions: 1

Compression:

Stored size: 1.72 KB

Contents

# frozen_string_literal: true

require "thor"

require_relative "../base"

module Neetob
  class CLI
    module Github
      module Labels
        class Update < Base
          attr_accessor :repos, :sandbox, :old_name, :new_name, :all_neeto_repos

          def initialize(repos, old_name, new_name, sandbox = false, all_neeto_repos = false)
            super()
            @repos = repos
            @sandbox = sandbox
            @old_name = old_name
            @new_name = new_name
            @all_neeto_repos = all_neeto_repos
          end

          def run
            check_for_apps_and_all_neeto_repos_option(repos, all_neeto_repos)
            matching_repos = find_all_matching_apps_or_repos(repos, :github, sandbox, false, all_neeto_repos)
            matching_repos.each do |repo|
              ui.info("\nUpdating label for #{repo} repo \n")
              begin
                update_label!(repo, old_name, new_name)
              rescue Octokit::NotFound
                ui.say("Ignoring update for #{repo} repo as it doesn't have the \"#{old_name}\" label.")
              rescue StandardError => e
                ExceptionHandler.new(e).process
              end
            end
          end

          private

            def update_label!(repo, old_name, new_name)
              client.label(repo, new_name)
              ui.error("Label with name \"#{new_name}\" already exists.")
              nil
            rescue Octokit::NotFound
              client.update_label(repo, old_name, { name: new_name })
              ui.success("Label \"#{old_name}\" updated to \"#{new_name}\" successfully")
            rescue StandardError => e
              ExceptionHandler.new(e).process
            end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
neetob-0.2.3 lib/neetob/cli/github/labels/update.rb