Class: IParty::CLI::Application

Inherits:
Object
  • Object
show all
Includes:
Actions, Appinfo, Options, Colorize
Defined in:
lib/iparty/cli/application.rb,
lib/iparty/cli/application/actions.rb,
lib/iparty/cli/application/appinfo.rb,
lib/iparty/cli/application/options.rb,
lib/iparty/cli/application/irb_context.rb

Defined Under Namespace

Modules: Actions, Appinfo, Options Classes: ActionNotFound, DefaultOut, Error, IrbContext, UnknownFormatter

Constant Summary

Constants included from Colorize

Colorize::COLORMAP

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Colorize

#colorize, #decolorize, #with_color

Methods included from Appinfo

#appinfo_actions, #appinfo_cli_config, #appinfo_cli_opts, #appinfo_formatters, #appinfo_iparty_config, #appinfo_mmdb_status, #appinfo_runtime

Methods included from Actions

#dispatch_appinfo, #dispatch_help, #dispatch_info, #dispatch_irb

Methods included from Options

#colorized_help_text, #default_options, #init_optparse, #loadrc, #parse_options!, #require_resolv

Constructor Details

#initialize(env:, argv:, argf:, **opts) {|_self| ... } ⇒ Application

Returns a new instance of Application.

Yields:

  • (_self)

Yield Parameters:



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/iparty/cli/application.rb', line 33

def initialize(env:, argv:, argf:, **opts)
  @env = env
  @argv = argv
  @argf = argf

  @config_path = Pathname.new(env.fetch("IPARTY_CFGDIR", "~/.iparty")).expand_path
  @config_file = @config_path.join("config.rb")
  @opts = default_options.merge(opts)
  @optparse = init_optparse
  @options_parsed = false
  @rc_disabled = @argv.delete("--no-rc")
  @out = DefaultOut.new

  loadrc
  yield(self) if block_given?
end

Instance Attribute Details

#argfObject (readonly)

Returns the value of attribute argf.



31
32
33
# File 'lib/iparty/cli/application.rb', line 31

def argf
  @argf
end

#argvObject (readonly)

Returns the value of attribute argv.



31
32
33
# File 'lib/iparty/cli/application.rb', line 31

def argv
  @argv
end

#config_fileObject (readonly)

Returns the value of attribute config_file.



31
32
33
# File 'lib/iparty/cli/application.rb', line 31

def config_file
  @config_file
end

#config_pathObject (readonly)

Returns the value of attribute config_path.



31
32
33
# File 'lib/iparty/cli/application.rb', line 31

def config_path
  @config_path
end

#envObject (readonly)

Returns the value of attribute env.



31
32
33
# File 'lib/iparty/cli/application.rb', line 31

def env
  @env
end

#optsObject (readonly)

Returns the value of attribute opts.



31
32
33
# File 'lib/iparty/cli/application.rb', line 31

def opts
  @opts
end

#outObject (readonly)

Returns the value of attribute out.



31
32
33
# File 'lib/iparty/cli/application.rb', line 31

def out
  @out
end

Instance Method Details

#_deep_onlyexcept_kv_match?(key, value, matchers, keep: true, keystack: []) ⇒ Boolean

Returns:

  • (Boolean)


235
236
237
238
239
240
241
242
243
244
245
246
247
# File 'lib/iparty/cli/application.rb', line 235

def _deep_onlyexcept_kv_match? key, value, matchers, keep: true, keystack: []
  fullkey = (keystack + [key]).join(".")

  unless matched = matchers.any?{ fullkey.match?(_1) }
    deep_onlyexcept_data(value, matchers, keep: keep, keystack: keystack + [key])
  end

  if keep
    value.respond_to?(:each) ? !matched && value.empty? : !matched
  else
    matched || (value.respond_to?(:each) && value.empty?)
  end
end

#build_formatter(fmt = @opts[:formatter], **kw) ⇒ Object



99
100
101
102
103
104
105
106
107
108
109
# File 'lib/iparty/cli/application.rb', line 99

def build_formatter fmt = @opts[:formatter], **kw
  if fmt.is_a?(CLI::Formatter)
    fmt
  elsif fmt.is_a?(Class)
    fmt.new(self, **kw)
  elsif fmt_class = CLI::Formatter.find_by_id(fmt)
    fmt_class.new(self, argument: fmt, **kw)
  else
    raise UnknownFormatter, "unknown formatter: #{fmt}"
  end
end

