Sha256: f2aa312ab520fc0a9ad8c8592efb5e9e625464d49777cd2798d24606cc1e7c7c

Contents?: true

Size: 1.68 KB

Versions: 8

Compression:

Stored size: 1.68 KB

Contents

require 'fulmar/shell'

module Fulmar
  module Infrastructure
    module Service
      module Transfer
        # Abstract class for alle transfers, provides common methods
        class Base
          DEFAULT_CONFIG = {
            debug: false,
            user: '',
            password: '',
            remote_path: nil,
            local_path: '.',
            type: :rsync_with_versions
          }

          attr_accessor :config

          def initialize(config)
            @config = DEFAULT_CONFIG.merge(config)

            # Remove trailing slashes
            @config[:local_path] = @config[:local_path].chomp('/') if @config[:local_path]
            @config[:remote_path] = @config[:remote_path].chomp('/') if @config[:remote_path]

            @prepared = false
          end

          # Test the supplied config for required parameters
          def test_config
            required = [:host, :remote_path, :local_path]
            required.each { |key| fail "Configuration is missing required setting '#{key}'." if @config.blank? }
            fail ':remote_path must be absolute' if @config[:remote_path][0, 1] != '/'
          end

          def prepare
            @local_shell = Fulmar::Infrastructure::Service::ShellService.new @config[:local_path]
            @local_shell.debug = @config[:debug]
            @prepared = true
          end

          def publish
            # Placeholder for consistent api, currently only implemented in rsync_with_versions
            true
          end

          protected

          def ssh_user_and_host
            @config[:user].blank? ? @config[:hostname] : @config[:user] + '@' + @config[:hostname]
          end
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
fulmar-1.3.0 lib/fulmar/infrastructure/service/transfer/base.rb
fulmar-1.2.1 lib/fulmar/infrastructure/service/transfer/base.rb
fulmar-1.2.0 lib/fulmar/infrastructure/service/transfer/base.rb
fulmar-1.1.0 lib/fulmar/infrastructure/service/transfer/base.rb
fulmar-1.0.0 lib/fulmar/infrastructure/service/transfer/base.rb
fulmar-0.6.5 lib/fulmar/infrastructure/service/transfer/base.rb
fulmar-0.6.4 lib/fulmar/infrastructure/service/transfer/base.rb
fulmar-0.6.3 lib/fulmar/infrastructure/service/transfer/base.rb