Merge branch 'master' into beta-admin
[pyTivo.git] / httpserver.py
blobcd3d4b0770ebb8d68b5573f986e72dcdfac74170
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 settings['content_type'] = GetPlugin(settings['type']).CONTENT_TYPE
37 self.containers[name] = settings
39 class TivoHTTPHandler(BaseHTTPServer.BaseHTTPRequestHandler):
41 def address_string(self):
42 host, port = self.client_address[:2]
43 return host
45 def do_GET(self):
47 basepath = unquote_plus(self.path).split('/')[1]
49 ## Get File
50 for name, container in self.server.containers.items():
51 if basepath == name:
52 plugin = GetPlugin(container['type'])
53 plugin.send_file(self, container, name)
54 return
56 ## Not a file not a TiVo command fuck them
57 if not self.path.startswith('/TiVoConnect'):
58 self.infopage()
59 return
61 o = urlparse("http://fake.host" + self.path)
62 query = parse_qs(o[4])
64 mname = False
65 if query.has_key('Command') and len(query['Command']) >= 1:
67 command = query['Command'][0]
69 # If we are looking at the root container
70 if command == "QueryContainer" and \
71 (not query.has_key('Container') or query['Container'][0] == '/'):
72 self.root_container()
73 return
75 if query.has_key('Container'):
76 # Dispatch to the container plugin
77 for name, container in self.server.containers.items():
78 if query['Container'][0].startswith(name):
79 plugin = GetPlugin(container['type'])
80 if hasattr(plugin, command):
81 method = getattr(plugin, command)
82 method(self, query)
83 else:
84 self.unsupported(query)
85 break
86 else:
87 self.unsupported(query)
89 def root_container(self):
90 tsn = self.headers.getheader('TiVo_TCD_ID', '')
91 tsnshares = config.getShares(tsn)
92 tsncontainers = {}
93 for section, settings in tsnshares:
94 settings['content_type'] = GetPlugin(settings['type']).CONTENT_TYPE
95 tsncontainers[section] = settings
96 t = Template(file=os.path.join(SCRIPTDIR, 'templates',
97 'root_container.tmpl'))
98 t.containers = tsncontainers
99 t.hostname = socket.gethostname()
100 t.escape = escape
101 self.send_response(200)
102 self.end_headers()
103 self.wfile.write(t)
105 def infopage(self):
106 self.send_response(200)
107 self.send_header('Content-type', 'text/html')
108 self.end_headers()
109 t = Template(file=os.path.join(SCRIPTDIR, 'templates',
110 'info_page.tmpl'))
111 self.wfile.write(t)
112 self.end_headers()
114 def unsupported(self, query):
115 if hack83 and 'Command' in query and 'Filter' in query:
116 debug_write(['Unsupported request,',
117 'checking to see if it is video.\n'])
118 command = query['Command'][0]
119 plugin = GetPlugin('video')
120 if ''.join(query['Filter']).find('video') >= 0 and \
121 hasattr(plugin, command):
122 debug_write(['Unsupported request,',
123 'yup it is video',
124 'send to video plugin for it to sort out.\n'])
125 method = getattr(plugin, command)
126 method(self, query)
127 return
129 self.send_response(404)
130 self.send_header('Content-type', 'text/html')
131 self.end_headers()
132 t = Template(file=os.path.join(SCRIPTDIR, 'templates',
133 'unsupported.tmpl'))
134 t.query = query
135 self.wfile.write(t)
137 if __name__ == '__main__':
138 def start_server():
139 httpd = TivoHTTPServer(('', 9032), TivoHTTPHandler)
140 httpd.add_container('test', 'x-container/tivo-videos',
141 r'C:\Documents and Settings\Armooo\Desktop\pyTivo\test')
142 httpd.serve_forever()
144 start_server()