#cookbook(*recipes) ⇒ Object



50
51
52
53
54
55
# File 'lib/iparty/cli/application.rb', line 50

def cookbook *recipes
  recipes.flatten.each do |recipe|
    file = IParty::GEM_ROOT.join("docs", "cli", "action_cookbook", "#{recipe}.rb")
    instance_eval(file.read, "#{caller(3..3).first}, eval #{file}")
  end
end

#create_matchers(expressions) ⇒ Object



218
219
220
221
222
223
224
# File 'lib/iparty/cli/application.rb', line 218

def create_matchers expressions
  return if expressions.empty?

  expressions.map do |exp|
    /\A#{exp.gsub(/\*\*|\*/, { "**" => ".*", "*" => "[^.]*" })}\z/i
  end
end

#deep_onlyexcept_data(data, matchers, keep: true, keystack: []) ⇒ Object



226
227
228
229
230
231
232
233
# File 'lib/iparty/cli/application.rb', line 226

def deep_onlyexcept_data data, matchers, keep: true, keystack: []
  case data
  when Hash
    data.delete_if {|k, v| _deep_onlyexcept_kv_match?(k, v, matchers, keep: keep, keystack: keystack) }
  when Array
    data.delete_if.with_index {|v, i| _deep_onlyexcept_kv_match?(i, v, matchers, keep: keep, keystack: keystack) }
  end
end

#dispatch(action: nil) ⇒ Object



249
250
251
252
253
254
255
256
257
258
259
260
261
262
# File 'lib/iparty/cli/application.rb', line 249

def dispatch action: nil
  parse_options!
  action ||= @opts[:action]
  action_method = :"dispatch_#{action}"
  raise ActionNotFound, "unknown action: #{action} (does not respond to ##{action_method})" unless respond_to?(action_method)

  puts "[iparty-debug] dispatching #{action_method}" if @opts[:debug]
  send(action_method)
rescue CLI::Application::Error => ex
  appinfo_formatters(pad: 0) if ex.is_a?(CLI::Application::UnknownFormatter)
  @opts[:debug] ? raise(ex) : abort(c(ex.message, :red))
rescue Interrupt, SystemExit => ex
  raise(ex) if @opts[:debug]
end

#each_address(use_argf: read_from_stdin?, , &block) ⇒ Object



89
90
91
92
93
94
95
96
97
# File 'lib/iparty/cli/application.rb', line 89

def each_address use_argf: read_from_stdin?, &block
  if use_argf
    each_line_in_argf_as_addresses do |addresses|
      addresses.each(&block)
    end
  else
    IParty.expand_hostnames(@argv).each(&block)
  end
end

#each_line_in_argf_as_addresses(prompt: $stdin.tty?, ps1: "> ") ⇒ Object



69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/iparty/cli/application.rb', line 69

def each_line_in_argf_as_addresses prompt: $stdin.tty?, ps1: "> "
  index = 0
  print ps1 if prompt

  @argf.each_line do |line|
    raise(Interrupt) if prompt && line.chomp.match?(/^(q|quit|exit)$/)

    line.split(/\s+/).each do |chunk|
      addresses = IParty.expand_hostnames(chunk)
      yield(addresses, index)
      index += addresses.length
    end

    if prompt
      print ps1
      index = 0
    end
  end
end

#ensure_mmdb_files!(fetch_when = @opts[:mmdb_fetch_when]) ⇒ Object



57
58
59
# File 'lib/iparty/cli/application.rb', line 57

def ensure_mmdb_files! fetch_when = @opts[:mmdb_fetch_when]
  IParty::MaxMind.fetch_db_files!(fetch_when, verbose: true)
end

#formatterObject



111
112
113
# File 'lib/iparty/cli/application.rb', line 111

def formatter
  @_formatter ||= build_formatter(@opts[:formatter], colorize: @opts[:colorize])
end

#ip_to_data(ip, colorize: false) ⇒ Object



115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/iparty/cli/application.rb', line 115

def ip_to_data ip, colorize: false
  ipp = IParty(ip)

  data = {
    type: ipp.type,
    prefix: ipp.prefix,
    address: ipp.to_s,
    cidr: ipp.to_cidr,
  }

  # -r --resolve
  data[:hostname] = Resolv.getnames(ip).join(" ") if @opts[:resolv]

  # merge geo data
  data.merge!(ipp.as_json)

  # -l --language
  replace_names_with_singular_for!(@opts[:lang].to_s, data) if @opts[:lang] && @opts[:lang].to_s != "all"

  # -a --all
  data = summarize(data, colorize: colorize) if @opts[:summarize]

  # -e --except
  # -o --only
  onlyexcept_data!(data)

  data
