Sha256: 983797ea87c505acfc6aa223260e52c377ddaf6de2ab824583246105557ebde8

Contents?: true

Size: 1.72 KB

Versions: 1

Compression:

Stored size: 1.72 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.render_documents.first.value
            raise OptionError, 'Only a single document is supported.' unless @component_node.render_documents.size == 1

            [: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 :voice, :dtmf, :any
              raise OptionError, "An interrupt-on value of #{@component_node.interrupt_on} is unsupported."
            end
          end

          def finish_reason
            Punchblock::Component::Output::Complete::Finish.new
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
punchblock-2.0.0.beta1 lib/punchblock/translator/freeswitch/component/abstract_output.rb