9 from urllib
import unquote_plus
, quote
10 from xml
.sax
.saxutils
import escape
12 from Cheetah
.Template
import Template
14 from plugin
import GetPlugin
, EncodeUnicode
16 SCRIPTDIR
= os
.path
.dirname(__file__
)
18 VIDEO_FORMATS
= """<?xml version="1.0" encoding="utf-8"?>
20 <ContentType>video/x-tivo-mpeg</ContentType><Description/>
21 </Format></TiVoFormats>"""
23 class TivoHTTPServer(SocketServer
.ThreadingMixIn
, BaseHTTPServer
.HTTPServer
):
26 def __init__(self
, server_address
, RequestHandlerClass
):
27 BaseHTTPServer
.HTTPServer
.__init
__(self
, server_address
,
29 self
.daemon_threads
= True
30 self
.logger
= logging
.getLogger('pyTivo')
32 def add_container(self
, name
, settings
):
33 if name
in self
.containers
or name
== 'TiVoConnect':
34 raise "Container Name in use"
36 self
.containers
[name
] = settings
38 self
.logger
.error('Unable to add container ' + name
)
41 self
.containers
.clear()
42 for section
, settings
in config
.getShares():
43 self
.add_container(section
, settings
)
45 def handle_error(self
, request
, client_address
):
46 self
.logger
.exception('Exception during request from %s' %
49 def set_beacon(self
, beacon
):
52 class TivoHTTPHandler(BaseHTTPServer
.BaseHTTPRequestHandler
):
53 def __init__(self
, request
, client_address
, server
):
54 self
.wbufsize
= 0x10000
55 BaseHTTPServer
.BaseHTTPRequestHandler
.__init
__(self
, request
,
56 client_address
, server
)
58 def address_string(self
):
59 host
, port
= self
.client_address
[:2]
63 tsn
= self
.headers
.getheader('TiVo_TCD_ID',
64 self
.headers
.getheader('tsn', ''))
65 if not self
.authorize(tsn
):
68 ip
= self
.address_string()
69 config
.tivos
[tsn
] = ip
71 if not tsn
in config
.tivo_names
or config
.tivo_names
[tsn
] == tsn
:
72 config
.tivo_names
[tsn
] = self
.server
.beacon
.get_name(ip
)
75 path
, opts
= self
.path
.split('?', 1)
76 query
= cgi
.parse_qs(opts
)
81 if path
== '/TiVoConnect':
82 self
.handle_query(query
, tsn
)
85 path
= unquote_plus(path
)
86 basepath
= path
.split('/')[1]
87 for name
, container
in self
.server
.containers
.items():
89 path
= os
.path
.join(os
.path
.normpath(container
['path']),
90 os
.path
.normpath(path
[len(name
) + 2:]))
91 plugin
= GetPlugin(container
['type'])
92 plugin
.send_file(self
, path
, query
)
95 ## Not a file not a TiVo command
99 tsn
= self
.headers
.getheader('TiVo_TCD_ID',
100 self
.headers
.getheader('tsn', ''))
101 if not self
.authorize(tsn
):
103 ctype
, pdict
= cgi
.parse_header(self
.headers
.getheader('content-type'))
104 if ctype
== 'multipart/form-data':
105 query
= cgi
.parse_multipart(self
.rfile
, pdict
)
107 length
= int(self
.headers
.getheader('content-length'))
108 qs
= self
.rfile
.read(length
)
109 query
= cgi
.parse_qs(qs
, keep_blank_values
=1)
110 self
.handle_query(query
, tsn
)
112 def handle_query(self
, query
, tsn
):
114 if 'Command' in query
and len(query
['Command']) >= 1:
116 command
= query
['Command'][0]
118 # If we are looking at the root container
119 if (command
== 'QueryContainer' and
120 (not 'Container' in query
or query
['Container'][0] == '/')):
121 self
.root_container()
124 if 'Container' in query
:
125 # Dispatch to the container plugin
126 basepath
= query
['Container'][0].split('/')[0]
127 for name
, container
in config
.getShares(tsn
):
129 plugin
= GetPlugin(container
['type'])
130 if hasattr(plugin
, command
):
131 method
= getattr(plugin
, command
)
137 elif (command
== 'QueryFormats' and 'SourceFormat' in query
and
138 query
['SourceFormat'][0].startswith('video')):
139 self
.send_response(200)
141 self
.wfile
.write(VIDEO_FORMATS
)
144 elif command
== 'FlushServer':
145 # Does nothing -- included for completeness
146 self
.send_response(200)
150 # If we made it here it means we couldn't match the request to
152 self
.unsupported(query
)
154 def authorize(self
, tsn
=None):
155 # if allowed_clients is empty, we are completely open
156 allowed_clients
= config
.getAllowedClients()
157 if not allowed_clients
or (tsn
and config
.isTsnInConfig(tsn
)):
159 client_ip
= self
.client_address
[0]
160 for allowedip
in allowed_clients
:
161 if client_ip
.startswith(allowedip
):
164 self
.send_response(404)
165 self
.send_header('Content-type', 'text/html')
167 self
.wfile
.write("Unauthorized.")
170 def log_message(self
, format
, *args
):
171 self
.server
.logger
.info("%s [%s] %s" % (self
.address_string(),
172 self
.log_date_time_string(), format
%args
))
174 def root_container(self
):
175 tsn
= self
.headers
.getheader('TiVo_TCD_ID', '')
176 tsnshares
= config
.getShares(tsn
)
178 for section
, settings
in tsnshares
:
180 settings
['content_type'] = \
181 GetPlugin(settings
['type']).CONTENT_TYPE
182 tsncontainers
[section
] = settings
183 except Exception, msg
:
184 self
.server
.logger
.error(section
+ ' - ' + str(msg
))
185 t
= Template(file=os
.path
.join(SCRIPTDIR
, 'templates',
186 'root_container.tmpl'),
187 filter=EncodeUnicode
)
188 t
.containers
= tsncontainers
189 t
.hostname
= socket
.gethostname()
192 self
.send_response(200)
197 self
.send_response(200)
198 self
.send_header('Content-type', 'text/html')
200 t
= Template(file=os
.path
.join(SCRIPTDIR
, 'templates',
202 shares
= dict(config
.getShares())
205 if config
.get_server('tivo_mak') and config
.get_server('togo_path'):
206 t
.togo
= '<br/>Pull from TiVos:<br/>'
210 if (config
.get_server('tivo_username') and
211 config
.get_server('tivo_password')):
212 t
.shares
= '<br/>Push from video shares:<br/>'
216 for section
in shares
:
217 plugin_type
= shares
[section
].get('type')
218 if plugin_type
== 'settings':
219 t
.admin
+= ('<a href="/TiVoConnect?Command=Settings&' +
220 'Container=' + quote(section
) +
221 '">Web Configuration</a><br>')
222 elif plugin_type
== 'togo' and t
.togo
:
223 for tsn
in config
.tivos
:
225 t
.togo
+= ('<a href="/TiVoConnect?' +
226 'Command=NPL&Container=' + quote(section
) +
227 '&TiVo=' + config
.tivos
[tsn
] + '">' +
228 config
.tivo_names
[tsn
] + '</a><br/>')
229 elif plugin_type
== 'video' and t
.shares
:
230 t
.shares
+= ('<a href="TiVoConnect?Command=' +
231 'QueryContainer&Container=' +
232 quote(section
) + '">' + section
+ '</a><br/>')
236 def unsupported(self
, query
):
237 self
.send_response(404)
238 self
.send_header('Content-type', 'text/html')
240 t
= Template(file=os
.path
.join(SCRIPTDIR
, 'templates',