Sha256: 3c0e6227b0d15a7c770b61471fbbdaae32445afaef0f77ac0efdf9e1a97816f5

Contents?: true

Size: 1.58 KB

Versions: 18

Compression:

Stored size: 1.58 KB

Contents

# encoding: utf-8

module Punchblock
  module Translator
    class Freeswitch
      module Component
        class AbstractOutput < Component
          UnrenderableDocError = Class.new OptionError

          def execute(*args)
            validate
            send_ref
            do_output(*args)
          rescue UnrenderableDocError => e
            with_error 'unrenderable document error', e.message
          rescue OptionError => e
            with_error 'option error', e.message
          end

          def execute_command(command)
            case command
            when Punchblock::Component::Stop
              command.response = true
              application 'break'
              send_complete_event Punchblock::Event::Complete::Stop.new
            else
              super
            end
          end

          private

          def do_output
            raise 'Not Implemented'
          end

          def validate
            raise OptionError, 'An SSML document is required.' unless @component_node.ssml

            [:start_offset, :start_paused, :repeat_interval, :repeat_times, :max_time].each do |opt|
              raise OptionError, "A #{opt} value is unsupported." if @component_node.send opt
            end

            case @component_node.interrupt_on
            when :speech, :dtmf, :any
              raise OptionError, "An interrupt-on value of #{@component_node.interrupt_on} is unsupported."
            end
          end

          def success_reason
            Punchblock::Component::Output::Complete::Success.new
          end
        end
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
punchblock-1.9.4 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.9.3 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.9.2 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.9.1 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.9.0 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.8.2 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.8.1 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.8.0 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.7.1 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.7.0 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.6.1 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.6.0 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.5.3 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.5.2 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.5.1 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.5.0 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.4.1 lib/punchblock/translator/freeswitch/component/abstract_output.rb
punchblock-1.4.0 lib/punchblock/translator/freeswitch/component/abstract_output.rb