|
|
@@ -39,16 +39,22 @@ class ContentDirectoryControl(UPnPPublisher, dict): |
|
|
|
self.nextID += 1 |
|
|
|
return ret |
|
|
|
|
|
|
|
def addContainer(self, parent, title, klass = Container, **kwargs): |
|
|
|
ret = self.addItem(parent, klass, title, **kwargs) |
|
|
|
def addContainer(self, parent, title, klass = Container, *args, **kwargs): |
|
|
|
ret = self.addObject(parent, klass, title, *args, **kwargs) |
|
|
|
self.children[ret] = self[ret] |
|
|
|
return ret |
|
|
|
|
|
|
|
def addItem(self, parent, klass, *args, **kwargs): |
|
|
|
'''Takes an optional arg, content, which is a twisted.web.resource.Resource that this item provides.''' |
|
|
|
def addItem(self, parent, klass, title, *args, **kwargs): |
|
|
|
if issubclass(klass, Container): |
|
|
|
return self.addContainer(parent, title, klass, *args, **kwargs) |
|
|
|
else: |
|
|
|
return self.addObject(parent, klass, title, *args, **kwargs) |
|
|
|
|
|
|
|
def addObject(self, parent, klass, title, *args, **kwargs): |
|
|
|
'''If the generated object (by klass) has an attribute content, it is installed into the web server.''' |
|
|
|
assert isinstance(self[parent], Container) |
|
|
|
nid = self.getnextID() |
|
|
|
i = klass(self, nid, parent, *args, **kwargs) |
|
|
|
i = klass(self, nid, parent, title, *args, **kwargs) |
|
|
|
if hasattr(i, 'content'): |
|
|
|
self.webbase.putChild(nid, i.content) |
|
|
|
self.children[parent].append(i) |
|
|
|