Class: Twilio::Rails::Phone::Tree::Gather

Inherits:
Object
  • Object
show all
Defined in:
lib/twilio/rails/phone/tree.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args) ⇒ Gather

Returns a new instance of Gather.



91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/twilio/rails/phone/tree.rb', line 91

def initialize(args)
  case args
  when Proc
    @proc = args
  when Hash
    @args = args.with_indifferent_access
    @type = @args.delete(:type)&.to_sym

    raise Twilio::Rails::Phone::InvalidTreeError, "gather :type must be :digits, :voice, or :speech but was #{@type.inspect}" unless [:digits, :voice, :speech].include?(@type)

    if digits?
      @args[:timeout] ||= 5
      @args[:number] ||= 1
    elsif voice?
      @args[:length] ||= 10
      @args[:transcribe] = false unless @args.key?(:transcribe)
      @args[:profanity_filter] = false unless @args.key?(:profanity_filter)
    elsif speech?
      @args[:language] ||= "en-US"
    else
      raise Twilio::Rails::Phone::InvalidTreeError, "gather :type must be :digits, :voice, or :speech but was #{@type.inspect}"
    end
  else
    raise Twilio::Rails::Phone::InvalidTreeError, "cannot parse :gather from #{args.inspect}"
  end
end

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



89
90
91
# File 'lib/twilio/rails/phone/tree.rb', line 89

def args
  @args
end

#typeObject (readonly)

Returns the value of attribute type.



89
90
91
# File 'lib/twilio/rails/phone/tree.rb', line 89

def type
  @type
end

Instance Method Details

#digits?Boolean

Returns:

  • (Boolean)


118
119
120
# File 'lib/twilio/rails/phone/tree.rb', line 118

def digits?
  type == :digits
end

#interrupt?Boolean

Returns:

  • (Boolean)


130
131
132
133
134
135
136
# File 'lib/twilio/rails/phone/tree.rb', line 130

def interrupt?
  if @args.key?(:interrupt)
    !!@args[:interrupt]
  else
    false
  end
end

#speech?Boolean

Returns:

  • (Boolean)


126
127
128
# File 'lib/twilio/rails/phone/tree.rb', line 126

def speech?
  type == :speech
end

#voice?Boolean

Returns:

  • (Boolean)


122
123
124
# File 'lib/twilio/rails/phone/tree.rb', line 122

def voice?
  type == :voice
end