1
Fork 0
galene/README.API

116 lines
3.7 KiB
Plaintext
Raw Normal View History

2024-04-10 21:36:55 +02:00
# Galene's administrative API
Galene provides an HTTP-based API that can be used to create groups and
users. For example, in order to create a group, a client may do
2024-05-03 18:33:37 +02:00
PUT /galene-api/v0/.groups/groupname/
2024-04-10 21:36:55 +02:00
Content-Type: application/json
If-None-Match: *
The `If-None-Match` header avoids overwriting an existing group.
In order to edit a group definition, a client first does
2024-05-03 18:33:37 +02:00
GET /galene-api/v0/.groups/groupname/
2024-04-10 21:36:55 +02:00
This yields the group definition and an entity tag (in the ETag header).
The client then modifies the group defintion, and does
2024-05-03 18:33:37 +02:00
PUT /galene-api/v0/.groups/groupname/
2024-04-10 21:36:55 +02:00
If-Match: "abcd"
where "abcd" is the entity tag returned by the GET request. If the group
definition has changed in the meantime, the entity tag will no longer be
valid, and the server will fail the update, which avoids losing an update
in the case of a concurrent modification.
## Endpoints
2024-05-03 18:33:37 +02:00
The API is located under `/galene-api/v0/`. The `/v0/` is a version number,
2024-04-10 21:36:55 +02:00
and will be incremented if we ever find out that the current API cannot be
extended in a backwards compatible manner.
### Statistics
2024-05-03 18:33:37 +02:00
/galene-api/v0/.stats
2024-04-10 21:36:55 +02:00
Provides a number of statistics about the running server, in JSON. The
exact format is undocumented, and may change between versions. The only
allowed methods are HEAD and GET.
### List of groups
2024-05-03 18:33:37 +02:00
/galene-api/v0/.groups/
2024-04-10 21:36:55 +02:00
Returns a list of groups, as plain text, one per line. The only allowed
methods are HEAD and GET.
### Group definition
2024-05-03 18:33:37 +02:00
/galene-api/v0/.groups/groupname
2024-04-10 21:36:55 +02:00
Contains a "sanitised" group definition in JSON format, analogous to the
on-disk format but without any user definitions or cryptographic keys.
Allowed methods are HEAD, GET, PUT and DELETE. The only accepted
content-type is `application/json`.
2024-04-11 13:45:30 +02:00
### Fallback users
2024-05-03 18:33:37 +02:00
/galene-api/v0/.groups/groupname/.fallback-users
2024-04-11 13:45:30 +02:00
Contains fallback user descriptions, in the same format as the
`fallbackUsers` field of the on-disk format. Allowed methods are PUT and
DELETE. The only accepted content-type is `application/json`.
2024-04-11 13:25:59 +02:00
### Authentication keys
2024-05-03 18:33:37 +02:00
/galene-api/v0/.groups/groupname/.keys
2024-04-11 13:25:59 +02:00
Contains the keys used for validation of stateless tokens, encoded as
a JSON key set (RFC 7517). Allowed methods are PUT and DELETE. The only
accepted content-type is `application/jwk-set+json`.
2024-04-10 21:36:55 +02:00
### List of users
2024-05-03 18:33:37 +02:00
/galene-api/v0/.groups/groupname/.users/
2024-04-10 21:36:55 +02:00
Returns a list of users, as plain text, one per line. The only allowed
methods are HEAD and GET.
### User definition
2024-05-03 18:33:37 +02:00
/galene-api/v0/.groups/groupname/.users/username
2024-04-10 21:36:55 +02:00
Contains a "sanitised" user definition (without any passwords), a JSON
object with a single field `permissions`. Allowed methods are HEAD, GET,
PUT and DELETE. The only accepted content-type is `application/json`.
### Passwords
2024-05-03 18:33:37 +02:00
/galene-api/v0/.groups/groupname/.users/username/.password
2024-04-10 21:36:55 +02:00
Contains the password of a given user. The PUT method takes a full
password definition, identical to what can appear in the `"password"`
field of the on-disk format, while the POST method takes a string which
will be hashed on the server. Allowed methods are PUT, POST and DELETE.
Accepted content-types are `application/json` for PUT and `text/plain` for
POST.
2024-05-01 22:12:48 +02:00
### List of stateful tokens
2024-05-03 18:33:37 +02:00
/galene-api/v0/.groups/groupname/.users/username/.tokens/
2024-05-01 22:12:48 +02:00
GET returns the list of stateful tokens, as plain text, one token per
line. POST creates a new token, and returns its name in the `Location`
header. Allowed methods are HEAD, GET and POST.
### Stateful token
2024-05-03 18:33:37 +02:00
/galene-api/v0/.groups/groupname/.users/username/.tokens/token
2024-05-01 22:12:48 +02:00
The full contents of a single token, in JSON. The exact format may change
between versions, so a client should first GET a token, update one or more
fields, then PUT the resulting token. Allowed methods are HEAD, GET and
PUT.