Class: PSWinCom::Utility::Options

Inherits:
Object
  • Object
show all
Defined in:
lib/pswincom/utility/options.rb

Class Method Summary collapse

Class Method Details

.default_optionsObject



73
74
75
76
77
78
79
80
81
82
83
# File 'lib/pswincom/utility/options.rb', line 73

def default_options
  options = OpenStruct.new          
  config = load_defaults
  options.username = config['username']
  options.password = config['password']
  options.from     = config['from']
  options.host     = config['host']
  return options
rescue Errno::ENOENT
  return options
end

.load_defaultsObject



85
86
87
88
# File 'lib/pswincom/utility/options.rb', line 85

def load_defaults
  config_file = File.open(File.join(ENV['HOME'], '.pswincom'))
  YAML.load(config_file)
end

.parse(args) ⇒ Object



10
11
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/pswincom/utility/options.rb', line 10

def parse(args)          
  @options = self.default_options
  parser = OptionParser.new do |opts|
    opts.banner = "Usage: sms [options] recipient(s) message"
    opts.separator "  Recipients can be a comma-separated list, up to 100 max."
    opts.separator ""
    opts.separator "Specific options:"
  
    opts.on('-u', '--username USERNAME',
      "Specify the pswincom username (overrides ~/.pswincom setting)") do |username|
       @options.username = username 
    end
  
    opts.on('-p', '--password PASSWORD',
      "Specify the pswincom password (overrides ~/.pswincom setting)") do |password|
       @options.password = password
    end
              
    opts.on('-f', '--from NAME_OR_NUMBER',
      "Specify the name or number that the SMS will appear from") do |from|
       @options.from = from 
    end
    
    opts.on('-s', '--host URL',
      "Specify the gateway endpoint to use") do |host|
      @options.host = host
    end

    opts.on('-d', '--debug') do
       PSWinCom::API.debug_mode = true
    end

    opts.on('-t', '--test') do
       PSWinCom::API.test_mode = true
    end
  
    opts.on_tail('-h', '--help', "Show this message") do
      puts opts
      exit
    end          
  end
  
  #@options.recipient = args[-2].split(',').map { |r| r.gsub(/^\+/, '') } rescue nil
  @options.recipient = args[-2]
  @options.message   = args[-1]
  
  parser.parse!(args)

  if (@options.message.nil? || @options.recipient.nil?)
    puts "You must specify a recipient and message!"
    puts parser
    exit
  end

  return @options

rescue OptionParser::MissingArgument => e
  switch_given = e.message.split(':').last.strip
  puts "The #{switch_given} option requires an argument."
  puts parser
  exit
end