12 import xml
.etree
.ElementTree
as ElementTree
15 import elementtree
.ElementTree
as ElementTree
17 warnings
.warn('Python 2.5 or higher or elementtree is ' +
18 'needed to use the TivoPush')
20 if 'ElementTree' not in locals():
23 def __init__(self
, *arg
, **karg
):
24 raise Exception('Python 2.5 or higher or elementtree is ' +
25 'needed to use the TivoPush')
30 def __init__(self
, username
, password
):
31 self
.__logger
= logging
.getLogger('pyTivo.mind')
32 self
.__username
= username
33 self
.__password
= password
34 self
.__mind
= config
.get_mind()
36 cj
= cookielib
.CookieJar()
37 cp
= urllib2
.HTTPCookieProcessor(cj
)
38 self
.__opener
= urllib2
.build_opener(cp
)
42 if not self
.__pcBodySearch
():
43 self
.__pcBodyStore
('pyTivo', True)
45 def pushVideo(self
, tsn
, url
, description
, duration
, size
,
46 title
, subtitle
, source
='', mime
='video/mpeg'):
47 # It looks like tivo only supports one pc per house
48 pc_body_id
= self
.__pcBodySearch
()[0]
54 'bodyId': 'tsn:' + tsn
,
55 'description': description
,
57 'partnerId': 'tivo:pt.3187',
58 'pcBodyId': pc_body_id
,
59 'publishDate': time
.strftime('%Y-%m-%d %H:%M%S', time
.gmtime()),
66 if mime
== 'video/mp4':
67 data
['encodingType'] = 'avcL41MP4'
68 elif mime
== 'video/bif':
69 data
['encodingType'] = 'vc1ApL3'
71 data
['encodingType'] = 'mpeg2ProgramStream'
73 data
['url'] = url
+ '?Format=' + mime
76 data
['subtitle'] = subtitle
78 offer_id
, content_id
= self
.__bodyOfferModify
(data
)
79 self
.__subscribe
(offer_id
, content_id
, tsn
)
81 def getDownloadRequests(self
):
97 # It looks like tivo only supports one pc per house
98 pc_body_id
= self
.__pcBodySearch
()[0]
101 offer_list
= self
.__bodyOfferSchedule
(pc_body_id
)
103 for offer
in offer_list
.findall('bodyOffer'):
105 if offer
.findtext('state') != 'scheduled':
108 for n
in NEEDED_VALUES
:
109 d
[n
] = offer
.findtext(n
)
114 def completeDownloadRequest(self
, request
, status
, mime
='video/mpeg'):
116 if mime
== 'video/mp4':
117 request
['encodingType'] = 'avcL41MP4'
118 elif mime
== 'video/bif':
119 request
['encodingType'] = 'vc1ApL3'
121 request
['encodingType'] = 'mpeg2ProgramStream'
122 request
['url'] += '?Format=' + mime
123 request
['state'] = 'complete'
125 request
['state'] = 'cancelled'
126 request
['cancellationReason'] = 'httpFileNotFound'
127 request
['type'] = 'bodyOfferModify'
128 request
['updateDate'] = time
.strftime('%Y-%m-%d %H:%M%S',
131 offer_id
, content_id
= self
.__bodyOfferModify
(request
)
133 self
.__subscribe
(offer_id
, content_id
, request
['bodyId'][4:])
135 def getXMPPLoginInfo(self
):
136 # It looks like tivo only supports one pc per house
137 pc_body_id
= self
.__pcBodySearch
()[0]
139 xml
= self
.__bodyXmppInfoGet
(pc_body_id
)
142 'server': xml
.findtext('server'),
143 'port': int(xml
.findtext('port')),
144 'username': xml
.findtext('xmppId')
147 for sendPresence
in xml
.findall('sendPresence'):
148 results
.setdefault('presence_list',[]).append(sendPresence
.text
)
155 'cams_security_domain': 'tivocom',
156 'cams_login_config': 'http',
157 'cams_cb_username': self
.__username
,
158 'cams_cb_password': self
.__password
,
159 'cams_original_url': '/mind/mind7?type=infoGet'
163 'https://%s/mind/login' % self
.__mind
,
164 urllib
.urlencode(data
)
167 result
= self
.__opener
.open(r
)
171 self
.__logger
.debug('__login\n%s' % (data
))
173 def __dict_request(self
, data
, req
):
175 'https://%s/mind/mind7?type=%s' % (self
.__mind
, req
),
177 {'Content-Type': 'x-tivo/dict-binary'}
179 result
= self
.__opener
.open(r
)
181 xml
= ElementTree
.parse(result
).find('.')
183 self
.__logger
.debug('%s\n%s\n\n%sg' % (req
, data
,
184 ElementTree
.tostring(xml
)))
187 def __bodyOfferModify(self
, data
):
188 """Create an offer"""
190 xml
= self
.__dict
_request
(data
, 'bodyOfferModify&bodyId=' +
193 offer_id
= xml
.findtext('offerId')
194 content_id
= offer_id
.replace('of','ct')
196 return offer_id
, content_id
198 def __subscribe(self
, offer_id
, content_id
, tsn
):
199 """Push the offer to the tivo"""
201 'bodyId': 'tsn:' + tsn
,
203 'contentId': content_id
,
205 'type': 'singleOfferSource'
207 'title': 'pcBodySubscription',
211 return self
.__dict
_request
(data
, 'subscribe&bodyId=tsn:' + tsn
)
213 def __bodyOfferSchedule(self
, pc_body_id
):
214 """Get pending stuff for this pc"""
216 data
= {'pcBodyId': pc_body_id
}
217 return self
.__dict
_request
(data
, 'bodyOfferSchedule')
219 def __pcBodySearch(self
):
222 xml
= self
.__dict
_request
({}, 'pcBodySearch')
224 return [id.text
for id in xml
.findall('pcBody/pcBodyId')]
226 def __collectionIdSearch(self
, url
):
227 """Find collection ids"""
229 xml
= self
.__dict
_request
({'url': url
}, 'collectionIdSearch')
230 return xml
.findtext('collectionId')
232 def __pcBodyStore(self
, name
, replace
=False):
237 'replaceExisting': str(replace
).lower()
240 return self
.__dict
_request
(data
, 'pcBodyStore')
242 def __bodyXmppInfoGet(self
, body_id
):
244 return self
.__dict
_request
({'bodyId': body_id
},
245 'bodyXmppInfoGet&bodyId=' + body_id
)
249 """Helper to create x-tivo/dict-binary"""
252 keys
= [str(k
) for k
in d
]
258 output
.append( varint( len(k
) ) )
261 if isinstance(v
, dict):
262 output
.append( chr(2) )
263 output
.append( dictcode(v
) )
270 if sys
.platform
== 'darwin':
271 v
= v
.decode('macroman')
273 v
= v
.decode('iso8859-1')
274 elif type(v
) != unicode:
276 v
= v
.encode('utf-8')
277 output
.append( chr(1) )
278 output
.append( varint( len(v
) ) )
281 output
.append( chr(0) )
283 output
.append( chr(0x80) )
285 return ''.join(output
)
290 output
.append( chr(i
& 0x7f) )
292 output
.append( chr(i |
0x80) )
293 return ''.join(output
)
295 def getMind(tsn
=None):
296 username
= config
.get_tsn('tivo_username', tsn
)
297 password
= config
.get_tsn('tivo_password', tsn
)
299 if not username
or not password
:
300 raise Exception("tivo_username and tivo_password required")
302 return Mind(username
, password
)