Sha256: e58b1b0aac66f64442542320ca84e38742e9e23ec2410bee0b3e498c954380e4

Contents?: true

Size: 1.11 KB

Versions: 9

Compression:

Stored size: 1.11 KB

Contents

# frozen_string_literal: true

module Script
  class Command
    class Push < ShopifyCli::SubCommand
      prerequisite_task ensure_project_type: :script

      options do |parser, flags|
        parser.on("--force") { |t| flags[:force] = t }
      end

      def call(_args, _name)
        fresh_env = Tasks::EnsureEnv.call(@ctx)
        force = options.flags.key?(:force) || !!fresh_env

        api_key = Layers::Infrastructure::ScriptProjectRepository.new(ctx: @ctx).get.api_key
        return @ctx.puts(self.class.help) unless api_key

        Layers::Application::PushScript.call(ctx: @ctx, force: force)
        @ctx.puts(@ctx.message("script.push.script_pushed", api_key: api_key))
      rescue StandardError => e
        msg = if api_key
          @ctx.message("script.push.error.operation_failed_with_api_key", api_key: api_key)
        else
          @ctx.message("script.push.error.operation_failed_no_api_key")
        end
        UI::ErrorHandler.pretty_print_and_raise(e, failed_op: msg)
      end

      def self.help
        ShopifyCli::Context.message("script.push.help", ShopifyCli::TOOL_NAME)
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
shopify-cli-2.4.0 lib/project_types/script/commands/push.rb
shopify-cli-2.3.0 lib/project_types/script/commands/push.rb
shopify-cli-2.2.2 lib/project_types/script/commands/push.rb
shopify-cli-2.2.1 lib/project_types/script/commands/push.rb
shopify-cli-2.2.0 lib/project_types/script/commands/push.rb
shopify-cli-2.1.0 lib/project_types/script/commands/push.rb
shopify-cli-2.0.2 lib/project_types/script/commands/push.rb
shopify-cli-2.0.1 lib/project_types/script/commands/push.rb
shopify-cli-2.0.0 lib/project_types/script/commands/push.rb