command-line: make it work with the private vdrive #120
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#120
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently the command-line can't access your private vdrive.
Make the command-line client parse the secret private vdrive uri out of $basedir/start.html and use it.
While you are at it, make it get the port number out of $basedir/webport and use "localhost" as the default host, thus giving the -u option a good default.
actually, I'd suggest adding a utility function which reads the my_vdrive.uri
and webport out of $basedir, and computes the private vdrive base url from
that. Then use that function in all the CLI tools. (scraping HTML is icky).
Alternatively, we could have the node write a my_vdrive.url (URL, not URI)
with this information, to make that utility function easier. It could also
write my_node.url for the welcome page (this is derivable from the contents
of 'webport', but it seems like it might be more reliable to have the node do
this for us).
Let's talk about default node basedirs, since that has bearing here: I'd like
to propose the following CLI tool options:
--basedir
: the base directory of the local tahoe node to use.Defaults to ~/.tahoe . If $BASEDIR/webport exists, the tool will use
it to compute a node-url to use. If $BASEDIR/my_vdrive.uri exists, the
tool will use it to compute a URL to use for --vdrive=private
-u
/--node-url
: the base URL of the node,http://localhost:$webport . This has no default value. If this is provided,
--basedir is ignored.
If we also add --basedir=~/.tahoe to the create-client and start/stop/restart
commands, and if we added a hypothetical --introducer=FURL option to
create-client (which would contact an introducer and fetch the vdrive furl
and write both into the newly-created client directory), then the usage
pattern for a tahoe user would be:
(mind you I'm not tied to the spelling of these options, just the concept)
Oh, I think this might interact closely or identically with ticket #105.
command-line: deal with new security regime from #98to command-line: make it work with the private vdriveAs per discussion with Peter:
Also, we want it to be convenient to use the allmydata-tahoe command-line tool even when the node isn't installed on the local machine. So the mapping from petname to directory uri should be managed by the command-line tool instead of by the node.
For example:
would store a mapping from the string "private" to that URI in the user's ~/.tahoe directory (even if there is no node installed on that machine.
(As as aside, that directory URI string is big and ugly. I think that it is important for usability (therefore important for adoption) to make them smaller and prettier. See #102.)
Subsequently, this command line would use the stored URI:
as would this
Yay, Brian!
I promoted this ticket from milestone 0.7 to 0.6.1 because my favorite customer, Peter, wants it. (Also because Brian wants to implement it!)
ok, I've finished pushing my changes. The new code uses --node-directory, --node-url, and --root-uri . If you don't specify anything, --node-directory defaults to ~/.tahoe and reads everything else from there. --root-uri can be 'private', 'public', or a real dirnode URI, and it defaults to 'private'. Both 'private' and 'public' cause the CLI commands to look in the node-directory for URIs.
Also, all create/start/stop/restart commands (except create-introducer) default to using ~/.tahoe too. Finally, I changed create-client to accept a --webport argument, to populate NODEDIR/webport, and it defaults to localhost:8011 (feel free to change it to a different default port, that was just the first value that popped into my head). So the following sequence of commands Just Works:
The 'cp *.furl' step is a drag, but we're stuck with it until we build the Invitation/Introduction protocol, at which point we can either use 'allmydata-tahoe accept-invitation FURL', or 'allmydata-tahoe create-client --invitation=FURL'.
I think we can close this out now, but I'm going to leave it open for another day to solicit comments.
I watched Peter use this successfully, and he seems happy. Time to close the ticket.