X-Git-Url: https://git.mxchange.org/?p=quix0rs-apt-p2p.git;a=blobdiff_plain;f=apt_dht%2Fapt_dht.py;h=9d0241d6b0f023861d0fc375aa362f4e250992d8;hp=047d1c2b815dbf7c3d3643244c5f04fa9b8d0fad;hb=1461780708c6ce0562ec0a27062b13b32d7dc348;hpb=056a62b7b55e95a3a50d64d2e769d29b9eede4a9 diff --git a/apt_dht/apt_dht.py b/apt_dht/apt_dht.py index 047d1c2..9d0241d 100644 --- a/apt_dht/apt_dht.py +++ b/apt_dht/apt_dht.py @@ -29,20 +29,18 @@ class AptDHT: self.dht = dht self.dht.loadConfig(config, config.get('DEFAULT', 'DHT')) self.dht.join().addCallbacks(self.joinComplete, self.joinError) - self.http_server = TopLevel(self.cache_dir.child(download_dir), self) - self.setDirectories = self.http_server.setDirectories - self.http_site = server.Site(self.http_server) + self.http_server = TopLevel(self.cache_dir.child(download_dir), self.db, self) + self.getHTTPFactory = self.http_server.getHTTPFactory self.peers = PeerManager() self.mirrors = MirrorManager(self.cache_dir) other_dirs = [FilePath(f) for f in config.getstringlist('DEFAULT', 'OTHER_DIRS')] self.cache = CacheManager(self.cache_dir.child(download_dir), self.db, other_dirs, self) self.my_addr = None - def getSite(self): - return self.http_site - def joinComplete(self, result): - self.my_addr = findMyIPAddr(result, config.getint(config.get('DEFAULT', 'DHT'), 'PORT')) + self.my_addr = findMyIPAddr(result, + config.getint(config.get('DEFAULT', 'DHT'), 'PORT'), + config.getboolean('DEFAULT', 'LOCAL_OK')) if not self.my_addr: raise RuntimeError, "IP address for this machine could not be found" self.cache.scanDirectories() @@ -54,7 +52,7 @@ class AptDHT: def check_freshness(self, req, path, modtime, resp): log.msg('Checking if %s is still fresh' % path) - d = self.peers.get([path], "HEAD", modtime) + d = self.peers.get('', path, method = "HEAD", modtime = modtime) d.addCallback(self.check_freshness_done, req, path, resp) return d @@ -134,14 +132,14 @@ class AptDHT: def lookupHash_done(self, locations, hash, path, d): if not locations: log.msg('Peers for %s were not found' % path) - getDefer = self.peers.get([path]) + getDefer = self.peers.get(hash, path) getDefer.addCallback(self.cache.save_file, hash, path) getDefer.addErrback(self.cache.save_error, path) getDefer.addCallbacks(d.callback, d.errback) else: log.msg('Found peers for %s: %r' % (path, locations)) # Download from the found peers - getDefer = self.peers.get(locations) + getDefer = self.peers.get(hash, path, locations) getDefer.addCallback(self.check_response, hash, path) getDefer.addCallback(self.cache.save_file, hash, path) getDefer.addErrback(self.cache.save_error, path) @@ -150,11 +148,11 @@ class AptDHT: def check_response(self, response, hash, path): if response.code < 200 or response.code >= 300: log.msg('Download from peers failed, going to direct download: %s' % path) - getDefer = self.peers.get([path]) + getDefer = self.peers.get(hash, path) return getDefer return response - def new_cached_file(self, file_path, hash, urlpath, url = None): + def new_cached_file(self, file_path, hash, url = None): """Add a newly cached file to the DHT. If the file was downloaded, set url to the path it was downloaded for. @@ -164,13 +162,12 @@ class AptDHT: if self.my_addr and hash: site = self.my_addr + ':' + str(config.getint('DEFAULT', 'PORT')) - full_path = urlunparse(('http', site, urlpath, None, None, None)) key = hash.norm(bits = config.getint(config.get('DEFAULT', 'DHT'), 'HASH_LENGTH')) - storeDefer = self.dht.storeValue(key, full_path) - storeDefer.addCallback(self.store_done, full_path) + storeDefer = self.dht.storeValue(key, site) + storeDefer.addCallback(self.store_done, hash) return storeDefer return None - def store_done(self, result, path): - log.msg('Added %s to the DHT: %r' % (path, result)) + def store_done(self, result, hash): + log.msg('Added %s to the DHT: %r' % (hash, result)) \ No newline at end of file