rescue StandardError => ex
  @opts[:debug] ? raise(ex) : { error_class: ex.class, error: ex.message }
end

#onlyexcept_data!(data) ⇒ Object



206
207
208
209
210
211
212
213
214
215
216
# File 'lib/iparty/cli/application.rb', line 206

def onlyexcept_data! data
  if @opts[:only] && matchers = create_matchers(@opts[:only])
    deep_onlyexcept_data(data, matchers, keep: true)
  end

  if @opts[:except] && matchers = create_matchers(@opts[:except])
    deep_onlyexcept_data(data, matchers, keep: false)
  end

  data
end

#read_from_stdin?Boolean

Returns:

  • (Boolean)


65
66
67
# File 'lib/iparty/cli/application.rb', line 65

def read_from_stdin?
  @opts[:stdin] || (@argv.empty? && stdin_select?)
end

#replace_names_with_singular_for!(lang, data) ⇒ Object



146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'lib/iparty/cli/application.rb', line 146

def replace_names_with_singular_for!(lang, data)
  case data
  when Hash
    if (names = data.dig(:names)) && (name = names.dig(lang.to_sym) || names.dig(:en))
      data[:name] = name
      data.delete(:names)
    end

    data.each_value { replace_names_with_singular_for!(lang, _1) }
  when Array
    data.each{ replace_names_with_singular_for!(lang, _1) }
  end
end

#stdin_select?Boolean

Returns:

  • (Boolean)


61
62
63
# File 'lib/iparty/cli/application.rb', line 61

def stdin_select?
  !$stdin.wait_readable(0).nil?
end

#summarize(data, colorize: ) ⇒ Object



160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# File 'lib/iparty/cli/application.rb', line 160

def summarize data, colorize: @opts[:colorize]
  with_color(colorize) do
    latlong = [data.dig(:location, :latitude), data.dig(:location, :longitude)].compact

    {
      type: "#{data[:type]}[/#{data[:prefix]}]",
      hostname: (data[:hostname] if data[:hostname] && !data[:hostname].empty?),
      cidr: (data[:cidr] unless data[:cidr] == data[:address]),
      network: summarize_network_detail(data),
      name: data.dig(:annotations, :name),
      tags: (data.dig(:annotations, :tags).join(" ") if data.dig(:annotations, :tags)&.any?),
      location: summarize_location_detail(data),
      time_zone: data.dig(:location, :time_zone),
      latlong: (c((@opts[:fmt_latlong] || "%f, %f") % latlong, :magenta) unless latlong.empty?),
    }.compact
  end
end

#summarize_asn_detail(data) ⇒ Object



178
179
180
181
182
183
184
# File 'lib/iparty/cli/application.rb', line 178

def summarize_asn_detail data
  return unless asn_number = data.dig(:autonomous_system_number)

  asn_org = data.dig(:autonomous_system_organization)
  asn_detail = c("AS#{asn_number} #{c(asn_org, :cyan)}")
  asn_detail unless decolorize(asn_detail).empty?
end

#summarize_location_detail(data) ⇒ Object



191
192
193
194
195
196
197
198
199
200
201
202
203
204
# File 'lib/iparty/cli/application.rb', line 191

def summarize_location_detail data
  continent_name = data.dig(:continent, :name) || data.dig(:continent, :names, :en)
  country_name = data.dig(:country, :name) || data.dig(:country, :names, :en)
  country_name ||= data.dig(:registered_country, :name) || data.dig(:registered_country, :names, :en)
  city_name = data.dig(:city, :name) || data.dig(:city, :names, :en)

  location_detail = [
    (c(continent_name, :green) if continent_name),
    (c(country_name, :yellow) if country_name),
    ([c(data.dig(:postal, :code), :cyan), c(city_name, :blue)].compact.join(" ") if city_name),
  ].compact.join(c(" / ", :black))

  location_detail unless decolorize(location_detail).empty?
end

#summarize_network_detail(data) ⇒ Object



186
187
188
189
# File 'lib/iparty/cli/application.rb', line 186

def summarize_network_detail data
  network_detail = [c(data[:network], :blue), summarize_asn_detail(data)].compact.join(c(" -- ", :black))
  network_detail unless decolorize(network_detail).empty?
end