Sha256: 5d3b68a3e7cb8605e01e91a05f860d93159bebb71fffa0c148ea002cd8b0168b

Contents?: true

Size: 1.71 KB

Versions: 11

Compression:

Stored size: 1.71 KB

Contents

module ThreeScaleToolbox
  module Commands
    module MethodsCommand
      module Delete
        class DeleteSubcommand < Cri::CommandRunner
          include ThreeScaleToolbox::Command

          def self.command
            Cri::Command.define do
              name        'delete'
              usage       'delete [opts] <remote> <service> <method>'
              summary     'delete method'
              description 'Delete method'

              param       :remote
              param       :service_ref
              param       :method_ref

              runner DeleteSubcommand
            end
          end

          def run
            method.delete
            puts "Method id: #{method.id} deleted"
          end

          private

          def service
            @service ||= find_service
          end

          def method
            @method ||= find_method
          end

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

          def find_method
            hits = service.hits
            Entities::Method.find(service: service, parent_id: hits.fetch('id'), ref: method_ref).tap do |p|
              raise ThreeScaleToolbox::Error, "Method #{method_ref} does not exist" if p.nil?
            end
          end

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

          def service_ref
            arguments[:service_ref]
          end

          def method_ref
            arguments[:method_ref]
          end
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
3scale_toolbox-0.17.1 lib/3scale_toolbox/commands/methods_command/delete_command.rb
3scale_toolbox-0.17.0 lib/3scale_toolbox/commands/methods_command/delete_command.rb
3scale_toolbox-0.16.0 lib/3scale_toolbox/commands/methods_command/delete_command.rb
3scale_toolbox-0.15.0 lib/3scale_toolbox/commands/methods_command/delete_command.rb
3scale_toolbox-0.14.0 lib/3scale_toolbox/commands/methods_command/delete_command.rb
3scale_toolbox-0.13.0 lib/3scale_toolbox/commands/methods_command/delete_command.rb
3scale_toolbox-0.12.4 lib/3scale_toolbox/commands/methods_command/delete_command.rb
3scale_toolbox-0.12.3 lib/3scale_toolbox/commands/methods_command/delete_command.rb
3scale_toolbox-0.12.2 lib/3scale_toolbox/commands/methods_command/delete_command.rb
3scale_toolbox-0.11.0 lib/3scale_toolbox/commands/methods_command/delete_command.rb
3scale_toolbox-0.10.0 lib/3scale_toolbox/commands/methods_command/delete_command.rb