mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-23 14:52:26 +00:00
31 lines
900 B
Python
31 lines
900 B
Python
|
|
from foolscap import Tub, Referenceable
|
|
from twisted.application import service
|
|
from twisted.python import log
|
|
import os.path
|
|
|
|
class Roster(service.MultiService, Referenceable):
|
|
pass
|
|
|
|
class Queen(service.MultiService):
|
|
CERTFILE = "queen.pem"
|
|
|
|
def __init__(self):
|
|
service.MultiService.__init__(self)
|
|
if os.path.exists(self.CERTFILE):
|
|
self.tub = Tub(certData=open(self.CERTFILE, "rb").read())
|
|
else:
|
|
self.tub = Tub()
|
|
f = open(self.CERTFILE, "wb")
|
|
f.write(self.tub.getCertData())
|
|
f.close()
|
|
self.urls = {}
|
|
r = Roster()
|
|
r.setServiceParent(self)
|
|
#self.urls["roster"] = self.tub.registerReference(r, "roster")
|
|
|
|
def startService(self):
|
|
service.MultiService.startService(self)
|
|
log.msg("queen running")
|
|
#log.msg(" roster is at %s" % self.urls["roster"])
|