Allow for pure numeric mpaaRating, as apparently generated by kmttg, as
[pyTivo/wmcbrine.git] / beacon.py
bloba575dbeb05c73a4ee90c0d534808a6827e2c8e61
1 import logging
2 import re
3 import struct
4 import time
5 from socket import *
6 from threading import Timer
7 from urllib import quote
9 import Zeroconf
11 import config
12 from plugin import GetPlugin
14 SHARE_TEMPLATE = '/TiVoConnect?Command=QueryContainer&Container=%s'
15 PLATFORM_MAIN = 'pyTivo'
16 PLATFORM_VIDEO = 'pc/pyTivo' # For the nice icon
18 class ZCListener:
19 def __init__(self, names):
20 self.names = names
22 def removeService(self, server, type, name):
23 if name in self.names:
24 self.names.remove(name)
26 def addService(self, server, type, name):
27 self.names.append(name)
29 class ZCBroadcast:
30 def __init__(self, logger):
31 """ Announce our shares via Zeroconf. """
32 self.share_names = []
33 self.share_info = []
34 self.logger = logger
35 self.rz = Zeroconf.Zeroconf()
36 address = inet_aton(config.get_ip())
37 port = int(config.getPort())
38 for section, settings in config.getShares():
39 ct = GetPlugin(settings['type']).CONTENT_TYPE
40 if ct.startswith('x-container/'):
41 if 'video' in ct:
42 platform = PLATFORM_VIDEO
43 else:
44 platform = PLATFORM_MAIN
45 logger.info('Registering: %s' % section)
46 self.share_names.append(section)
47 desc = {'path': SHARE_TEMPLATE % quote(section),
48 'platform': platform, 'protocol': 'http'}
49 tt = ct.split('/')[1]
50 info = Zeroconf.ServiceInfo('_%s._tcp.local.' % tt,
51 '%s._%s._tcp.local.' % (section, tt),
52 address, port, 0, 0, desc)
53 self.rz.registerService(info)
54 self.share_info.append(info)
56 def scan(self):
57 """ Look for TiVos using Zeroconf. """
58 VIDS = '_tivo-videos._tcp.local.'
59 names = []
61 # Get the names of servers offering TiVo videos
62 browser = Zeroconf.ServiceBrowser(self.rz, VIDS, ZCListener(names))
64 # Give them half a second to respond
65 time.sleep(0.5)
67 # Now get the addresses -- this is the slow part
68 for name in names:
69 info = self.rz.getServiceInfo(VIDS, name)
70 if info and 'TSN' in info.properties:
71 tsn = info.properties['TSN']
72 address = inet_ntoa(info.getAddress())
73 config.tivos[tsn] = address
74 name = name.replace('.' + VIDS, '')
75 self.logger.info(name)
76 config.tivo_names[tsn] = name
78 def shutdown(self):
79 self.logger.info('Unregistering: %s' % ' '.join(self.share_names))
80 for info in self.share_info:
81 self.rz.unregisterService(info)
82 self.rz.close()
84 class Beacon:
85 def __init__(self):
86 self.UDPSock = socket(AF_INET, SOCK_DGRAM)
87 self.UDPSock.setsockopt(SOL_SOCKET, SO_BROADCAST, 1)
88 self.services = []
90 if config.get_zc():
91 logger = logging.getLogger('pyTivo.beacon')
92 try:
93 logger.info('Announcing shares...')
94 self.bd = ZCBroadcast(logger)
95 except:
96 logger.error('Zeroconf failure')
97 self.bd = None
98 else:
99 logger.info('Scanning for TiVos...')
100 self.bd.scan()
101 else:
102 self.bd = None
104 def add_service(self, service):
105 self.services.append(service)
106 self.send_beacon()
108 def format_services(self):
109 return ';'.join(self.services)
111 def format_beacon(self, conntype, services=True):
112 beacon = ['tivoconnect=1',
113 'method=%s' % conntype,
114 'identity=%s' % config.getGUID(),
115 'machine=%s' % gethostname(),
116 'platform=%s' % PLATFORM_MAIN]
118 if services:
119 beacon.append('services=' + self.format_services())
120 else:
121 beacon.append('services=TiVoMediaServer:0/http')
123 return '\n'.join(beacon)
125 def send_beacon(self):
126 beacon_ips = config.getBeaconAddresses()
127 for beacon_ip in beacon_ips.split():
128 if beacon_ip != 'listen':
129 try:
130 self.UDPSock.sendto(self.format_beacon('broadcast'),
131 (beacon_ip, 2190))
132 except error, e:
133 print e
135 def start(self):
136 self.send_beacon()
137 self.timer = Timer(60, self.start)
138 self.timer.start()
140 def stop(self):
141 self.timer.cancel()
142 if self.bd:
143 self.bd.shutdown()
145 def listen(self):
146 """ For the direct-connect, TCP-style beacon """
147 import thread
149 def server():
150 TCPSock = socket(AF_INET, SOCK_STREAM)
151 TCPSock.bind(('', 2190))
152 TCPSock.listen(5)
154 while True:
155 # Wait for a connection
156 client, address = TCPSock.accept()
158 # Accept the client's beacon
159 client_length = struct.unpack('!I', client.recv(4))[0]
160 client_message = client.recv(client_length)
162 # Send ours
163 message = self.format_beacon('connected')
164 client.send(struct.pack('!I', len(message)))
165 client.send(message)
166 client.close()
168 thread.start_new_thread(server, ())
170 def get_name(self, address):
171 """ Exchange beacons, and extract the machine name. """
172 our_beacon = self.format_beacon('connected', False)
173 machine_name = re.compile('machine=(.*)\n').search
175 try:
176 tsock = socket()
177 tsock.connect((address, 2190))
179 tsock.send(struct.pack('!I', len(our_beacon)))
180 tsock.send(our_beacon)
182 length = struct.unpack('!I', tsock.recv(4))[0]
183 tivo_beacon = tsock.recv(length)
185 tsock.close()
187 name = machine_name(tivo_beacon).groups()[0]
188 except:
189 name = address
191 return name