Beispiel #1
0
 def __init__(self, filename, format=FORMAT_WAV, escape_digits='', timeout=-1, sample_offset=0, beep=True, silence=None):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self,
      'RECORD FILE', quote(filename), quote(format),
      quote(escape_digits), quote(timeout), quote(sample_offset),
      (beep and quote('beep') or None),
      (silence and quote('s=' + str(silence)) or None)
     )
Beispiel #2
0
 def __init__(self,
              filename,
              escape_digits='',
              sample_offset=0,
              forward='',
              rewind='',
              pause=''):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self, 'CONTROL STREAM FILE', quote(filename),
                      quote(escape_digits), quote(sample_offset),
                      quote(forward), quote(rewind), quote(pause))
Beispiel #3
0
 def __init__(self, number, name=None):
     if name:  #Escape it
         name = '\\"%(name)s\\"' % {
             'name': name,
         }
     else:  #Make sure it's the empty string
         name = ''
     number = "%(name)s<%(number)s>" % {
         'name': name,
         'number': number,
     }
     _Action.__init__(self, 'SET CALLERID', quote(number))
Beispiel #4
0
 def __init__(self, number, name=None):
     if name: #Escape it
         name = '\\"%(name)s\\"' % {
          'name': name,
         }
     else: #Make sure it's the empty string
         name = ''
     number = "%(name)s<%(number)s>" % {
      'name': name,
      'number': number,
     }
     _Action.__init__(self, 'SET CALLERID', quote(number))
Beispiel #5
0
 def __init__(self,
              filename,
              format=FORMAT_WAV,
              escape_digits='',
              timeout=-1,
              sample_offset=0,
              beep=True,
              silence=None):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self, 'RECORD FILE', quote(filename), quote(format),
                      quote(escape_digits), quote(timeout),
                      quote(sample_offset),
                      (beep and quote('beep') or None),
                      (silence and quote('s=' + str(silence)) or None))
Beispiel #6
0
 def __init__(self, application, options=()):
     self._application = application
     options = ','.join((str(o or '') for o in options))
     _Action.__init__(self, 'EXEC', self._application, (options and quote(options)) or '')
Beispiel #7
0
 def __init__(self, family, key):
     _Action.__init__(self, 'DATABASE GET', quote(family), quote(key))
Beispiel #8
0
 def __init__(self, filename, escape_digits='', sample_offset=0, forward='', rewind='', pause=''):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self, 'CONTROL STREAM FILE', quote(filename),
      quote(escape_digits), quote(sample_offset),
      quote(forward), quote(rewind), quote(pause)
     )
Beispiel #9
0
 def __init__(self, family, key):
     _Action.__init__(self, 'DATABASE GET', quote(family), quote(key))
Beispiel #10
0
 def __init__(self, application, options=()):
     options = ','.join((str(o or '') for o in options))
     _Action.__init__(self, 'EXEC', application,
                      (options and quote(options)) or '')
Beispiel #11
0
 def __init__(self, channel=None):
     _Action.__init__(self, 'CHANNEL STATUS', (channel and quote(channel))
                      or None)
Beispiel #12
0
 def __init__(self, timeout=0):
     _Action.__init__(self, 'RECEIVE TEXT', quote(timeout))
Beispiel #13
0
 def __init__(self, text):
     _Action.__init__(self, 'SEND TEXT', quote(text))
Beispiel #14
0
 def __init__(self, channel=None):
     _Action.__init__(self, 'HANGUP', (channel and quote(channel) or None))
Beispiel #15
0
 def __init__(self):
     _Action.__init__(self, 'NOOP')
Beispiel #16
0
 def __init__(self, variable):
     _Action.__init__(self, 'GET VARIABLE', quote(variable))
Beispiel #17
0
 def __init__(self, filename, escape_digits='', timeout=2000):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self, 'GET OPTION', quote(filename),
                      quote(escape_digits), quote(timeout))
Beispiel #18
0
 def __init__(self, filename, timeout=2000, max_digits=255):
     _Action.__init__(self, 'GET DATA', quote(filename), quote(timeout),
                      quote(max_digits))
Beispiel #19
0
 def __init__(self, timeout=0):
     _Action.__init__(self, 'RECEIVE TEXT', quote(timeout))
Beispiel #20
0
 def __init__(self, extension):
     _Action.__init__(self, 'SET EXTENSION', quote(extension))
Beispiel #21
0
 def __init__(self, say_type, argument, escape_digits, *args):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self,
      'SAY ' + say_type, quote(argument), quote(escape_digits), *args
     )
Beispiel #22
0
 def __init__(self, filename, escape_digits='', sample_offset=0):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self,
      'STREAM FILE', quote(filename),
      quote(escape_digits), quote(sample_offset)
     )
Beispiel #23
0
 def __init__(self, say_type, argument, escape_digits, *args):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self, 'SAY ' + say_type, quote(argument),
                      quote(escape_digits), *args)
