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"
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]
47 basepath
= unquote_plus(self
.path
).split('/')[1]
50 for name
, container
in self
.server
.containers
.items():
52 plugin
= GetPlugin(container
['type'])
53 plugin
.send_file(self
, container
, name
)
56 ## Not a file not a TiVo command fuck them
57 if not self
.path
.startswith('/TiVoConnect'):
61 o
= urlparse("http://fake.host" + self
.path
)
62 query
= parse_qs(o
[4])
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] == '/'):
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
)
84 self
.unsupported(query
)
87 self
.unsupported(query
)
89 def root_container(self
):
90 tsn
= self
.headers
.getheader('TiVo_TCD_ID', '')
91 tsnshares
= config
.getShares(tsn
)
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()
101 self
.send_response(200)
106 self
.send_response(200)
107 self
.send_header('Content-type', 'text/html')
109 t
= Template(file=os
.path
.join(SCRIPTDIR
, 'templates',
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,',
124 'send to video plugin for it to sort out.\n'])
125 method
= getattr(plugin
, command
)
129 self
.send_response(404)
130 self
.send_header('Content-type', 'text/html')
132 t
= Template(file=os
.path
.join(SCRIPTDIR
, 'templates',
137 if __name__
== '__main__':
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()