1 import time
, os
, BaseHTTPServer
, SocketServer
, socket
, re
2 from urllib
import unquote_plus
, quote
, unquote
3 from urlparse
import urlparse
4 from cgi
import parse_qs
5 from Cheetah
.Template
import Template
6 from plugin
import GetPlugin
7 from xml
.sax
.saxutils
import escape
9 SCRIPTDIR
= os
.path
.dirname(__file__
)
11 class TivoHTTPServer(SocketServer
.ThreadingMixIn
, BaseHTTPServer
.HTTPServer
):
14 def __init__(self
, server_address
, RequestHandlerClass
):
15 BaseHTTPServer
.HTTPServer
.__init
__(self
, server_address
, RequestHandlerClass
)
16 self
.daemon_threads
= True
18 def add_container(self
, name
, settings
):
19 if self
.containers
.has_key(name
) or name
== 'TivoConnect':
20 raise "Container Name in use"
21 settings
['content_type'] = GetPlugin(settings
['type']).CONTENT_TYPE
22 self
.containers
[name
] = settings
24 class TivoHTTPHandler(BaseHTTPServer
.BaseHTTPRequestHandler
):
26 def address_string(self
):
27 host
, port
= self
.client_address
[:2]
33 for name
, container
in self
.server
.containers
.items():
35 path
= unquote_plus(self
.path
)
36 if path
.startswith('/' + name
):
37 plugin
= GetPlugin(container
['type'])
38 plugin
.send_file(self
, container
, name
)
41 ## Not a file not a TiVo command fuck them
42 if not self
.path
.startswith('/TiVoConnect'):
46 o
= urlparse("http://fake.host" + self
.path
)
47 query
= parse_qs(o
[4])
50 if query
.has_key('Command') and len(query
['Command']) >= 1:
52 command
= query
['Command'][0]
54 #If we are looking at the root container
55 if command
== "QueryContainer" and ( not query
.has_key('Container') or query
['Container'][0] == '/'):
59 if query
.has_key('Container'):
60 #Dispatch to the container plugin
61 for name
, container
in self
.server
.containers
.items():
62 if query
['Container'][0].startswith(name
):
63 plugin
= GetPlugin(container
['type'])
64 if hasattr(plugin
,command
):
65 method
= getattr(plugin
, command
)
68 self
.unsuported(query
)
71 self
.unsuported(query
)
73 def root_container(self
):
74 t
= Template(file=os
.path
.join(SCRIPTDIR
, 'templates', 'root_container.tmpl'))
75 t
.containers
= self
.server
.containers
76 t
.hostname
= socket
.gethostname()
78 self
.send_response(200)
83 self
.send_response(200)
84 self
.send_header('Content-type', 'text/html')
86 t
= Template(file=os
.path
.join(SCRIPTDIR
, 'templates', 'info_page.tmpl'))
90 def unsuported(self
, query
):
91 self
.send_response(404)
92 self
.send_header('Content-type', 'text/html')
94 t
= Template(file=os
.path
.join(SCRIPTDIR
,'templates','unsuported.tmpl'))
98 if __name__
== '__main__':
100 httpd
= TivoHTTPServer(('', 9032), TivoHTTPHandler
)
101 httpd
.add_container('test', 'x-container/tivo-videos', r
'C:\Documents and Settings\Armooo\Desktop\pyTivo\test')
102 httpd
.serve_forever()