2006-12-04 11:06:09 +00:00
|
|
|
|
2006-12-07 19:47:40 +00:00
|
|
|
from twisted.application import service, strports
|
2006-12-07 21:48:37 +00:00
|
|
|
from twisted.web import static, resource, server, html
|
2006-12-04 12:15:36 +00:00
|
|
|
from twisted.python import util, log
|
|
|
|
from nevow import inevow, rend, loaders, appserver, url, tags as T
|
2007-06-15 08:32:20 +00:00
|
|
|
from nevow.static import File as nevow_File # TODO: merge with static.File?
|
2006-12-04 11:06:09 +00:00
|
|
|
from allmydata.util import idlib
|
2007-05-04 20:07:32 +00:00
|
|
|
from allmydata.uri import unpack_uri
|
2007-06-25 20:23:51 +00:00
|
|
|
from allmydata.interfaces import IDownloadTarget, IDirectoryNode, IFileNode
|
|
|
|
from allmydata.vdrive import FileNode
|
2007-06-15 07:37:32 +00:00
|
|
|
from allmydata import upload
|
2006-12-05 02:54:35 +00:00
|
|
|
from zope.interface import implements, Interface
|
2006-12-04 11:06:09 +00:00
|
|
|
import urllib
|
2006-12-04 12:15:36 +00:00
|
|
|
from formless import annotate, webform
|
2006-12-04 11:06:09 +00:00
|
|
|
|
|
|
|
def getxmlfile(name):
|
|
|
|
return loaders.xmlfile(util.sibpath(__file__, "web/%s" % name))
|
|
|
|
|
2006-12-05 02:54:35 +00:00
|
|
|
class IClient(Interface):
|
|
|
|
pass
|
|
|
|
|
2006-12-07 21:48:37 +00:00
|
|
|
def get_downloader_service(ctx):
|
|
|
|
return IClient(ctx).getServiceNamed("downloader")
|
|
|
|
def get_uploader_service(ctx):
|
|
|
|
return IClient(ctx).getServiceNamed("uploader")
|
2006-12-04 11:06:09 +00:00
|
|
|
|
|
|
|
class Welcome(rend.Page):
|
|
|
|
addSlash = True
|
|
|
|
docFactory = getxmlfile("welcome.xhtml")
|
|
|
|
|
2007-06-11 17:51:11 +00:00
|
|
|
def data_version(self, ctx, data):
|
|
|
|
v = IClient(ctx).get_versions()
|
|
|
|
return "tahoe: %s, zfec: %s, foolscap: %s, twisted: %s" % \
|
|
|
|
(v['allmydata'], v['zfec'], v['foolscap'], v['twisted'])
|
|
|
|
|
2007-03-29 21:31:55 +00:00
|
|
|
def data_my_nodeid(self, ctx, data):
|
|
|
|
return idlib.b2a(IClient(ctx).nodeid)
|
2007-05-22 21:08:30 +00:00
|
|
|
def data_introducer_furl(self, ctx, data):
|
2007-03-27 23:12:11 +00:00
|
|
|
return IClient(ctx).introducer_furl
|
2007-04-20 00:30:21 +00:00
|
|
|
def data_connected_to_introducer(self, ctx, data):
|
2007-06-10 04:03:57 +00:00
|
|
|
if IClient(ctx).connected_to_introducer():
|
|
|
|
return "yes"
|
|
|
|
return "no"
|
|
|
|
def data_connected_to_vdrive(self, ctx, data):
|
|
|
|
if IClient(ctx).connected_to_vdrive():
|
2006-12-05 19:51:32 +00:00
|
|
|
return "yes"
|
|
|
|
return "no"
|
2006-12-05 02:54:35 +00:00
|
|
|
def data_num_peers(self, ctx, data):
|
|
|
|
#client = inevow.ISite(ctx)._client
|
|
|
|
client = IClient(ctx)
|
2007-03-28 00:44:49 +00:00
|
|
|
return len(list(client.get_all_peerids()))
|
2007-01-17 04:01:18 +00:00
|
|
|
|
2006-12-05 02:54:35 +00:00
|
|
|
def data_peers(self, ctx, data):
|
2007-01-17 04:01:18 +00:00
|
|
|
d = []
|
|
|
|
client = IClient(ctx)
|
2007-03-27 23:12:11 +00:00
|
|
|
for nodeid in sorted(client.get_all_peerids()):
|
|
|
|
row = (idlib.b2a(nodeid),)
|
2007-01-17 04:01:18 +00:00
|
|
|
d.append(row)
|
|
|
|
return d
|
|
|
|
|
2006-12-05 02:54:35 +00:00
|
|
|
def render_row(self, ctx, data):
|
2007-03-27 23:12:11 +00:00
|
|
|
(nodeid_a,) = data
|
2007-01-17 04:01:18 +00:00
|
|
|
ctx.fillSlots("peerid", nodeid_a)
|
2006-12-05 02:54:35 +00:00
|
|
|
return ctx.tag
|
2006-12-04 19:03:29 +00:00
|
|
|
|
2007-06-15 08:33:24 +00:00
|
|
|
def render_global_vdrive(self, ctx, data):
|
|
|
|
if self.has_global_vdrive:
|
2007-06-10 04:03:57 +00:00
|
|
|
return T.p["To view the global shared filestore, ",
|
2007-06-15 08:33:24 +00:00
|
|
|
T.a(href="../global_vdrive")["Click Here!"],
|
|
|
|
]
|
|
|
|
return T.p["vdrive.furl not specified (or vdrive server not "
|
|
|
|
"responding), no vdrive available."]
|
|
|
|
|
|
|
|
def render_my_vdrive(self, ctx, data):
|
|
|
|
if self.has_my_vdrive:
|
|
|
|
return T.p["To view your personal private non-shared filestore, ",
|
|
|
|
T.a(href="../my_vdrive")["Click Here!"],
|
2007-06-10 04:03:57 +00:00
|
|
|
]
|
2007-06-15 08:33:24 +00:00
|
|
|
return T.p["personal vdrive not available."]
|
2007-06-10 04:03:57 +00:00
|
|
|
|
2006-12-07 21:48:37 +00:00
|
|
|
# this is a form where users can download files by URI
|
|
|
|
|
|
|
|
def bind_download(self, ctx):
|
|
|
|
uriarg = annotate.Argument("uri",
|
|
|
|
annotate.String("URI of file to download: "))
|
|
|
|
namearg = annotate.Argument("filename",
|
|
|
|
annotate.String("Filename to download as: "))
|
|
|
|
ctxarg = annotate.Argument("ctx", annotate.Context())
|
|
|
|
meth = annotate.Method(arguments=[uriarg, namearg, ctxarg],
|
|
|
|
label="Download File by URI")
|
|
|
|
# buttons always use value=data.label
|
|
|
|
# MethodBindingRenderer uses value=(data.action or data.label)
|
|
|
|
return annotate.MethodBinding("download", meth, action="Download")
|
|
|
|
|
|
|
|
def download(self, uri, filename, ctx):
|
|
|
|
log.msg("webish downloading URI")
|
|
|
|
target = url.here.sibling("download_uri").add("uri", uri)
|
|
|
|
if filename:
|
|
|
|
target = target.add("filename", filename)
|
|
|
|
return target
|
|
|
|
|
|
|
|
def render_forms(self, ctx, data):
|
|
|
|
return webform.renderForms()
|
|
|
|
|
|
|
|
|
2006-12-04 11:06:09 +00:00
|
|
|
class Directory(rend.Page):
|
|
|
|
addSlash = True
|
|
|
|
docFactory = getxmlfile("directory.xhtml")
|
|
|
|
|
2007-06-15 07:37:32 +00:00
|
|
|
def __init__(self, dirnode, dirname):
|
2006-12-04 11:06:09 +00:00
|
|
|
self._dirnode = dirnode
|
|
|
|
self._dirname = dirname
|
2006-12-05 02:54:35 +00:00
|
|
|
|
2006-12-04 11:06:09 +00:00
|
|
|
def childFactory(self, ctx, name):
|
|
|
|
if name.startswith("freeform"): # ick
|
|
|
|
return None
|
|
|
|
if self._dirname == "/":
|
|
|
|
dirname = "/" + name
|
|
|
|
else:
|
|
|
|
dirname = self._dirname + "/" + name
|
2007-06-15 07:37:32 +00:00
|
|
|
d = self._dirnode.get(name)
|
2006-12-07 21:48:37 +00:00
|
|
|
def _got_child(res):
|
2007-06-25 20:23:51 +00:00
|
|
|
if IFileNode.providedBy(res):
|
2006-12-07 21:48:37 +00:00
|
|
|
dl = get_downloader_service(ctx)
|
|
|
|
return Downloader(dl, name, res)
|
2007-06-25 20:23:51 +00:00
|
|
|
elif IDirectoryNode.providedBy(res):
|
2007-06-15 07:37:32 +00:00
|
|
|
return Directory(res, dirname)
|
2007-06-15 03:14:34 +00:00
|
|
|
else:
|
|
|
|
raise RuntimeError("what is this %s" % res)
|
2006-12-07 21:48:37 +00:00
|
|
|
d.addCallback(_got_child)
|
2006-12-04 11:06:09 +00:00
|
|
|
return d
|
|
|
|
|
|
|
|
def render_title(self, ctx, data):
|
|
|
|
return ctx.tag["Directory of '%s':" % self._dirname]
|
|
|
|
|
|
|
|
def render_header(self, ctx, data):
|
2007-06-25 20:23:51 +00:00
|
|
|
header = "Directory of '%s':" % self._dirname
|
|
|
|
if not self._dirnode.is_mutable():
|
|
|
|
header += " (readonly)"
|
|
|
|
return header
|
2006-12-04 11:06:09 +00:00
|
|
|
|
2007-06-25 20:23:51 +00:00
|
|
|
def data_share_uri(self, ctx, data):
|
|
|
|
return self._dirnode.get_uri()
|
|
|
|
def data_share_readonly_uri(self, ctx, data):
|
|
|
|
return self._dirnode.get_immutable_uri()
|
2007-06-15 09:31:23 +00:00
|
|
|
|
2006-12-04 11:06:09 +00:00
|
|
|
def data_children(self, ctx, data):
|
2007-06-15 07:37:32 +00:00
|
|
|
d = self._dirnode.list()
|
2007-06-25 20:23:51 +00:00
|
|
|
d.addCallback(lambda dict: sorted(dict.items()))
|
2006-12-04 11:06:09 +00:00
|
|
|
return d
|
|
|
|
|
|
|
|
def render_row(self, ctx, data):
|
|
|
|
name, target = data
|
2007-06-25 20:23:51 +00:00
|
|
|
|
|
|
|
if self._dirnode.is_mutable():
|
|
|
|
# this creates a button which will cause our child__delete method
|
|
|
|
# to be invoked, which deletes the file and then redirects the
|
|
|
|
# browser back to this directory
|
|
|
|
del_url = url.here.child("_delete")
|
|
|
|
#del_url = del_url.add("uri", target.uri)
|
|
|
|
del_url = del_url.add("name", name)
|
|
|
|
delete = T.form(action=del_url, method="post")[
|
|
|
|
T.input(type='submit', value='del', name="del"),
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
delete = "-"
|
|
|
|
ctx.fillSlots("delete", delete)
|
|
|
|
|
|
|
|
if IFileNode.providedBy(target):
|
2006-12-04 11:06:09 +00:00
|
|
|
# file
|
2006-12-07 21:48:37 +00:00
|
|
|
dlurl = urllib.quote(name)
|
|
|
|
ctx.fillSlots("filename",
|
|
|
|
T.a(href=dlurl)[html.escape(name)])
|
2006-12-04 11:06:09 +00:00
|
|
|
ctx.fillSlots("type", "FILE")
|
2007-06-15 07:37:32 +00:00
|
|
|
uri = target.uri
|
2006-12-07 21:48:37 +00:00
|
|
|
dl_uri_url = url.root.child("download_uri").child(uri)
|
|
|
|
# add a filename= query argument to give it a Content-Type
|
|
|
|
dl_uri_url = dl_uri_url.add("filename", name)
|
2007-01-17 02:55:53 +00:00
|
|
|
ctx.fillSlots("uri", T.a(href=dl_uri_url)[html.escape(uri)])
|
2006-12-05 02:27:38 +00:00
|
|
|
|
2007-05-04 20:07:32 +00:00
|
|
|
#extract and display file size
|
2007-05-23 18:18:49 +00:00
|
|
|
ctx.fillSlots("size", unpack_uri(uri)['size'])
|
2007-05-04 20:07:32 +00:00
|
|
|
|
2007-06-25 20:23:51 +00:00
|
|
|
elif IDirectoryNode.providedBy(target):
|
2006-12-04 11:06:09 +00:00
|
|
|
# directory
|
2006-12-07 21:48:37 +00:00
|
|
|
subdir_url = urllib.quote(name)
|
|
|
|
ctx.fillSlots("filename",
|
|
|
|
T.a(href=subdir_url)[html.escape(name)])
|
2007-06-26 19:37:00 +00:00
|
|
|
if target.is_mutable():
|
|
|
|
dirtype = "DIR"
|
|
|
|
else:
|
|
|
|
dirtype = "DIR-RO"
|
|
|
|
ctx.fillSlots("type", dirtype)
|
2007-05-04 20:07:32 +00:00
|
|
|
ctx.fillSlots("size", "-")
|
2007-01-17 02:55:53 +00:00
|
|
|
ctx.fillSlots("uri", "-")
|
2007-06-15 07:37:32 +00:00
|
|
|
else:
|
|
|
|
raise RuntimeError("unknown thing %s" % (target,))
|
2006-12-04 11:06:09 +00:00
|
|
|
return ctx.tag
|
|
|
|
|
2006-12-04 12:15:36 +00:00
|
|
|
def render_forms(self, ctx, data):
|
2007-06-25 20:23:51 +00:00
|
|
|
if self._dirnode.is_mutable():
|
|
|
|
return webform.renderForms()
|
|
|
|
return T.div["No upload forms: directory is immutable"]
|
2006-12-04 12:15:36 +00:00
|
|
|
|
2007-05-16 15:40:19 +00:00
|
|
|
def render_results(self, ctx, data):
|
|
|
|
req = inevow.IRequest(ctx)
|
|
|
|
if "results" in req.args:
|
|
|
|
return req.args["results"]
|
|
|
|
else:
|
|
|
|
return ""
|
|
|
|
|
2006-12-05 01:49:24 +00:00
|
|
|
def bind_upload(self, ctx):
|
|
|
|
"""upload1"""
|
|
|
|
# Note: this comment is no longer accurate, as it reflects the older
|
|
|
|
# (apparently deprecated) formless.autocallable /
|
|
|
|
# annotate.TypedInterface approach.
|
|
|
|
|
|
|
|
# Each method gets a box. The string in the autocallable(action=)
|
|
|
|
# argument is put on the border of the box, as well as in the submit
|
|
|
|
# button. The top-most contents of the box are the method's
|
|
|
|
# docstring, if any. Each row contains a string for the argument
|
|
|
|
# followed by the argument's input box. If you do not provide an
|
|
|
|
# action= argument to autocallable, the method name is capitalized
|
|
|
|
# and used instead.
|
|
|
|
up = annotate.FileUpload(label="Choose a file to upload: ",
|
|
|
|
required=True,
|
|
|
|
requiredFailMessage="Do iT!")
|
|
|
|
contentsarg = annotate.Argument("contents", up)
|
|
|
|
|
2007-05-16 15:40:19 +00:00
|
|
|
privateUpload = annotate.Radio(label="Private?", choices=["Yes"])
|
|
|
|
privatearg = annotate.Argument("privateupload", privateUpload)
|
|
|
|
|
2006-12-05 01:49:24 +00:00
|
|
|
ctxarg = annotate.Argument("ctx", annotate.Context())
|
2007-05-16 15:40:19 +00:00
|
|
|
meth = annotate.Method(arguments=[contentsarg, privatearg, ctxarg],
|
2006-12-07 21:48:37 +00:00
|
|
|
label="Upload File to this directory")
|
|
|
|
return annotate.MethodBinding("upload", meth, action="Upload")
|
2006-12-05 01:49:24 +00:00
|
|
|
|
2007-05-16 15:40:19 +00:00
|
|
|
def uploadprivate(self, filename, uri):
|
|
|
|
message = "webish upload complete, filename %s %s" % (filename, uri)
|
|
|
|
log.msg(message)
|
|
|
|
return url.here.add("filename", filename).add("results", message)
|
|
|
|
|
|
|
|
def upload(self, contents, privateupload, ctx):
|
2006-12-04 12:15:36 +00:00
|
|
|
# contents is a cgi.FieldStorage instance
|
|
|
|
log.msg("starting webish upload")
|
|
|
|
|
2006-12-07 21:48:37 +00:00
|
|
|
uploader = get_uploader_service(ctx)
|
2007-06-25 20:23:51 +00:00
|
|
|
uploadable = upload.FileHandle(contents.file)
|
2006-12-04 12:15:36 +00:00
|
|
|
name = contents.filename
|
2007-06-25 20:23:51 +00:00
|
|
|
if privateupload:
|
|
|
|
d = uploader.upload(uploadable)
|
|
|
|
d.addCallback(lambda uri: self.uploadprivate(name, uri))
|
|
|
|
else:
|
|
|
|
d = self._dirnode.add_file(name, uploadable)
|
2006-12-04 12:15:36 +00:00
|
|
|
def _done(res):
|
|
|
|
log.msg("webish upload complete")
|
|
|
|
return res
|
|
|
|
d.addCallback(_done)
|
2007-06-15 03:14:34 +00:00
|
|
|
return d # TODO: huh?
|
2006-12-04 12:15:36 +00:00
|
|
|
return url.here.add("results",
|
|
|
|
"upload of '%s' complete!" % contents.filename)
|
|
|
|
|
2006-12-05 01:49:24 +00:00
|
|
|
def bind_mkdir(self, ctx):
|
|
|
|
"""Make new directory 1"""
|
|
|
|
namearg = annotate.Argument("name",
|
|
|
|
annotate.String("New directory name: "))
|
2006-12-07 21:48:37 +00:00
|
|
|
meth = annotate.Method(arguments=[namearg], label="Make New Subdirectory")
|
|
|
|
return annotate.MethodBinding("mkdir", meth, action="Create Directory")
|
2006-12-05 01:49:24 +00:00
|
|
|
|
2006-12-04 19:03:29 +00:00
|
|
|
def mkdir(self, name):
|
2006-12-05 01:49:24 +00:00
|
|
|
"""mkdir2"""
|
2007-06-15 09:48:19 +00:00
|
|
|
log.msg("making new webish directory: %s" % (name,))
|
2007-06-15 07:37:32 +00:00
|
|
|
d = self._dirnode.create_empty_directory(name)
|
2006-12-04 19:03:29 +00:00
|
|
|
def _done(res):
|
|
|
|
log.msg("webish mkdir complete")
|
|
|
|
return res
|
|
|
|
d.addCallback(_done)
|
|
|
|
return d
|
|
|
|
|
2007-06-15 09:31:23 +00:00
|
|
|
def bind_mount(self, ctx):
|
|
|
|
namearg = annotate.Argument("name",
|
|
|
|
annotate.String("Name to place incoming directory: "))
|
2007-06-25 20:23:51 +00:00
|
|
|
uriarg = annotate.Argument("uri",
|
|
|
|
annotate.String("URI of Shared Directory"))
|
|
|
|
meth = annotate.Method(arguments=[namearg, uriarg],
|
2007-06-15 09:31:23 +00:00
|
|
|
label="Add Shared Directory")
|
|
|
|
return annotate.MethodBinding("mount", meth,
|
|
|
|
action="Mount Shared Directory")
|
|
|
|
|
2007-06-25 20:23:51 +00:00
|
|
|
def mount(self, name, uri):
|
|
|
|
d = self._dirnode.set_uri(name, uri)
|
2007-06-15 09:34:24 +00:00
|
|
|
#d.addCallback(lambda done: url.here.child(name))
|
2007-06-15 09:31:23 +00:00
|
|
|
return d
|
|
|
|
|
2006-12-05 02:27:38 +00:00
|
|
|
def child__delete(self, ctx):
|
|
|
|
# perform the delete, then redirect back to the directory page
|
|
|
|
args = inevow.IRequest(ctx).args
|
2007-06-15 03:14:34 +00:00
|
|
|
name = args["name"][0]
|
2007-06-25 20:23:51 +00:00
|
|
|
d = self._dirnode.delete(name)
|
2007-06-15 09:34:24 +00:00
|
|
|
d.addCallback(lambda done: url.here.up())
|
2006-12-05 02:27:38 +00:00
|
|
|
return d
|
|
|
|
|
2006-12-04 11:06:09 +00:00
|
|
|
class WebDownloadTarget:
|
|
|
|
implements(IDownloadTarget)
|
|
|
|
def __init__(self, req):
|
|
|
|
self._req = req
|
|
|
|
def open(self):
|
|
|
|
pass
|
|
|
|
def write(self, data):
|
|
|
|
self._req.write(data)
|
|
|
|
def close(self):
|
|
|
|
self._req.finish()
|
|
|
|
def fail(self):
|
|
|
|
self._req.finish()
|
|
|
|
def register_canceller(self, cb):
|
|
|
|
pass
|
|
|
|
def finish(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class TypedFile(static.File):
|
|
|
|
# serve data from a named file, but using a Content-Type derived from a
|
|
|
|
# different filename
|
|
|
|
isLeaf = True
|
|
|
|
def __init__(self, path, requested_filename):
|
|
|
|
static.File.__init__(self, path)
|
|
|
|
gte = static.getTypeAndEncoding
|
|
|
|
self.type, self.encoding = gte(requested_filename,
|
|
|
|
self.contentTypes,
|
|
|
|
self.contentEncodings,
|
|
|
|
self.defaultType)
|
|
|
|
|
|
|
|
class Downloader(resource.Resource):
|
2007-06-15 07:37:32 +00:00
|
|
|
def __init__(self, downloader, name, filenode):
|
2006-12-04 11:06:09 +00:00
|
|
|
self._downloader = downloader
|
|
|
|
self._name = name
|
2007-06-25 20:23:51 +00:00
|
|
|
IFileNode(filenode)
|
2007-06-15 07:37:32 +00:00
|
|
|
self._filenode = filenode
|
2006-12-04 11:06:09 +00:00
|
|
|
|
|
|
|
def render(self, ctx):
|
|
|
|
req = inevow.IRequest(ctx)
|
|
|
|
gte = static.getTypeAndEncoding
|
|
|
|
type, encoding = gte(self._name,
|
|
|
|
static.File.contentTypes,
|
|
|
|
static.File.contentEncodings,
|
|
|
|
defaultType="text/plain")
|
|
|
|
req.setHeader("content-type", type)
|
|
|
|
if encoding:
|
|
|
|
req.setHeader('content-encoding', encoding)
|
|
|
|
|
2007-06-15 07:37:32 +00:00
|
|
|
self._filenode.download(WebDownloadTarget(req))
|
2006-12-04 11:06:09 +00:00
|
|
|
return server.NOT_DONE_YET
|
2006-12-04 12:15:36 +00:00
|
|
|
|
|
|
|
|
2006-12-07 21:48:37 +00:00
|
|
|
|
|
|
|
class Root(rend.Page):
|
|
|
|
def locateChild(self, ctx, segments):
|
|
|
|
if segments[0] == "download_uri":
|
|
|
|
req = inevow.IRequest(ctx)
|
|
|
|
dl = get_downloader_service(ctx)
|
|
|
|
filename = "unknown_filename"
|
|
|
|
if "filename" in req.args:
|
|
|
|
filename = req.args["filename"][0]
|
|
|
|
if len(segments) > 1:
|
|
|
|
# http://host/download_uri/URIGOESHERE
|
2007-01-17 21:46:02 +00:00
|
|
|
uri = segments[1]
|
2006-12-07 21:48:37 +00:00
|
|
|
elif "uri" in req.args:
|
|
|
|
# http://host/download_uri?uri=URIGOESHERE
|
2007-01-17 21:46:02 +00:00
|
|
|
uri = req.args["uri"][0]
|
2006-12-07 21:48:37 +00:00
|
|
|
else:
|
|
|
|
return rend.NotFound
|
2007-06-15 07:37:32 +00:00
|
|
|
child = Downloader(dl, filename, FileNode(uri, IClient(ctx)))
|
2006-12-07 21:48:37 +00:00
|
|
|
return child, ()
|
|
|
|
return rend.Page.locateChild(self, ctx, segments)
|
|
|
|
|
|
|
|
child_webform_css = webform.defaultCSS
|
2007-06-15 08:32:20 +00:00
|
|
|
child_tahoe_css = nevow_File(util.sibpath(__file__, "web/tahoe.css"))
|
2006-12-07 21:48:37 +00:00
|
|
|
|
|
|
|
child_welcome = Welcome()
|
|
|
|
|
|
|
|
|
|
|
|
class WebishServer(service.MultiService):
|
|
|
|
name = "webish"
|
|
|
|
|
|
|
|
def __init__(self, webport):
|
|
|
|
service.MultiService.__init__(self)
|
|
|
|
self.root = Root()
|
2007-06-15 08:33:24 +00:00
|
|
|
self.root.child_welcome.has_global_vdrive = False
|
|
|
|
self.root.child_welcome.has_my_vdrive = False
|
2006-12-07 21:48:37 +00:00
|
|
|
placeholder = static.Data("sorry, still initializing", "text/plain")
|
|
|
|
self.root.putChild("vdrive", placeholder)
|
|
|
|
self.root.putChild("", url.here.child("welcome"))#Welcome())
|
|
|
|
|
|
|
|
self.site = site = appserver.NevowSite(self.root)
|
|
|
|
s = strports.service(webport, site)
|
|
|
|
s.setServiceParent(self)
|
|
|
|
self.listener = s # stash it so the tests can query for the portnum
|
|
|
|
|
|
|
|
def startService(self):
|
|
|
|
service.MultiService.startService(self)
|
|
|
|
# to make various services available to render_* methods, we stash a
|
|
|
|
# reference to the client on the NevowSite. This will be available by
|
|
|
|
# adapting the 'context' argument to a special marker interface named
|
|
|
|
# IClient.
|
|
|
|
self.site.remember(self.parent, IClient)
|
|
|
|
# I thought you could do the same with an existing interface, but
|
|
|
|
# apparently 'ISite' does not exist
|
|
|
|
#self.site._client = self.parent
|
|
|
|
|
2007-06-25 20:23:51 +00:00
|
|
|
def set_vdrive_rootnode(self, root):
|
2007-06-15 08:33:24 +00:00
|
|
|
self.root.putChild("global_vdrive", Directory(root, "/"))
|
|
|
|
self.root.child_welcome.has_global_vdrive = True
|
2006-12-07 21:48:37 +00:00
|
|
|
# I tried doing it this way and for some reason it didn't seem to work
|
|
|
|
#print "REMEMBERING", self.site, dl, IDownloader
|
|
|
|
#self.site.remember(dl, IDownloader)
|
2006-12-07 21:58:23 +00:00
|
|
|
|
2007-06-25 20:23:51 +00:00
|
|
|
def set_my_vdrive_rootnode(self, my_vdrive):
|
2007-06-15 08:33:24 +00:00
|
|
|
self.root.putChild("my_vdrive", Directory(my_vdrive, "~"))
|
|
|
|
self.root.child_welcome.has_my_vdrive = True
|
|
|
|
|