Sha256: 1d5bbd1c9dc2d82d7fcbb3beacc1e60f9f73f91a19810e2d64745309ce45fbf0

Contents?: true

Size: 1.44 KB

Versions: 3

Compression:

Stored size: 1.44 KB

Contents

module ThreeScaleToolbox
  module Commands
    module ServiceCommand
      class ShowSubcommand < Cri::CommandRunner
        include ThreeScaleToolbox::Command

        FIELDS = %w[
          id name state system_name backend_version deployment_option support_email description
          created_at updated_at
        ]

        def self.command
          Cri::Command.define do
            name        'show'
            usage       'show <remote> <service-id_or_system-name>'
            summary     'Show the information of a service'
            description "Show the information of a service"

            ThreeScaleToolbox::CLI.output_flag(self)
            param   :remote
            param   :service_id_or_system_name

            runner ShowSubcommand
          end
        end

        def run
          printer.print_record service.attrs
        end

        private

        def remote
          @remote ||= threescale_client(arguments[:remote])
        end

        def ref
          @ref ||= arguments[:service_id_or_system_name]
        end

        def service
          @service ||= find_service
        end

        def find_service
          Entities::Service::find(remote: remote, ref: ref).tap do |svc|
            raise ThreeScaleToolbox::Error, "Service #{ref} does not exist" if svc.nil?
          end
        end

        def printer
          options.fetch(:output, CLI::CustomTablePrinter.new(FIELDS))
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
3scale_toolbox-1.0.1 lib/3scale_toolbox/commands/service_command/show_command.rb
3scale_toolbox-1.0.0 lib/3scale_toolbox/commands/service_command/show_command.rb
3scale_toolbox-0.20.0 lib/3scale_toolbox/commands/service_command/show_command.rb