# frozen_string_literal: true module Script module Layers module Infrastructure class AssemblyScriptTaskRunner BYTECODE_FILE = "build/%{name}.wasm" METADATA_FILE = "build/metadata.json" SCRIPT_SDK_BUILD = "npm run build" attr_reader :ctx, :script_name def initialize(ctx, script_name) @ctx = ctx @script_name = script_name end def build compile bytecode end def compiled_type "wasm" end def install_dependencies check_node_version! output, status = ctx.capture2e("npm install --no-audit --no-optional --legacy-peer-deps --loglevel error") raise Errors::DependencyInstallError, output unless status.success? end def dependencies_installed? # Assuming if node_modules folder exist at root of script folder, all deps are installed return false unless ctx.dir_exist?("node_modules") check_if_ep_dependencies_up_to_date! true end def metadata unless @ctx.file_exist?(METADATA_FILE) msg = @ctx.message("script.error.metadata_not_found_cause", METADATA_FILE) raise Domain::Errors::MetadataNotFoundError, msg end raw_contents = File.read(METADATA_FILE) Domain::Metadata.create_from_json(@ctx, raw_contents) end private def check_node_version! output, status = @ctx.capture2e("node", "--version") raise Errors::DependencyInstallError, output unless status.success? require "semantic/semantic" version = ::Semantic::Version.new(output[1..-1]) unless version >= ::Semantic::Version.new(AssemblyScriptProjectCreator::MIN_NODE_VERSION) raise Errors::DependencyInstallError, "Node version must be >= v#{AssemblyScriptProjectCreator::MIN_NODE_VERSION}. "\ "Current version: #{output.strip}." end end def compile check_compilation_dependencies! out, status = ctx.capture2e(SCRIPT_SDK_BUILD) raise Domain::Errors::ServiceFailureError, out unless status.success? end def check_compilation_dependencies! pkg = JSON.parse(File.read("package.json")) build_script = pkg.dig("scripts", "build") raise Errors::BuildScriptNotFoundError, "Build script not found" if build_script.nil? unless build_script.start_with?("shopify-scripts") raise Errors::InvalidBuildScriptError, "Invalid build script" end end def bytecode blob = format(BYTECODE_FILE, name: script_name) raise Errors::WebAssemblyBinaryNotFoundError unless @ctx.file_exist?(blob) contents = File.read(blob) @ctx.rm(blob) contents end def check_if_ep_dependencies_up_to_date! return true if ENV["SHOPIFY_CLI_SCRIPTS_IGNORE_OUTDATED"] # ignore exit code since it will not be 0 unless every package is up to date which they probably won't be out, _ = ctx.capture2e("npm", "outdated", "--json", "--depth", "0") parsed_outdated_check = JSON.parse(out) outdated_ep_packages = parsed_outdated_check .select { |package_name, _| package_name.start_with?("@shopify/extension-point-as-") } .select { |_, version_info| !package_is_up_to_date?(version_info) } .keys raise Errors::PackagesOutdatedError.new(outdated_ep_packages), "NPM packages out of date: #{outdated_ep_packages.join(", ")}" unless outdated_ep_packages.empty? end def package_is_up_to_date?(version_info) require "semantic/semantic" current_version = version_info["current"] latest_version = version_info["latest"] # making an assumption that the script developer knows what they're doing if they're not referencing a # semver version begin current_version = ::Semantic::Version.new(current_version) latest_version = ::Semantic::Version.new(latest_version) rescue ArgumentError return true end return false if current_version.major < latest_version.major return false if latest_version.major == 0 && current_version.minor < latest_version.minor true end end end end end