Class: Twilio::Rails::Phone::Tree::Message
- Inherits:
-
Object
- Object
- Twilio::Rails::Phone::Tree::Message
- Defined in:
- lib/twilio/rails/phone/tree.rb
Instance Attribute Summary collapse
-
#block ⇒ Object
readonly
Returns the value of attribute block.
-
#voice ⇒ Object
readonly
Returns the value of attribute voice.
Instance Method Summary collapse
-
#initialize(say: nil, play: nil, pause: nil, voice: nil, &block) ⇒ Message
constructor
A new instance of Message.
- #pause? ⇒ Boolean
- #play? ⇒ Boolean
- #say? ⇒ Boolean
- #value ⇒ Object
Constructor Details
#initialize(say: nil, play: nil, pause: nil, voice: nil, &block) ⇒ Message
Returns a new instance of Message.
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'lib/twilio/rails/phone/tree.rb', line 142 def initialize(say: nil, play: nil, pause: nil, voice: nil, &block) @say = say.presence @play = play.presence @pause = pause.presence.to_i @pause = nil if @pause == 0 @voice = voice.presence @block = block if block_given? raise Twilio::Rails::Phone::InvalidTreeError, "must only have one of say: play: pause:" if (@say && @play) || (@say && @pause) || (@play && @pause) raise Twilio::Rails::Phone::InvalidTreeError, "say: must be a string or proc" if @say && !(@say.is_a?(String) || @say.is_a?(Proc)) raise Twilio::Rails::Phone::InvalidTreeError, "play: must be a string or proc" if @play && !(@play.is_a?(String) || @play.is_a?(Proc)) raise Twilio::Rails::Phone::InvalidTreeError, "play: be a valid url but is #{@play}" if @play&.is_a?(String) && !@play.match(/^https?:\/\/.+/) raise Twilio::Rails::Phone::InvalidTreeError, "pause: must be over zero but is #{@pause}" if @pause && @pause <= 0 raise Twilio::Rails::Phone::InvalidTreeError, "block is only valid for say:" if block_given? && (@play || @pause) end |
Instance Attribute Details
#block ⇒ Object (readonly)
Returns the value of attribute block.
140 141 142 |
# File 'lib/twilio/rails/phone/tree.rb', line 140 def block @block end |
#voice ⇒ Object (readonly)
Returns the value of attribute voice.
140 141 142 |
# File 'lib/twilio/rails/phone/tree.rb', line 140 def voice @voice end |
Instance Method Details
#pause? ⇒ Boolean
166 167 168 |
# File 'lib/twilio/rails/phone/tree.rb', line 166 def pause? !!@pause end |
#play? ⇒ Boolean
162 163 164 |
# File 'lib/twilio/rails/phone/tree.rb', line 162 def play? !!@play end |
#say? ⇒ Boolean
158 159 160 |
# File 'lib/twilio/rails/phone/tree.rb', line 158 def say? !!(@say || @block) end |
#value ⇒ Object
170 171 172 |
# File 'lib/twilio/rails/phone/tree.rb', line 170 def value @say || @play || @pause end |