'''
GET request handler
'''
+
logger = logging.getLogger('http_HTTPHandler')
self.clientconnected = True
# Don't wait videodestroydelay if error happened
# Connected client IP address
self.clientip = self.request.getpeername()[0]
+ req_headers = self.headers
+ self.client_data = {
+ 'ip': self.clientip,
+ 'forwarded-for': req_headers.get('X-Forwarded-For'),
+ 'client-agent': req_headers.get('User-Agent'),
+ 'uuid': uuid.uuid4()
+ }
+
if VPConfig.firewall:
# If firewall enabled
self.clientinrange = any(map(lambda i: ipaddr.IPAddress(self.clientip) \
def handleRequest(self, headers_only):
- self.unic = uuid.uuid4()
-
# Limit concurrent connections
if 0 < VPConfig.maxconns <= VPStuff.clientcounter.total:
logger.debug("Maximum connections reached, can't serve this")
self.params.append('0')
# Adding client to clientcounter
- clients = VPStuff.clientcounter.add(self.reqtype+'\\'+self.path_unquoted, self.clientip, self.unic)
+ clients = VPStuff.clientcounter.add(self.reqtype+'/'+self.path_unquoted, self.client_data)
# If we are the one client, but sucessfully got vp instance from clientcounter,
# then somebody is waiting in the videodestroydelay state
# Check if we are first client
- if VPStuff.clientcounter.get(self.reqtype+'\\'+self.path_unquoted)==1:
+ if VPStuff.clientcounter.get(self.reqtype+'/'+self.path_unquoted)==1:
logger.debug("First client, should create VLC session")
shouldcreatevp = True
else:
logger.debug("Can reuse existing session")
shouldcreatevp = False
- self.vlcid = hashlib.md5(self.reqtype+'\\'+self.path_unquoted).hexdigest()
+ self.vlcid = hashlib.md5(self.reqtype+'/'+self.path_unquoted).hexdigest()
# Send fake headers if this User-Agent is in fakeheaderuas tuple
if fakeua:
finally:
logger.debug("END REQUEST")
logger.info("Closed connection from " + self.clientip + " path " + self.path)
- VPStuff.clientcounter.delete(self.reqtype+'\\'+self.path_unquoted, self.clientip, self.unic)
-# if not VPStuff.clientcounter.get(self.reqtype+'\\'+self.path_unquoted):
-# try:
-# logger.debug("That was the last client, destroying VPClient")
-# logger.info("Stopping broadcasting " + self.path)
-# VPStuff.vlcclient.stopBroadcast(self.vlcid)
-# except vlcclient.VlcException:
-# logger.error("VLC connection problem, %s client(s)!" % VPStuff.clientcounter.total)
-# if VPStuff.clientcounter.total == 0:
-# logger.error("Probably VLC hang")
-# VPStuff.vlc.kill()
-# except:
-# pass
+ VPStuff.clientcounter.delete(self.reqtype+'/'+self.path_unquoted, self.client_data)
self.vp.destroy()
class HTTPServer(SocketServer.ThreadingMixIn, BaseHTTPServer.HTTPServer):
sched.start()
def clean_streams():
- VPStuff.vlcclient.clean_streams(15)
+ VPStuff.vlcclient.clean_streams(VPConfig.videodestroydelay)
job = sched.add_job(clean_streams, 'interval', seconds=15)
# Return to our server tasks
server.handle_request()
except (KeyboardInterrupt, SystemExit):
+ sched.shutdown()
shutdown()