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
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
):
18 debug_out
.append('httpserver.py - ')
20 debug_out
.append(str(x
))
21 fdebug
= open('debug.txt', 'a')
22 fdebug
.write(' '.join(debug_out
))
25 class TivoHTTPServer(SocketServer
.ThreadingMixIn
, BaseHTTPServer
.HTTPServer
):
28 def __init__(self
, server_address
, RequestHandlerClass
):
29 BaseHTTPServer
.HTTPServer
.__init
__(self
, server_address
,
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"
37 settings
['content_type'] = GetPlugin(settings
['type']).CONTENT_TYPE
38 self
.containers
[name
] = settings
40 print 'Unable to add container', name
42 class TivoHTTPHandler(BaseHTTPServer
.BaseHTTPRequestHandler
):
44 def address_string(self
):
45 host
, port
= self
.client_address
[:2]
50 basepath
= unquote_plus(self
.path
).split('/')[1]
53 for name
, container
in self
.server
.containers
.items():
55 plugin
= GetPlugin(container
['type'])
56 plugin
.send_file(self
, container
, name
)
59 ## Not a file not a TiVo command fuck them
60 if not self
.path
.startswith('/TiVoConnect'):
64 o
= urlparse("http://fake.host" + self
.path
)
65 query
= parse_qs(o
[4])
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] == '/'):
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():
83 plugin
= GetPlugin(container
['type'])
84 if hasattr(plugin
, command
):
85 method
= getattr(plugin
, command
)
91 # If we made it here it means we couldn't match the request to
93 self
.unsupported(query
)
95 def root_container(self
):
96 tsn
= self
.headers
.getheader('TiVo_TCD_ID', '')
97 tsnshares
= config
.getShares(tsn
)
99 for section
, settings
in tsnshares
:
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()
111 self
.send_response(200)
116 self
.send_response(200)
117 self
.send_header('Content-type', 'text/html')
119 t
= Template(file=os
.path
.join(SCRIPTDIR
, 'templates',
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,',
134 'send to video plugin for it to sort out.\n'])
135 method
= getattr(plugin
, command
)
139 self
.send_response(404)
140 self
.send_header('Content-type', 'text/html')
142 t
= Template(file=os
.path
.join(SCRIPTDIR
, 'templates',
147 if __name__
== '__main__':
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()