mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-02-11 16:43:42 +01:00
update with new endpoints
This commit is contained in:
parent
776436a5f0
commit
53435d400d
|
|
@ -35,7 +35,7 @@ room. This means that a user that is banned or currently in the room can't knock
|
||||||
|
|
||||||
### Join Rules
|
### Join Rules
|
||||||
The `join_rule` of `m.room.join_rules` must be set to "invite". This means that people can't knock
|
The `join_rule` of `m.room.join_rules` must be set to "invite". This means that people can't knock
|
||||||
in public rooms. Additionaly the new join rule "private" is introduced. This is so that people can,
|
in public rooms. Additionally the new join rule "private" is introduced. This is so that people can,
|
||||||
when creating a new room, prevent anyone from knocking.
|
when creating a new room, prevent anyone from knocking.
|
||||||
|
|
||||||
### Power levels
|
### Power levels
|
||||||
|
|
@ -57,7 +57,10 @@ as a way to limit who can knock and who can't.
|
||||||
```
|
```
|
||||||
|
|
||||||
## Client-Server API
|
## Client-Server API
|
||||||
The new endpoint for the client-server API is `POST /_matrix/client/r0/rooms/{roomId}/knock`.
|
Two new endpoints are introduced in the client-server API (similarly to join):
|
||||||
|
`POST /_matrix/client/r0/rooms/{roomId}/knock` and `POST /_matrix/client/r0/knock/{roomIdOrAlias}`.
|
||||||
|
|
||||||
|
### `POST /_matrix/client/r0/rooms/{roomId}/knock`
|
||||||
The path parameter (`roomId`) is the room you want to knock. It is required. The post body accepts
|
The path parameter (`roomId`) is the room you want to knock. It is required. The post body accepts
|
||||||
an optional parameter, `reason`, which is the reason you want to join the room. A request could look
|
an optional parameter, `reason`, which is the reason you want to join the room. A request could look
|
||||||
as follows:
|
as follows:
|
||||||
|
|
@ -71,14 +74,14 @@ Content-Type: application/json
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Responses:
|
#### Responses:
|
||||||
#### Status code 200:
|
##### Status code 200:
|
||||||
The user knocked successfully. Empty reply:
|
The user knocked successfully. Empty reply:
|
||||||
```json
|
```json
|
||||||
{}
|
{}
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Status code 400:
|
##### Status code 400:
|
||||||
This request was invalid, e.g. bad JSON. Example reply:
|
This request was invalid, e.g. bad JSON. Example reply:
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
|
|
@ -86,7 +89,7 @@ This request was invalid, e.g. bad JSON. Example reply:
|
||||||
"error": "An unknown error occurred"}
|
"error": "An unknown error occurred"}
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Status code 403:
|
##### Status code 403:
|
||||||
The user wasn't allowed to knock (e.g. they are banned). Error reply:
|
The user wasn't allowed to knock (e.g. they are banned). Error reply:
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
|
|
@ -95,7 +98,7 @@ The user wasn't allowed to knock (e.g. they are banned). Error reply:
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Status code 429:
|
##### Status code 429:
|
||||||
This request was rate-limited. Example reply:
|
This request was rate-limited. Example reply:
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
|
|
@ -105,70 +108,130 @@ This request was rate-limited. Example reply:
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Server-Server API
|
### `POST /_matrix/client/r0/knock/{roomIdOrAlias}`
|
||||||
The new endpoint for the server-server API is `PUT /_matrix/federation/v2/knock/{roomId}/{eventId}`.
|
The path parameter (`roomIdOrAlias`) is either the room ID or the alias of the room you want to
|
||||||
The path parameters are the room id you want to knock and the event id of the knock event. The post
|
knock. Additionally several `server_name` parameters can be specified via the query parameters. The
|
||||||
body consists of an `event` parameter, which is the knock event. A request could look as follows:
|
post body accepts an optional parameter, `reason`, which is the reason you want to join the room. A
|
||||||
|
request could look as follows:
|
||||||
|
|
||||||
```
|
```
|
||||||
PUT /_matrix/federation/v2/knock/%21abc123%3Amatrix.org/%24abc123%3Aexample.org HTTP/1.1
|
POST /_matrix/client/r0/knock/%23monkeys%3Amatrix.org?server_name=matrix.org&server_name=elsewhere.ca HTTP/1.1
|
||||||
Content-Type: application/json
|
Content-Type: application/json
|
||||||
|
|
||||||
{
|
{
|
||||||
"event": {
|
"reason": "I want to join this room as I really love foxes!"
|
||||||
"sender": "@alice:example.org",
|
|
||||||
"origin": "example.org",
|
|
||||||
"origin_server_ts": 1234567890,
|
|
||||||
"type: "m.room.member",
|
|
||||||
"state_key": "@alice:example.org",
|
|
||||||
"content": {
|
|
||||||
"membership": "knock",
|
|
||||||
"displayname": "Alice",
|
|
||||||
"avatar_url": "mxc://example.org/avatar",
|
|
||||||
"reason": "I want to join this room as I really love foxes!"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Responses
|
#### Responses:
|
||||||
#### Status code 200:
|
The possible responses are the same as for the `POST /_matrix/client/r0/rooms/{roomId}/knock` endpoint.
|
||||||
The knock was performed successfully. The knock event is sent back with the "event" key.
|
|
||||||
|
## Server-Server API
|
||||||
|
Similarly to join and leave over federation, a ping-pong game with two new endpoints is introduced:
|
||||||
|
`make_knock` and `send_knock`. Both endpoints must be protected via server ACLs.
|
||||||
|
|
||||||
|
### `GET /_matrix/federation/v1/make_knock/{roomId}/{userId}`
|
||||||
|
|
||||||
|
Asks the receiving server to return information that the sending server will need to prepare a knock
|
||||||
|
event to get into the room.
|
||||||
|
|
||||||
|
Request format:
|
||||||
|
|
||||||
|
| Parameter | Type | Description |
|
||||||
|
|-----------|------|-------------|
|
||||||
|
| Path parameters:
|
||||||
|
| roomId | string | Required. The room ID that should receive the knock.
|
||||||
|
| userId | string | Required. The user ID the knock event will be for.
|
||||||
|
| Query Parameters:
|
||||||
|
| ver | [string] | The room versions the sending server has support for. Defaults to `[1]`.
|
||||||
|
|
||||||
|
Response Format:
|
||||||
|
|
||||||
|
| Parameter | Type | Description |
|
||||||
|
|-----------|------|-------------|
|
||||||
|
| room_version | string | The version of the room where the server is trying to knock.
|
||||||
|
| event | Event Template | An unsigned template event. May differ between room versions.
|
||||||
|
|
||||||
|
#### Responses
|
||||||
|
##### Status code 200:
|
||||||
|
Returns a template to be used to knock rooms. May depend on room version.
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
|
"room_version": "2",
|
||||||
"event": {
|
"event": {
|
||||||
"sender": "@alice:example.org",
|
|
||||||
"origin": "example.org",
|
|
||||||
"origin_server_ts": 1234567890,
|
|
||||||
"type": "m.room.member",
|
"type": "m.room.member",
|
||||||
"state_key": "@alice:example.org",
|
"room_id": "!somewhere:example.org",
|
||||||
"content": {
|
"content": {
|
||||||
"membership": "knock",
|
"membership": "knock"
|
||||||
"displayname": "Alice",
|
},
|
||||||
"avatar_url": "mxc://example.org/avatar",
|
"state_key": "@someone:example.org",
|
||||||
"reason": "I want to join this room as I really love foxes!"
|
"origin": "example.org",
|
||||||
}
|
"origin_server_ts": 1549041175876,
|
||||||
|
"sender": "@someone:example.org"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Status code 400:
|
##### Status code 400:
|
||||||
This request was invalid, e.g. bad JSON. Example reply:
|
This request was invalid, e.g. bad JSON. Example reply:
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"errcode": "M_UNKNOWN",
|
"errcode": "M_INCOMPATIBLE_ROOM_VERSION",
|
||||||
"error": "An unknown error occurred"}
|
"error": "Your homeserver does not support the features required to join this room",
|
||||||
|
"room_version": "3"
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Status code 403:
|
### `PUT /_matrix/federation/v1/send_knock/{roomId}/{eventId}`
|
||||||
The user wasn't allowed to knock. Error reply:
|
Submits a signed knock event to the resident server for it to accept into the room's graph. Note
|
||||||
```json
|
that event format may differ between room versions.
|
||||||
|
|
||||||
|
Request format:
|
||||||
|
|
||||||
|
| Parameter | Type | Description |
|
||||||
|
|-----------|------|-------------|
|
||||||
|
| Path parameters:
|
||||||
|
| roomId | string | Required. The room ID that should receive the knock.
|
||||||
|
| eventId | string | Required. The event ID for the knock event.
|
||||||
|
|
||||||
|
The JSON body is expected to be the full event.
|
||||||
|
|
||||||
|
Response Format:
|
||||||
|
|
||||||
|
| Parameter | Type | Description |
|
||||||
|
|-----------|------|-------------|
|
||||||
|
| <body> | [integer, Empty Object] |
|
||||||
|
|
||||||
|
A request could look as follows:
|
||||||
|
```
|
||||||
|
PUT /_matrix/federation/v1/send_knock/%21abc123%3Amatrix.org/%24abc123%3Aexample.org HTTP/1.1
|
||||||
|
Content-Type: application/json
|
||||||
|
|
||||||
{
|
{
|
||||||
"errcode": "M_FORBIDDEN",
|
"sender": "@someone:example.org",
|
||||||
"error": "The user isn't allowed to knock in this room."
|
"origin": "matrix.org",
|
||||||
|
"origin_server_ts": 1234567890,
|
||||||
|
"type": "m.room.member",
|
||||||
|
"state_key": "@someone:example.org",
|
||||||
|
"content": {
|
||||||
|
"membership": "knock",
|
||||||
|
"displayname": "Alice",
|
||||||
|
"avatar_url": "mxc://example.org/avatar",
|
||||||
|
"reason": "I want to join this room as I really love foxes!"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Response:
|
||||||
|
##### Status code 200:
|
||||||
|
The event was successfully accepted into the graph by the receiving homeserver.
|
||||||
|
```json
|
||||||
|
[
|
||||||
|
200,
|
||||||
|
{}
|
||||||
|
]
|
||||||
|
```
|
||||||
|
|
||||||
# Potential issues
|
# Potential issues
|
||||||
This new feature would allow users to spam rooms that they don't partake in. That is why this proposal
|
This new feature would allow users to spam rooms that they don't partake in. That is why this proposal
|
||||||
adds both the new join rule and the new power level, in order to allow room admins to mitigate such
|
adds both the new join rule and the new power level, in order to allow room admins to mitigate such
|
||||||
|
|
@ -179,5 +242,10 @@ As for the join rule "invite", instead the join rule "knock" could be introduced
|
||||||
is like "invite" only that people can also knock. The difference is for existing rooms: With this
|
is like "invite" only that people can also knock. The difference is for existing rooms: With this
|
||||||
proposal people can knock in existing "invite" rooms, with the alternative suggestion they can't.
|
proposal people can knock in existing "invite" rooms, with the alternative suggestion they can't.
|
||||||
|
|
||||||
|
The two endpoints for the client-server API seem redundant, this MSC followed how JOIN is working
|
||||||
|
currently: One "proper" endpoint (`/rooms/{roomId}/join`) and one to work properly over federation
|
||||||
|
(`/join/{roomIdOrAlias}`). They could both be merged into one, however, as that would also affect
|
||||||
|
the join endpoint it seems out-of-scope for this MSC.
|
||||||
|
|
||||||
# Security considerations
|
# Security considerations
|
||||||
None. This doesn't allow users access to a room in any way.
|
None. This doesn't allow users access to a room in any way.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue