diff options
Diffstat (limited to 'Library/Homebrew/cask/lib/hbc/artifact/relocated.rb')
| -rw-r--r-- | Library/Homebrew/cask/lib/hbc/artifact/relocated.rb | 74 | 
1 files changed, 41 insertions, 33 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/artifact/relocated.rb b/Library/Homebrew/cask/lib/hbc/artifact/relocated.rb index 0e8e42c9b..72a6f6bb5 100644 --- a/Library/Homebrew/cask/lib/hbc/artifact/relocated.rb +++ b/Library/Homebrew/cask/lib/hbc/artifact/relocated.rb @@ -1,33 +1,57 @@ -require "hbc/artifact/base" +require "hbc/artifact/abstract_artifact"  require "hbc/utils/hash_validator"  module Hbc    module Artifact -    class Relocated < Base -      def summary -        { -          english_description: self.class.english_description, -          contents:            @cask.artifacts[self.class.artifact_dsl_key].map(&method(:summarize_artifact)).compact, -        } +    class Relocated < AbstractArtifact +      def self.from_args(cask, *args) +        source_string, target_hash = args + +        if target_hash +          raise CaskInvalidError unless target_hash.respond_to?(:keys) +          target_hash.extend(HashValidator).assert_valid_keys(:target) +        end + +        target_hash ||= {} + +        new(cask, source_string, **target_hash) +      end + +      def self.resolve_target(target) +        Hbc.public_send(dirmethod).join(target)        end        attr_reader :source, :target -      def printable_target -        target.to_s.sub(/^#{ENV['HOME']}(#{File::SEPARATOR}|$)/, "~/") +      def initialize(cask, source, target: nil) +        super(cask) + +        @source_string = source.to_s +        @target_string = target.to_s +        source = cask.staged_path.join(source) +        @source = source +        target ||= source.basename +        @target = self.class.resolve_target(target)        end +      def summarize +        target_string = @target_string.empty? ? "" : " -> #{@target_string}" +        "#{@source_string}#{target_string}" +      end + +      private +        ALT_NAME_ATTRIBUTE = "com.apple.metadata:kMDItemAlternateNames".freeze        # Try to make the asset searchable under the target name.  Spotlight        # respects this attribute for many filetypes, but ignores it for App        # bundles. Alfred 2.2 respects it even for App bundles. -      def add_altname_metadata(file, altname) -        return if altname.casecmp(file.basename).zero? +      def add_altname_metadata(file, altname, command: nil) +        return if altname.to_s.casecmp(file.basename.to_s).zero?          odebug "Adding #{ALT_NAME_ATTRIBUTE} metadata" -        altnames = @command.run("/usr/bin/xattr", -                                args:         ["-p", ALT_NAME_ATTRIBUTE, file.to_s], +        altnames = command.run("/usr/bin/xattr", +                                args:         ["-p", ALT_NAME_ATTRIBUTE, file],                                  print_stderr: false).stdout.sub(/\A\((.*)\)\Z/, '\1')          odebug "Existing metadata is: '#{altnames}'"          altnames.concat(", ") unless altnames.empty? @@ -35,31 +59,15 @@ module Hbc          altnames = "(#{altnames})"          # Some packages are shipped as u=rx (e.g. Bitcoin Core) -        @command.run!("/bin/chmod", args: ["--", "u+rw", file, file.realpath]) +        command.run!("/bin/chmod", args: ["--", "u+rw", file, file.realpath]) -        @command.run!("/usr/bin/xattr", +        command.run!("/usr/bin/xattr",                        args:         ["-w", ALT_NAME_ATTRIBUTE, altnames, file],                        print_stderr: false)        end -      def each_artifact -        @cask.artifacts[self.class.artifact_dsl_key].each do |artifact| -          load_specification(artifact) -          yield -        end -      end - -      def load_specification(artifact_spec) -        source_string, target_hash = artifact_spec -        raise CaskInvalidError if source_string.nil? -        @source = @cask.staged_path.join(source_string) -        if target_hash -          raise CaskInvalidError unless target_hash.respond_to?(:keys) -          target_hash.extend(HashValidator).assert_valid_keys(:target) -          @target = Hbc.send(self.class.artifact_dirmethod).join(target_hash[:target]) -        else -          @target = Hbc.send(self.class.artifact_dirmethod).join(source.basename) -        end +      def printable_target +        target.to_s.sub(/^#{ENV['HOME']}(#{File::SEPARATOR}|$)/, "~/")        end      end    end  | 
