forked from plivo/plivo-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplivoxml.py
246 lines (179 loc) · 7.52 KB
/
plivoxml.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
import xml.etree.ElementTree as etree
class PlivoError(Exception):
pass
class Element(object):
nestables = ()
valid_attributes = ()
def __init__(self, body='', **attributes):
self.attributes = {}
self.name = self.__class__.__name__
self.body = unicode(body).encode('ascii', 'xmlcharrefreplace')
self.node = None
for k, v in attributes.iteritems():
if not k in self.valid_attributes:
raise PlivoError('invalid attribute %s for %s' % (k, self.name))
self.attributes[k] = self._convert_value(v)
self.node = etree.Element(self.name, attrib=self.attributes)
if self.body:
self.node.text = self.body
@staticmethod
def _convert_value(v):
if v is True:
return u'true'
elif v is False:
return u'false'
elif v is None:
return u'none'
elif v == 'get':
return u'GET'
elif v == 'post':
return u'POST'
return unicode(v)
def add(self, element):
if element.name in self.nestables:
self.node.append(element.node)
return element
raise PlivoError('%s not nestable in %s' % (element.name, self.name))
def to_xml(self):
return etree.tostring(self.node, encoding="utf-8")
def __str__(self):
return self.to_xml()
def __repr__(self):
return self.to_xml()
def addSpeak(self, body, **kwargs):
return self.add(Speak(body, **kwargs))
def addPlay(self, body, **kwargs):
return self.add(Play(body, **kwargs))
def addGetDigits(self, **kwargs):
return self.add(GetDigits(**kwargs))
def addRecord(self, **kwargs):
return self.add(Record(**kwargs))
def addDial(self, **kwargs):
return self.add(Dial(**kwargs))
def addNumber(self, body, **kwargs):
return self.add(Number(body, **kwargs))
def addUser(self, body, **kwargs):
return self.add(User(body, **kwargs))
def addRedirect(self, body, **kwargs):
return self.add(Redirect(body, **kwargs))
def addWait(self, **kwargs):
return self.add(Wait(**kwargs))
def addHangup(self, **kwargs):
return self.add(Hangup(**kwargs))
def addPreAnswer(self, **kwargs):
return self.add(PreAnswer(**kwargs))
def addConference(self, body, **kwargs):
return self.add(Conference(body, **kwargs))
def addMessage(self, body, **kwargs):
return self.add(Message(body, **kwargs))
def addDTMF(self, body, **kwargs):
return self.add(DTMF(body, **kwargs))
class Response(Element):
nestables = ('Speak', 'Play', 'GetDigits', 'Record', 'Dial', 'Message',
'Redirect', 'Wait', 'Hangup', 'PreAnswer', 'Conference', 'DTMF')
valid_attributes = ()
def __init__(self):
Element.__init__(self, body='')
class Speak(Element):
nestables = ()
valid_attributes = ('voice', 'language', 'loop')
def __init__(self, body, **attributes):
if not body:
raise PlivoError('No text set for %s' % self.name)
Element.__init__(self, body, **attributes)
class Play(Element):
nestables = ()
valid_attributes = ('loop')
def __init__(self, body, **attributes):
if not body:
raise PlivoError('No url set for %s' % self.name)
Element.__init__(self, body, **attributes)
class Wait(Element):
nestables = ()
valid_attributes = ('length', 'silence', 'min_silence', 'minSilence', 'beep')
def __init__(self, **attributes):
Element.__init__(self, body='', **attributes)
class Redirect(Element):
nestables = ()
valid_attributes = ('method')
def __init__(self, body, **attributes):
if not body:
raise PlivoError('No url set for %s' % self.name)
Element.__init__(self, body, **attributes)
class Hangup(Element):
nestables = ()
valid_attributes = ('schedule', 'reason')
def __init__(self, **attributes):
Element.__init__(self, body='', **attributes)
class GetDigits(Element):
nestables = ('Speak', 'Play', 'Wait')
valid_attributes = ('action', 'method', 'timeout', 'digitTimeout', 'finishOnKey',
'numDigits', 'retries', 'invalidDigitsSound', 'validDigits',
'playBeep', 'redirect', 'digitTimeout', 'log')
def __init__(self, **attributes):
Element.__init__(self, body='', **attributes)
class Number(Element):
nestables = ()
valid_attributes = ('sendDigits', 'sendOnPreanswer', 'sendDigitsMode')
def __init__(self, body, **attributes):
if not body:
raise PlivoError('No number set for %s' % self.name)
Element.__init__(self, body, **attributes)
class User(Element):
nestables = ()
valid_attributes = ('sendDigits', 'sendOnPreanswer', 'sipHeaders',
'webrtc')
def __init__(self, body, **attributes):
if not body:
raise PlivoError('No user set for %s' % self.name)
Element.__init__(self, body, **attributes)
class Dial(Element):
nestables = ('Number', 'User')
valid_attributes = ('action','method','timeout','hangupOnStar',
'timeLimit','callerId', 'callerName', 'confirmSound',
'dialMusic', 'confirmKey', 'redirect',
'callbackUrl', 'callbackMethod', 'digitsMatch', 'digitsMatchBLeg',
'sipHeaders')
def __init__(self, **attributes):
Element.__init__(self, body='', **attributes)
class Conference(Element):
nestables = ()
valid_attributes = ('muted','beep','startConferenceOnEnter',
'endConferenceOnExit','waitSound','enterSound', 'exitSound',
'timeLimit', 'hangupOnStar', 'maxMembers',
'record', 'recordFileFormat','recordWhenAlone', 'action', 'method', 'redirect',
'digitsMatch', 'callbackUrl', 'callbackMethod', 'relayDTMF',
'stayAlone', 'floorEvent', 'transcriptionType', 'transcriptionUrl',
'transcriptionMethod')
def __init__(self, body, **attributes):
if not body:
raise PlivoError('No conference name set for %s' % self.name)
Element.__init__(self, body, **attributes)
class Record(Element):
nestables = ()
valid_attributes = ('action', 'method', 'timeout','finishOnKey',
'maxLength', 'playBeep', 'recordSession',
'startOnDialAnswer', 'redirect', 'fileFormat',
'callbackUrl', 'callbackMethod', 'transcriptionType',
'transcriptionUrl', 'transcriptionMethod')
def __init__(self, **attributes):
Element.__init__(self, body='', **attributes)
class PreAnswer(Element):
nestables = ('Play', 'Speak', 'GetDigits', 'Wait', 'Redirect', 'Message', 'DTMF')
valid_attributes = ()
def __init__(self, **attributes):
Element.__init__(self, body='', **attributes)
class Message(Element):
nestables = ()
valid_attributes = ('src', 'dst', 'type', 'callbackUrl', 'callbackMethod')
def __init__(self, body, **attributes):
if not body:
raise PlivoError('No text set for %s' % self.name)
Element.__init__(self, body, **attributes)
class DTMF(Element):
nestables = ()
valid_attributes = ('async',)
def __init__(self, body, **attributes):
if not body:
raise PlivoError('No digits set for %s' % self.name)
Element.__init__(self, body, **attributes)