Class: HTTY::CLI::Commands::QueryAdd

Inherits:
HTTY::CLI::Command show all
Includes:
Display, UrlEscaping
Defined in:
lib/htty/cli/commands/query_add.rb

Overview

Encapsulates the query-add command.

Constant Summary

Constants included from Display

Display::FORMATS

Instance Attribute Summary

Attributes inherited from HTTY::CLI::Command

#arguments, #session

Class Method Summary collapse

Instance Method Summary collapse

Methods included from UrlEscaping

#escape_or_warn_of_escape_sequences

Methods included from Display

#break, #format, #formatted_prompt_for, #indent, #logotype, #normal, #notice, #pluralize, #rescuing_from, #say, #say_goodbye, #say_header, #say_hello, #show_headers, #show_request, #show_response, #strong, #word_wrap, #word_wrap_indented

Methods inherited from HTTY::CLI::Command

#add_request_if_new, alias_for, aliases, build_for, command_line, complete_for?, #initialize, notify_if_cookies_cleared, raw_name, sanitize_arguments

Constructor Details

This class inherits a constructor from HTTY::CLI::Command

Class Method Details

.categoryObject

Returns the name of a category under which help for the query-add command should appear.



11
12
13
# File 'lib/htty/cli/commands/query_add.rb', line 11

def self.category
  'Navigation'
end

.command_line_argumentsObject

Returns the arguments for the command-line usage of the query-add command.



16
17
18
# File 'lib/htty/cli/commands/query_add.rb', line 16

def self.command_line_arguments
  'NAME [VALUE [NAME [VALUE ...]]]'
end

.helpObject

Returns the help text for the query-add command.



21
22
23
# File 'lib/htty/cli/commands/query_add.rb', line 21

def self.help
  "Adds query-string parameters to the request's address"
end

.help_extendedObject

Returns the extended help text for the query-add command.



26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/htty/cli/commands/query_add.rb', line 26

def self.help_extended
  'Adds one or more query-string parameters used for the request. Does not ' +
  "communicate with the host.\n"                                             +
  "\n"                                                                       +
  'The difference between this command and '                                 +
  "#{strong HTTY::CLI::Commands::QuerySet.command_line} is that this "       +
  "command adds duplicate parameters instead of replacing any of them.\n"    +
  "\n"                                                                       +
  'The name(s) and value(s) of the query-string parameter(s) will be URL-'   +
  "encoded if necessary.\n"                                                  +
  "\n"                                                                       +
  'The console prompt shows the address for the current request.'
end

.see_also_commandsObject

Returns related command classes for the query-add command.



41
42
43
44
45
46
47
# File 'lib/htty/cli/commands/query_add.rb', line 41

def self.see_also_commands
  [HTTY::CLI::Commands::QueryRemove,
   HTTY::CLI::Commands::QuerySet,
   HTTY::CLI::Commands::QueryUnset,
   HTTY::CLI::Commands::QueryUnsetAll,
   HTTY::CLI::Commands::Address]
end

Instance Method Details

#performObject

Performs the query-add command.



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/htty/cli/commands/query_add.rb', line 50

def perform
  if arguments.empty?
    raise ArgumentError, 'wrong number of arguments (0 for N)'
  end

  add_request_if_new do |request|
    self.class.notify_if_cookies_cleared request do
      escaped_arguments = escape_or_warn_of_escape_sequences(arguments)
      escaped_arguments.each_slice 2 do |name, value|
        request = request.query_add(name, value)
      end
      request
    end
  end
end