6 from threading
import Timer
7 from urllib
import quote
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
19 def __init__(self
, names
):
22 def removeService(self
, server
, type, name
):
23 self
.names
.remove(name
.replace('.' + type, ''))
25 def addService(self
, server
, type, name
):
26 self
.names
.append(name
.replace('.' + type, ''))
29 def __init__(self
, logger
):
30 """ Announce our shares via Zeroconf. """
34 self
.rz
= Zeroconf
.Zeroconf()
36 old_titles
= self
.scan()
37 address
= socket
.inet_aton(config
.get_ip())
38 port
= int(config
.getPort())
39 logger
.info('Announcing shares...')
40 for section
, settings
in config
.getShares():
42 ct
= GetPlugin(settings
['type']).CONTENT_TYPE
45 if ct
.startswith('x-container/'):
47 platform
= PLATFORM_VIDEO
49 platform
= PLATFORM_MAIN
50 logger
.info('Registering: %s' % section
)
51 self
.share_names
.append(section
)
52 desc
= {'path': SHARE_TEMPLATE
% quote(section
),
53 'platform': platform
, 'protocol': 'http'}
57 while title
in old_titles
:
59 title
= '%s [%d]' % (section
, count
)
60 self
.renamed
[section
] = title
61 info
= Zeroconf
.ServiceInfo('_%s._tcp.local.' % tt
,
62 '%s._%s._tcp.local.' % (title
, tt
),
63 address
, port
, 0, 0, desc
)
64 self
.rz
.registerService(info
)
65 self
.share_info
.append(info
)
68 """ Look for TiVos using Zeroconf. """
69 VIDS
= '_tivo-videos._tcp.local.'
72 self
.logger
.info('Scanning for TiVos...')
74 # Get the names of servers offering TiVo videos
75 browser
= Zeroconf
.ServiceBrowser(self
.rz
, VIDS
, ZCListener(names
))
77 # Give them half a second to respond
80 # Now get the addresses -- this is the slow part
82 info
= self
.rz
.getServiceInfo(VIDS
, name
+ '.' + VIDS
)
83 if info
and 'TSN' in info
.properties
:
84 tsn
= info
.properties
['TSN']
85 address
= socket
.inet_ntoa(info
.getAddress())
86 config
.tivos
[tsn
] = address
87 self
.logger
.info(name
)
88 config
.tivo_names
[tsn
] = name
93 self
.logger
.info('Unregistering: %s' % ' '.join(self
.share_names
))
94 for info
in self
.share_info
:
95 self
.rz
.unregisterService(info
)
100 self
.UDPSock
= socket
.socket(socket
.AF_INET
, socket
.SOCK_DGRAM
)
101 self
.UDPSock
.setsockopt(socket
.SOL_SOCKET
, socket
.SO_BROADCAST
, 1)
104 self
.platform
= PLATFORM_VIDEO
105 for section
, settings
in config
.getShares():
107 ct
= GetPlugin(settings
['type']).CONTENT_TYPE
110 if ct
in ('x-container/tivo-music', 'x-container/tivo-photos'):
111 self
.platform
= PLATFORM_MAIN
115 logger
= logging
.getLogger('pyTivo.beacon')
117 self
.bd
= ZCBroadcast(logger
)
119 logger
.error('Zeroconf failure')
124 def add_service(self
, service
):
125 self
.services
.append(service
)
128 def format_services(self
):
129 return ';'.join(self
.services
)
131 def format_beacon(self
, conntype
, services
=True):
132 beacon
= ['tivoconnect=1',
133 'method=%s' % conntype
,
134 'identity={%s}' % config
.getGUID(),
135 'machine=%s' % socket
.gethostname(),
136 'platform=%s' % self
.platform
]
139 beacon
.append('services=' + self
.format_services())
141 beacon
.append('services=TiVoMediaServer:0/http')
143 return '\n'.join(beacon
) + '\n'
145 def send_beacon(self
):
146 beacon_ips
= config
.getBeaconAddresses()
147 beacon
= self
.format_beacon('broadcast')
148 for beacon_ip
in beacon_ips
.split():
149 if beacon_ip
!= 'listen':
153 result
= self
.UDPSock
.sendto(packet
, (beacon_ip
, 2190))
156 packet
= packet
[result
:]
162 self
.timer
= Timer(60, self
.start
)
170 def recv_bytes(self
, sock
, length
):
172 while len(block
) < length
:
173 add
= sock
.recv(length
- len(block
))
179 def recv_packet(self
, sock
):
180 length
= struct
.unpack('!I', self
.recv_bytes(sock
, 4))[0]
181 return self
.recv_bytes(sock
, length
)
183 def send_packet(self
, sock
, packet
):
184 sock
.sendall(struct
.pack('!I', len(packet
)) + packet
)
187 """ For the direct-connect, TCP-style beacon """
191 TCPSock
= socket
.socket(socket
.AF_INET
, socket
.SOCK_STREAM
)
192 TCPSock
.bind(('', 2190))
196 # Wait for a connection
197 client
, address
= TCPSock
.accept()
199 # Accept (and discard) the client's beacon
200 self
.recv_packet(client
)
203 self
.send_packet(client
, self
.format_beacon('connected'))
207 thread
.start_new_thread(server
, ())
209 def get_name(self
, address
):
210 """ Exchange beacons, and extract the machine name. """
211 our_beacon
= self
.format_beacon('connected', False)
212 machine_name
= re
.compile('machine=(.*)\n').search
215 tsock
= socket
.socket()
216 tsock
.connect((address
, 2190))
217 self
.send_packet(tsock
, our_beacon
)
218 tivo_beacon
= self
.recv_packet(tsock
)
220 name
= machine_name(tivo_beacon
).groups()[0]