Class: OsCtld::SendReceive::Commands::Transfer

Inherits:
Base show all
Includes:
OsCtl::Lib::Utils::Log, OsCtl::Lib::Utils::System, Utils::Receive
Defined in:
lib/osctld/send_receive/commands/receive_transfer.rb

Instance Attribute Summary

Attributes inherited from Commands::Base

#client, #client_handler, #id, #opts

Instance Method Summary collapse

Methods included from Utils::Receive

#check_auth_pubkey

Methods inherited from Base

handle

Methods inherited from Commands::Base

#base_execute, #call_cmd, #call_cmd!, #error, #error!, handle, #handled, #indirect?, #initialize, #manipulate, #manipulation_holder, #ok, #progress, #request_stop, run, run!

Constructor Details

This class inherits a constructor from OsCtld::Commands::Base

Instance Method Details

#executeObject



12
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
# File 'lib/osctld/send_receive/commands/receive_transfer.rb', line 12

def execute
  ct = SendReceive::Tokens.find_container(opts[:token])
  error!('container not found') unless ct
  error!('the pool is disabled') unless ct.pool.active?

  ct.manipulate(self, block: true) do
    error!('this container is not staged') if ct.state != :staged

    if !ct.send_log || !ct.send_log.can_receive_continue?(:transfer)
      error!('invalid send sequence')
    elsif !check_auth_pubkey(opts[:key_pool], opts[:key_name], ct)
      error!('authentication key mismatch')
    end

    ct.state = :complete

    if opts[:start]
      call_cmd!(
        Commands::Container::Start,
        id: ct.id,
        pool: ct.pool.name,
        force: true
      )
    end

    ct.send_log.snapshots.each do |v|
      ds, snap = v
      zfs(:destroy, nil, "#{ds}@#{snap}")
    end

    SendReceive.stopped_using_key(ct.pool, ct.send_log.opts.key_name)
    ct.close_send_log
  end

  ok
end