display conf in console and debug.txt
[pyTivo.git] / httpserver.py
blobcd5137d36dfdacb5512ccd896e2fe1ff59a7066a
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 import config
8 from xml.sax.saxutils import escape
10 SCRIPTDIR = os.path.dirname(__file__)
12 debug = config.getDebug()
13 hack83 = config.getHack83()
15 def debug_write(data):
16 if debug:
17 debug_out = []
18 debug_out.append('httpserver.py - ')
19 for x in data:
20 debug_out.append(str(x))
21 fdebug = open('debug.txt', 'a')
22 fdebug.write(' '.join(debug_out))
23 fdebug.close()
25 class TivoHTTPServer(SocketServer.ThreadingMixIn, BaseHTTPServer.HTTPServer):
26 containers = {}
28 def __init__(self, server_address, RequestHandlerClass):
29 BaseHTTPServer.HTTPServer.__init__(self, server_address,
30 RequestHandlerClass)
31 self.daemon_threads = True
33 def add_container(self, name, settings):
34 if self.containers.has_key(name) or name == 'TiVoConnect':
35 raise "Container Name in use"
36 try:
37 settings['content_type'] = GetPlugin(settings['type']).CONTENT_TYPE
38 self.containers[name] = settings
39 except KeyError:
40 print 'Unable to add container', name
42 class TivoHTTPHandler(BaseHTTPServer.BaseHTTPRequestHandler):
44 def address_string(self):
45 host, port = self.client_address[:2]
46 return host
48 def do_GET(self):
50 basepath = unquote_plus(self.path).split('/')[1]
52 ## Get File
53 for name, container in self.server.containers.items():
54 if basepath == name:
55 plugin = GetPlugin(container['type'])
56 plugin.send_file(self, container, name)
57 return
59 ## Not a file not a TiVo command fuck them
60 if not self.path.startswith('/TiVoConnect'):
61 self.infopage()
62 return
64 o = urlparse("http://fake.host" + self.path)
65 query = parse_qs(o[4])
67 mname = False
68 if query.has_key('Command') and len(query['Command']) >= 1:
70 command = query['Command'][0]
72 # If we are looking at the root container
73 if command == "QueryContainer" and \
74 (not query.has_key('Container') or query['Container'][0] == '/'):
75 self.root_container()
76 return
78 if query.has_key('Container'):
79 # Dispatch to the container plugin
80 basepath = query['Container'][0].split('/')[0]
81 for name, container in self.server.containers.items():
82 if basepath == name:
83 plugin = GetPlugin(container['type'])
84 if hasattr(plugin, command):
85 method = getattr(plugin, command)
86 method(self, query)
87 return
88 else:
89 break
91 # If we made it here it means we couldn't match the request to
92 # anything.
93 self.unsupported(query)
95 def root_container(self):
96 tsn = self.headers.getheader('TiVo_TCD_ID', '')
97 tsnshares = config.getShares(tsn)
98 tsncontainers = {}
99 for section, settings in tsnshares:
100 try:
101 settings['content_type'] = \
102 GetPlugin(settings['type']).CONTENT_TYPE
103 tsncontainers[section] = settings
104 except Exception, msg:
105 print section, '-', msg
106 t = Template(file=os.path.join(SCRIPTDIR, 'templates',
107 'root_container.tmpl'))
108 t.containers = tsncontainers
109 t.hostname = socket.gethostname()
110 t.escape = escape
111 self.send_response(200)
112 self.end_headers()
113 self.wfile.write(t)
115 def infopage(self):
116 self.send_response(200)
117 self.send_header('Content-type', 'text/html')
118 self.end_headers()
119 t = Template(file=os.path.join(SCRIPTDIR, 'templates',
120 'info_page.tmpl'))
121 self.wfile.write(t)
122 self.end_headers()
124 def unsupported(self, query):
125 if hack83 and 'Command' in query and 'Filter' in query:
126 debug_write(['Unsupported request,',
127 'checking to see if it is video.\n'])
128 command = query['Command'][0]
129 plugin = GetPlugin('video')
130 if ''.join(query['Filter']).find('video') >= 0 and \
131 hasattr(plugin, command):
132 debug_write(['Unsupported request,',
133 'yup it is video',
134 'send to video plugin for it to sort out.\n'])
135 method = getattr(plugin, command)
136 method(self, query)
137 return
139 self.send_response(404)
140 self.send_header('Content-type', 'text/html')
141 self.end_headers()
142 t = Template(file=os.path.join(SCRIPTDIR, 'templates',
143 'unsupported.tmpl'))
144 t.query = query
145 self.wfile.write(t)
147 if __name__ == '__main__':
148 def start_server():
149 httpd = TivoHTTPServer(('', 9032), TivoHTTPHandler)
150 httpd.add_container('test', 'x-container/tivo-videos',
151 r'C:\Documents and Settings\Armooo\Desktop\pyTivo\test')
152 httpd.serve_forever()
154 start_server()