Sha256: 864f2955b749ebdce9a433caa685b9bdd0a7dc6e699ac427e561a8ad5f38d836

Contents?: true

Size: 970 Bytes

Versions: 8

Compression:

Stored size: 970 Bytes

Contents

module Astrails
  module Safe
    class Gpg < Pipe

      protected

      def post_process
        @backup.compressed = true
      end

      def pipe
        command = @config[:gpg, :command] || 'gpg'
        if key
          "|#{command} #{@config[:gpg, :options]} -e -r #{key}"
        elsif password
          "|#{command} #{@config[:gpg, :options]} -c --passphrase-file #{gpg_password_file(password)}"
        end
      end

      def extension
        ".gpg"
      end

      def active?
        raise RuntimeError, "can't use both gpg password and pubkey" if key && password

        !!(password || key)
      end

      private

      def password
        @password ||= @config[:gpg, :password]
      end

      def key
        @key ||= @config[:gpg, :key]
      end

      def gpg_password_file(pass)
        return "TEMP_GENERATED_FILENAME" if $DRY_RUN
        Astrails::Safe::TmpFile.create("gpg-pass") { |file| file.write(pass) }
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 3 rubygems

Version Path
astrails-safe-0.3.1 lib/astrails/safe/gpg.rb
astrails-safe-0.3.0 lib/astrails/safe/gpg.rb
netguru-safe-0.2.11 lib/astrails/safe/gpg.rb
netguru-safe-0.2.10 lib/astrails/safe/gpg.rb
netguru-safe-0.2.9 lib/astrails/safe/gpg.rb
darkofabijan-astrails-safe-0.2.9 lib/astrails/safe/gpg.rb
darkofabijan-astrails-safe-0.2.8 lib/astrails/safe/gpg.rb
astrails-safe-0.2.7 lib/astrails/safe/gpg.rb