Class: Zold::Fetch

Inherits:
Object
  • Object
show all
Defined in:
lib/zold/commands/fetch.rb

Overview

FETCH pulling command

Instance Method Summary collapse

Constructor Details

#initialize(wallets:, remotes:, copies:, log: Log::Quiet.new) ⇒ Fetch

Returns a new instance of Fetch.



46
47
48
49
50
51
# File 'lib/zold/commands/fetch.rb', line 46

def initialize(wallets:, remotes:, copies:, log: Log::Quiet.new)
  @wallets = wallets
  @remotes = remotes
  @copies = copies
  @log = log
end

Instance Method Details

#run(args = []) ⇒ Object



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/zold/commands/fetch.rb', line 53

def run(args = [])
  opts = Slop.parse(args, help: true, suppress_errors: true) do |o|
    o.banner = "Usage: zold fetch [ID...] [options]
Available options:"
    o.bool '--ignore-score-weakness',
      'Don\'t complain when their score is too weak',
      default: false
    o.array '--ignore-node',
      'Ignore this node and don\'t fetch from it',
      default: []
    o.bool '--quiet-if-absent',
      'Don\'t fail if the wallet is absent in all remote nodes',
      default: false
    o.string '--network',
      'The name of the network we work in',
      default: 'test'
    o.bool '--help', 'Print instructions'
  end
  mine = Args.new(opts, @log).take || return
  (mine.empty? ? @wallets.all : mine.map { |i| Id.new(i) }).each do |id|
    fetch(id, Copies.new(File.join(@copies, id)), opts)
  end
end