Beispiel #24
0
 def __init__(self, family, key, value):
     _Action.__init__(self, 'DATABASE PUT', quote(family), quote(key),
                      quote(value))
Beispiel #25
0
 def __init__(self, priority):
     _Action.__init__(self, 'SET PRIORITY', quote(priority))
Beispiel #26
0
 def __init__(self, filename):
     _Action.__init__(self, 'SEND FILE', quote(filename))
Beispiel #27
0
 def __init__(self, message, level=LOG_INFO):
     _Action.__init__(self, 'VERBOSE', quote(message), quote(level))
Beispiel #28
0
 def __init__(self, text):
     _Action.__init__(self, 'SEND TEXT', quote(text))
Beispiel #29
0
 def __init__(self, channel=None):
     _Action.__init__(self, 'CHANNEL STATUS', (channel and quote(channel)) or None)
Beispiel #30
0
 def __init__(self, seconds=0):
     _Action.__init__(self, 'SET AUTOHANGUP', quote(seconds))
Beispiel #31
0
 def __init__(self, family, keytree=None):
     _Action.__init__(self,
      'DATABASE DELTREE', quote(family), (keytree and quote(keytree) or None)
     )
Beispiel #32
0
 def __init__(self, filename, escape_digits='', timeout=2000):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self,
      'GET OPTION', quote(filename),
      quote(escape_digits), quote(timeout)
     )
Beispiel #33
0
 def __init__(self, family, key, value):
     _Action.__init__(self, 'DATABASE PUT', quote(family), quote(key), quote(value))
Beispiel #34
0
 def __init__(self, channel=None):
     _Action.__init__(self, 'HANGUP', (channel and quote(channel) or None))
Beispiel #35
0
 def __init__(self, filename, timeout=2000, max_digits=255):
     _Action.__init__(self,
      'GET DATA', quote(filename), quote(timeout), quote(max_digits)
     )
Beispiel #36
0
 def __init__(self, family, keytree=None):
     _Action.__init__(self, 'DATABASE DELTREE', quote(family),
                      (keytree and quote(keytree) or None))
Beispiel #37
0
 def __init__(self, variable):
     _Action.__init__(self, 'GET VARIABLE', quote(variable))
Beispiel #38
0
 def __init__(self, context):
     _Action.__init__(self, 'SET CONTEXT', quote(context))
Beispiel #39
0
 def __init__(self):
     _Action.__init__(self, 'NOOP')
Beispiel #40
0
 def __init__(self, extension):
     _Action.__init__(self, 'SET EXTENSION', quote(extension))
Beispiel #41
0
 def __init__(self, on, moh_class=None):
     _Action.__init__(self, 'SET MUSIC', quote(on and 'on' or 'off'),
                      (moh_class and quote(moh_class) or None))
Beispiel #42
0
 def __init__(self, priority):
     _Action.__init__(self, 'SET PRIORITY', quote(priority))
Beispiel #43
0
 def __init__(self, filename):
     _Action.__init__(self, 'SEND FILE', quote(filename))
Beispiel #44
0
 def __init__(self, name, value):
     _Action.__init__(self, 'SET VARIABLE', quote(name), quote(value))
Beispiel #45
0
 def __init__(self, seconds=0):
     _Action.__init__(self, 'SET AUTOHANGUP', quote(seconds))
Beispiel #46
0
 def __init__(self, filename, escape_digits='', sample_offset=0):
     escape_digits = _process_digit_list(escape_digits)
     _Action.__init__(self, 'STREAM FILE', quote(filename),
                      quote(escape_digits), quote(sample_offset))
Beispiel #47
0
 def __init__(self, context):
     _Action.__init__(self, 'SET CONTEXT', quote(context))
Beispiel #48
0
 def __init__(self, mode):
     _Action.__init__(self, 'TDD MODE', mode)
Beispiel #49
0
 def __init__(self, on, moh_class=None):
     _Action.__init__(self,
      'SET MUSIC', quote(on and 'on' or 'off'),
      (moh_class and quote(moh_class) or None)
     )
Beispiel #50
0
 def __init__(self, message, level=LOG_INFO):
     _Action.__init__(self, 'VERBOSE', quote(message), quote(level))
Beispiel #51
0
 def __init__(self, name, value):
     _Action.__init__(self, 'SET VARIABLE', quote(name), quote(value))
Beispiel #52
0
 def __init__(self, timeout=-1):
     _Action.__init__(self, 'WAIT FOR DIGIT', quote(timeout))
Beispiel #53
0
 def __init__(self, mode):
     _Action.__init__(self, 'TDD MODE', mode)
Beispiel #54
0
 def __init__(self):
     _Action.__init__(self, 'ANSWER')
Beispiel #55
0
 def __init__(self, timeout=-1):
     _Action.__init__(self, 'WAIT FOR DIGIT', quote(timeout))
Beispiel #56
0
 def __init__(self):
     _Action.__init__(self, 'ANSWER')