Interface¶
HTTP API¶
Magic-Folder exposes all of its supported functionality in an HTTP API. The address of the HTTP server is part of the daemon configuration.
Authorization¶
The HTTP API is protected by Bearer token-style authorization scheme. Only requests which include the correct token will receive successful responses. Other requests will receive 401 Unauthorized responses which omit the requested resource. The token value should be included with the Bearer scheme in the Authorization header element. For example:
Authorization: Bearer abcdefghijklmnopqrstuvwxyz
The correct token value can be found in the api_token file inside the Magic-Folder daemon configuration directory. The token value is periodically rotated so clients must be prepared to receive an Unauthorized response even when supplying the token. In this case, the client should re-read the token from the filesystem to determine if the value held in memory has become stale.
GET /v1/magic-folder
¶
This endpoint returns a dict of all individual magic-folders managed by this daemon. The keys of the dict are the folder name and the values are themselves dicts.
You may include the query argument ?include_secret_information=1
to
include values for each folder which should be kept hidden (and are
not shown by default). These are: upload_dircap
,
collective_dircap
, and the signing_key
inside author
.
The response code OK and the Content-Type is application/json
.
The response body follows the form of this example (containing a single
magic-folder named “documents”):
{
"documents": {
"name": "documents",
"author": {
"name": "alice",
"verify_key": "OY7FCVPCOJXDNHQLSDTTJFONTROMQQED5Q6K33T3NBGGQHKLV73Q===="
},
"poll_interval": 60,
"is_admin": true,
"stash_path": "/home/alice/.config/magic-folder/documents",
"magic_path": "/home/alice/Documents"
}
}
GET /v1/snapshot
¶
Retrieve information about all snapshots known to exist.
The response is OK with an application/json
Content-Type:
{"folder name": {
"foo/bar": [
{ "type": "local"
, "identifier": "06be2d83-2d86-402d-ae2a-81b3779d72d9"
, "parents":
[ {"local": "30803885-ef3c-4645-85e6-6b1c9dfd50c3"}
, {"remote": "URI:..."}
]
}
]
}}
Properties of the top-level object map the name of a magic-folder to second-level objects describing snapshots for each file in that folder. Properties of second-level objects map relative file paths to lists of snapshots for that magic-folder. Elements of the list are objects with describe a single snapshot.
Local snapshots are represented like this:
{ "type": "local"
, "identifier": "0d585a0e-c39c-4dec-affb-cbab34245370"
, "parents": [{"local": "a3eb3d57-5272-45f3-ba5f-04a52024785b"}]
,
}
The parents property gives a list of references to snapshots which are parents of the containing snapshot. A local snapshot reference in this list is represented like this:
{ "local": "a3eb3d57-5272-45f3-ba5f-04a52024785b" }
The values for the local
property can be resolved against the identifier
described above.
In the future, this this may also contain remote snapshot references. A remote snapshot reference in this list is represented like this:
{ "remote": "URI:..." }
The value is a Tahoe-LAFS capability string for a stored object representing the snapshot.
GET /v1/snapshot/<folder-name>
¶
Not yet implemented. Get all snapshots for one folder.
GET /v1/snapshot/<folder-name>?path=<some-path>
¶
Not yet implemented. Get all snapshots for one folder beneath a certain path.
POST /v1/snapshot/<folder-name>?path=<some-path>
¶
Create a new snapshot for a certain file in a certain magic-folder.
The path
query argument is required.
It must be a filesystem path relative to the selected magic-folder.
A new snapshot will be created for the file it identifies.
The response is delayed until the local state tracking the snapshot has been created.
The response code CREATED and the Content-Type is application/json
.
The response body follows the form of this example:
{}
Status API¶
There is a WebSocket-based status API located at /v1/status
.
This is authenticated the same way as the HTTP API with an Authorization:
header (see above).
All messages are JSON. Upon connecting, a new client will immediately receive a “state” message:
{
"state": {
"synchronizing": false
}
}
After that the client may receive further state updates with a "state"
message like the above.
Currently the only valid kind of message is "state"
.
The state consists of the following information:
"synchronizing"
:true
orfalse
. Whentrue
the magic-folder daemon is uploading data to or downloading data from Tahoe-LAFS.
Clients should be tolerant of keys in the state they don’t understand. Unknown state keys should be ignored.
The client doesn’t send any messages to the server; it is an error to do so.