Class: VagrantPlugins::DigitalOcean::Actions::SyncFolders

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-digitalocean/actions/sync_folders.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ SyncFolders

Returns a new instance of SyncFolders.



7
8
9
10
11
# File 'lib/vagrant-digitalocean/actions/sync_folders.rb', line 7

def initialize(app, env)
  @app = app
  @machine = env[:machine]
  @logger = Log4r::Logger.new('vagrant::digitalocean::sync_folders')
end

Instance Method Details

#call(env) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/vagrant-digitalocean/actions/sync_folders.rb', line 13

def call(env)
  ssh_info = @machine.ssh_info

  @machine.config.vm.synced_folders.each do |id, data|
    next if data[:disabled]

    hostpath  = File.expand_path(data[:hostpath], env[:root_path])
    guestpath = data[:guestpath]

    # make sure there is a trailing slash on the host path to
    # avoid creating an additional directory with rsync
    hostpath = "#{hostpath}/" if hostpath !~ /\/$/

    env[:ui].info I18n.t('vagrant_digital_ocean.info.rsyncing', {
      :hostpath => hostpath,
      :guestpath => guestpath
    })

    # create the guest path
    @machine.communicate.sudo("mkdir -p #{guestpath}")
    @machine.communicate.sudo(
      "chown -R #{ssh_info[:username]} #{guestpath}")

    # rsync over to the guest path using the ssh info
    command = [
      "rsync", "--verbose", "--archive", "-z",
      "-e", "ssh -p #{ssh_info[:port]} -o StrictHostKeyChecking=no -i '#{ssh_info[:private_key_path]}'",
      hostpath,
      "#{ssh_info[:username]}@#{ssh_info[:host]}:#{guestpath}"]

    r = Vagrant::Util::Subprocess.execute(*command)
    if r.exit_code != 0
      raise Errors::RsyncError,
        :guestpath => guestpath,
        :hostpath => hostpath,
        :stderr => r.stderr
    end
  end

  @app.call(env)
end