mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-03-11 14:04:10 +01:00
Merge branch 'main' into as-meta-schema
This commit is contained in:
commit
7506e9ab89
21
.github/workflows/main.yml
vendored
21
.github/workflows/main.yml
vendored
|
|
@ -2,6 +2,7 @@ name: "Spec"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
HUGO_VERSION: 0.139.0
|
HUGO_VERSION: 0.139.0
|
||||||
|
PYTHON_VERSION: 3.13
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
@ -40,7 +41,7 @@ jobs:
|
||||||
- name: "➕ Setup Python"
|
- name: "➕ Setup Python"
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.9'
|
python-version: ${{ env.PYTHON_VERSION }}
|
||||||
cache: 'pip'
|
cache: 'pip'
|
||||||
cache-dependency-path: scripts/requirements.txt
|
cache-dependency-path: scripts/requirements.txt
|
||||||
- name: "➕ Install dependencies"
|
- name: "➕ Install dependencies"
|
||||||
|
|
@ -59,7 +60,7 @@ jobs:
|
||||||
- name: "➕ Setup Python"
|
- name: "➕ Setup Python"
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.9'
|
python-version: ${{ env.PYTHON_VERSION }}
|
||||||
cache: 'pip'
|
cache: 'pip'
|
||||||
cache-dependency-path: scripts/requirements.txt
|
cache-dependency-path: scripts/requirements.txt
|
||||||
- name: "➕ Install dependencies"
|
- name: "➕ Install dependencies"
|
||||||
|
|
@ -78,7 +79,7 @@ jobs:
|
||||||
- name: "➕ Setup Python"
|
- name: "➕ Setup Python"
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.9'
|
python-version: ${{ env.PYTHON_VERSION }}
|
||||||
cache: 'pip'
|
cache: 'pip'
|
||||||
cache-dependency-path: scripts/requirements.txt
|
cache-dependency-path: scripts/requirements.txt
|
||||||
- name: "➕ Install dependencies"
|
- name: "➕ Install dependencies"
|
||||||
|
|
@ -120,7 +121,7 @@ jobs:
|
||||||
- name: "➕ Setup Python"
|
- name: "➕ Setup Python"
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.9'
|
python-version: ${{ env.PYTHON_VERSION }}
|
||||||
cache: 'pip'
|
cache: 'pip'
|
||||||
cache-dependency-path: scripts/requirements.txt
|
cache-dependency-path: scripts/requirements.txt
|
||||||
- name: "➕ Install dependencies"
|
- name: "➕ Install dependencies"
|
||||||
|
|
@ -154,6 +155,11 @@ jobs:
|
||||||
--api server-server \
|
--api server-server \
|
||||||
-r "$RELEASE" \
|
-r "$RELEASE" \
|
||||||
-o spec/server-server-api/api.json
|
-o spec/server-server-api/api.json
|
||||||
|
scripts/dump-openapi.py \
|
||||||
|
--base-url "https://spec.matrix.org${{ needs.calculate-baseurl.outputs.baseURL }}" \
|
||||||
|
--api identity \
|
||||||
|
-r "$RELEASE" \
|
||||||
|
-o spec/identity-service-api/api.json
|
||||||
tar -czf openapi.tar.gz spec
|
tar -czf openapi.tar.gz spec
|
||||||
- name: "📤 Artifact upload"
|
- name: "📤 Artifact upload"
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
@ -172,7 +178,7 @@ jobs:
|
||||||
- name: "➕ Setup Python"
|
- name: "➕ Setup Python"
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.9'
|
python-version: ${{ env.PYTHON_VERSION }}
|
||||||
- name: "➕ Install towncrier"
|
- name: "➕ Install towncrier"
|
||||||
run: "pip install 'towncrier'"
|
run: "pip install 'towncrier'"
|
||||||
- name: "Generate changelog"
|
- name: "Generate changelog"
|
||||||
|
|
@ -283,10 +289,11 @@ jobs:
|
||||||
npm i
|
npm i
|
||||||
npm run get-proposals
|
npm run get-proposals
|
||||||
- name: "⚙️ hugo"
|
- name: "⚙️ hugo"
|
||||||
|
env:
|
||||||
|
HUGO_PARAMS_VERSION_STATUS: "historical"
|
||||||
# Create a baseURL like `/v1.2` out of the `v1.2` tag
|
# Create a baseURL like `/v1.2` out of the `v1.2` tag
|
||||||
run: |
|
run: |
|
||||||
echo -e '[params.version]\nstatus="historical"' > historical.toml
|
hugo --baseURL "/${GITHUB_REF/refs\/tags\//}" -d "spec"
|
||||||
hugo --config config.toml,historical.toml --baseURL "/${GITHUB_REF/refs\/tags\//}" -d "spec"
|
|
||||||
|
|
||||||
- name: "📥 Spec definition download"
|
- name: "📥 Spec definition download"
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
|
|
|
||||||
|
|
@ -316,13 +316,19 @@ Custom SCSS for the Matrix spec
|
||||||
h2 {
|
h2 {
|
||||||
font-weight: $font-weight-bold;
|
font-weight: $font-weight-bold;
|
||||||
font-size: 1.3rem;
|
font-size: 1.3rem;
|
||||||
margin: 3rem 0 .5rem 0;
|
margin: 1.5rem 0 1rem 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
font-weight: $font-weight-bold;
|
font-weight: $font-weight-bold;
|
||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
margin: 1.5rem 0 .75rem 0;
|
margin: 1.5rem 0 1rem 0;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Reduce top margin of h3 if previous sibling is a h2 */
|
||||||
|
h2 + h3 {
|
||||||
|
margin-top: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
|
|
@ -367,11 +373,6 @@ Custom SCSS for the Matrix spec
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// add some space between two tables when they are right next to each other
|
|
||||||
& + table {
|
|
||||||
margin-top: 4rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
caption {
|
caption {
|
||||||
caption-side: top;
|
caption-side: top;
|
||||||
color: $dark;
|
color: $dark;
|
||||||
|
|
@ -443,6 +444,17 @@ Custom SCSS for the Matrix spec
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Have consistent spacing around tables and examples */
|
||||||
|
table, .highlight {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
|
||||||
|
/* We don't need the margin on the last child of the .rendered-data block */
|
||||||
|
&:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
border: 0;
|
border: 0;
|
||||||
border-left: solid 5px $secondary;
|
border-left: solid 5px $secondary;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Minor fixes to JSON schemas.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Clarify that `format` is required if `formatted_body` is specified.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
The `latest_event` in an aggregated set of thread events uses the same format as the event itself.
|
||||||
1
changelogs/client_server/newsfragments/2175.feature
Normal file
1
changelogs/client_server/newsfragments/2175.feature
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Add `format` query parameter to `GET /state/{eventType}/{stateKey}` to allow fetching metadata of a specific state event.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Fix various typos throughout the specification.
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Minor fixes to JSON schemas.
|
||||||
1
changelogs/client_server/newsfragments/2187.feature
Normal file
1
changelogs/client_server/newsfragments/2187.feature
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Add the `use_state_after` query parameter and `state_after` response property to `GET /sync`, as per [MSC4222](https://github.com/matrix-org/matrix-spec-proposals/issues/4222).
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Add [well-known funding manifest urls](https://floss.fund/funding-manifest/) to spec to authorise https://matrix.org/funding.json. Contributed by @HarHarLinks.
|
|
||||||
1
changelogs/internal/newsfragments/2157.feature
Normal file
1
changelogs/internal/newsfragments/2157.feature
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Add "placeholder MSC" process definition.
|
||||||
1
changelogs/internal/newsfragments/2172.clarification
Normal file
1
changelogs/internal/newsfragments/2172.clarification
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
GitHub actions are now building the OpenAPI `spec/identity-service-api/api.json` file.
|
||||||
1
changelogs/internal/newsfragments/2189.clarification
Normal file
1
changelogs/internal/newsfragments/2189.clarification
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Specify a correct spelling for "display name".
|
||||||
1
changelogs/internal/newsfragments/2190.clarification
Normal file
1
changelogs/internal/newsfragments/2190.clarification
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Clarify that clients should replace events with the most recent replacement by origin_server_ts.
|
||||||
|
|
@ -23,15 +23,15 @@ description = "Home of the Matrix specification for decentralised communication"
|
||||||
[menus]
|
[menus]
|
||||||
[[menus.main]]
|
[[menus.main]]
|
||||||
name = 'Foundation'
|
name = 'Foundation'
|
||||||
url = 'https://matrix.org/foundation/'
|
url = 'https://matrix.org/foundation/about/'
|
||||||
weight = 10
|
weight = 10
|
||||||
[[menus.main]]
|
[[menus.main]]
|
||||||
name = 'FAQs'
|
name = 'User Docs'
|
||||||
url = 'https://matrix.org/faq'
|
url = 'https://matrix.org/docs/'
|
||||||
weight = 20
|
weight = 20
|
||||||
[[menus.main]]
|
[[menus.main]]
|
||||||
name = 'Blog'
|
name = 'Blog'
|
||||||
url = 'https://matrix.org/blog/posts'
|
url = 'https://matrix.org/blog/'
|
||||||
weight = 30
|
weight = 30
|
||||||
|
|
||||||
[markup]
|
[markup]
|
||||||
|
|
@ -67,7 +67,7 @@ current_version_url = "https://spec.matrix.org/latest"
|
||||||
# The following is used when status = "stable", and is displayed in various UI elements on a released version
|
# The following is used when status = "stable", and is displayed in various UI elements on a released version
|
||||||
# of the spec.
|
# of the spec.
|
||||||
# major = "1"
|
# major = "1"
|
||||||
# minor = "14"
|
# minor = "15"
|
||||||
|
|
||||||
# User interface configuration
|
# User interface configuration
|
||||||
[params.ui]
|
[params.ui]
|
||||||
|
|
|
||||||
|
|
@ -492,10 +492,10 @@ via the query string). It is expected that the application service use
|
||||||
the transactions pushed to it to handle events rather than syncing with
|
the transactions pushed to it to handle events rather than syncing with
|
||||||
the user implied by `sender_localpart`.
|
the user implied by `sender_localpart`.
|
||||||
|
|
||||||
#### Application service room directories
|
#### Published room directories
|
||||||
|
|
||||||
Application services can maintain their own room directories for their
|
Application services can maintain their own published room directories for
|
||||||
defined third-party protocols. These room directories may be accessed by
|
their defined third-party protocols. These directories may be accessed by
|
||||||
clients through additional parameters on the `/publicRooms`
|
clients through additional parameters on the `/publicRooms`
|
||||||
client-server endpoint.
|
client-server endpoint.
|
||||||
|
|
||||||
|
|
|
||||||
97
content/changelog/v1.15.md
Normal file
97
content/changelog/v1.15.md
Normal file
|
|
@ -0,0 +1,97 @@
|
||||||
|
---
|
||||||
|
title: v1.15 Changelog
|
||||||
|
linkTitle: v1.15
|
||||||
|
type: docs
|
||||||
|
layout: changelog
|
||||||
|
outputs:
|
||||||
|
- html
|
||||||
|
- checklist
|
||||||
|
date: 2025-06-26
|
||||||
|
---
|
||||||
|
|
||||||
|
## Client-Server API
|
||||||
|
|
||||||
|
**New Endpoints**
|
||||||
|
|
||||||
|
- Add `GET /_matrix/client/v1/room_summary/{roomIdOrAlias}`, as per [MSC3266](https://github.com/matrix-org/matrix-spec-proposals/pull/3266). ([#2125](https://github.com/matrix-org/matrix-spec/issues/2125))
|
||||||
|
- Add `GET /_matrix/client/v1/auth_metadata`, as per [MSC2965](https://github.com/matrix-org/matrix-spec-proposals/pull/2965). ([#2147](https://github.com/matrix-org/matrix-spec/issues/2147))
|
||||||
|
|
||||||
|
**Backwards Compatible Changes**
|
||||||
|
|
||||||
|
- Add `m.topic` content block to enable rich text in `m.room.topic` events as per [MSC3765](https://github.com/matrix-org/matrix-spec-proposals/pull/3765). ([#2095](https://github.com/matrix-org/matrix-spec/issues/2095))
|
||||||
|
- Include device keys with Olm-encrypted events as per [MSC4147](https://github.com/matrix-org/matrix-spec-proposals/pull/4147). ([#2122](https://github.com/matrix-org/matrix-spec/issues/2122))
|
||||||
|
- Add `/_matrix/client/v1/room_summary/{roomIdOrAlias}` and extend `/_matrix/client/v1/rooms/{roomId}/hierarchy` with the new optional properties `allowed_room_ids`, `encryption` and `room_version` as per [MSC3266](https://github.com/matrix-org/matrix-spec-proposals/pull/3266). ([#2125](https://github.com/matrix-org/matrix-spec/issues/2125), [#2158](https://github.com/matrix-org/matrix-spec/issues/2158))
|
||||||
|
- Add the OAuth 2.0 based authentication API, as per [MSC3861](https://github.com/matrix-org/matrix-spec-proposals/pull/3861) and its sub-proposals. ([#2141](https://github.com/matrix-org/matrix-spec/issues/2141), [#2148](https://github.com/matrix-org/matrix-spec/issues/2148), [#2149](https://github.com/matrix-org/matrix-spec/issues/2149), [#2150](https://github.com/matrix-org/matrix-spec/issues/2150), [#2151](https://github.com/matrix-org/matrix-spec/issues/2151), [#2159](https://github.com/matrix-org/matrix-spec/issues/2159), [#2164](https://github.com/matrix-org/matrix-spec/issues/2164))
|
||||||
|
|
||||||
|
**Spec Clarifications**
|
||||||
|
|
||||||
|
- Clarify behaviour when the `topic` key of a `m.room.topic` event is absent, null, or empty. ([#2068](https://github.com/matrix-org/matrix-spec/issues/2068))
|
||||||
|
- Fix the example of the `GET /sync` endpoint and the `m.room.member` example used in several places. ([#2077](https://github.com/matrix-org/matrix-spec/issues/2077))
|
||||||
|
- Clarify the format of third-party invites, including the fact that identity server public keys can be encoded using standard or URL-safe base64. ([#2083](https://github.com/matrix-org/matrix-spec/issues/2083))
|
||||||
|
- "Public" rooms in profile look-ups are defined through their join rule and history visibility. ([#2101](https://github.com/matrix-org/matrix-spec/issues/2101))
|
||||||
|
- "Public" rooms in user directory queries are defined through their join rule and history visibility. ([#2102](https://github.com/matrix-org/matrix-spec/issues/2102))
|
||||||
|
- Rooms published in `/publicRooms` don't necessarily have `public` join rules or `world_readable` history visibility. ([#2104](https://github.com/matrix-org/matrix-spec/issues/2104))
|
||||||
|
- "Public" rooms with respect to call invites are defined through their join rule. ([#2106](https://github.com/matrix-org/matrix-spec/issues/2106))
|
||||||
|
- "Public" rooms have no specific meaning with respect to moderation policy lists. ([#2107](https://github.com/matrix-org/matrix-spec/issues/2107))
|
||||||
|
- "Public" rooms with respect to presence are defined through their join rule. ([#2108](https://github.com/matrix-org/matrix-spec/issues/2108))
|
||||||
|
- Spaces are subject to the same access mechanisms as rooms. ([#2109](https://github.com/matrix-org/matrix-spec/issues/2109))
|
||||||
|
- Fix various typos throughout the specification. ([#2121](https://github.com/matrix-org/matrix-spec/issues/2121), [#2144](https://github.com/matrix-org/matrix-spec/issues/2144))
|
||||||
|
- Clarify that Well-Known URIs are available on the server name's hostname. Contributed by @HarHarLinks. ([#2140](https://github.com/matrix-org/matrix-spec/issues/2140))
|
||||||
|
- Add missing fields in example for `ExportedSessionData`. ([#2154](https://github.com/matrix-org/matrix-spec/issues/2154))
|
||||||
|
|
||||||
|
|
||||||
|
## Server-Server API
|
||||||
|
|
||||||
|
**Backwards Compatible Changes**
|
||||||
|
|
||||||
|
- Add `m.topic` content block to enable rich text in `m.room.topic` events as per [MSC3765](https://github.com/matrix-org/matrix-spec-proposals/pull/3765). ([#2095](https://github.com/matrix-org/matrix-spec/issues/2095))
|
||||||
|
- Extend `/_matrix/federation/v1/hierarchy/{roomId}` with the new optional properties `encryption` and `room_version` as per [MSC3266](https://github.com/matrix-org/matrix-spec-proposals/pull/3266). ([#2125](https://github.com/matrix-org/matrix-spec/issues/2125))
|
||||||
|
|
||||||
|
**Spec Clarifications**
|
||||||
|
|
||||||
|
- Add a note to the invite endpoints that invites to local users may be received twice over federation if the homeserver is already in the room. ([#2067](https://github.com/matrix-org/matrix-spec/issues/2067))
|
||||||
|
- Clarify the format of third-party invites, including the fact that identity server public keys can be encoded using standard or URL-safe base64. ([#2083](https://github.com/matrix-org/matrix-spec/issues/2083))
|
||||||
|
- Clarify that auth event of `content.join_authorised_via_users_server` is only necessary for `m.room.member` with a `membership` of `join`. ([#2100](https://github.com/matrix-org/matrix-spec/issues/2100))
|
||||||
|
- Rooms published in `/publicRooms` don't necessarily have `public` join rules or `world_readable` history visibility. ([#2104](https://github.com/matrix-org/matrix-spec/issues/2104))
|
||||||
|
- Fix various typos throughout the specification. ([#2128](https://github.com/matrix-org/matrix-spec/issues/2128))
|
||||||
|
- Clarify that Well-Known URIs are available on the server name's hostname. Contributed by @HarHarLinks. ([#2140](https://github.com/matrix-org/matrix-spec/issues/2140))
|
||||||
|
|
||||||
|
|
||||||
|
## Application Service API
|
||||||
|
|
||||||
|
**Spec Clarifications**
|
||||||
|
|
||||||
|
- Clarify in the application service registration schema the `url: null` behaviour. ([#2130](https://github.com/matrix-org/matrix-spec/issues/2130))
|
||||||
|
|
||||||
|
|
||||||
|
## Identity Service API
|
||||||
|
|
||||||
|
**Spec Clarifications**
|
||||||
|
|
||||||
|
- Clarify that public keys can be encoded using standard or URL-safe base64. ([#2083](https://github.com/matrix-org/matrix-spec/issues/2083))
|
||||||
|
|
||||||
|
|
||||||
|
## Push Gateway API
|
||||||
|
|
||||||
|
No significant changes.
|
||||||
|
|
||||||
|
|
||||||
|
## Room Versions
|
||||||
|
|
||||||
|
No significant changes.
|
||||||
|
|
||||||
|
|
||||||
|
## Appendices
|
||||||
|
|
||||||
|
No significant changes.
|
||||||
|
|
||||||
|
|
||||||
|
## Internal Changes/Tooling
|
||||||
|
|
||||||
|
**Spec Clarifications**
|
||||||
|
|
||||||
|
- Adjust margins in rendered endpoints. ([#2081](https://github.com/matrix-org/matrix-spec/issues/2081))
|
||||||
|
- Replace Hugo shortcodes in OpenAPI output. ([#2088](https://github.com/matrix-org/matrix-spec/issues/2088))
|
||||||
|
- Add [well-known funding manifest urls](https://floss.fund/funding-manifest/) to spec to authorise https://matrix.org/funding.json. Contributed by @HarHarLinks. ([#2115](https://github.com/matrix-org/matrix-spec/issues/2115))
|
||||||
|
- Fix the historical info box when generating the historical spec in CI. ([#2123](https://github.com/matrix-org/matrix-spec/issues/2123))
|
||||||
|
- Update the header navigation menu with links to modern matrix.org. Contributed by @HarHarLinks. ([#2137](https://github.com/matrix-org/matrix-spec/issues/2137))
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -528,7 +528,7 @@ messages, Alice only sends one request event (an event with type
|
||||||
`m.room.message` with `msgtype: m.key.verification.request`, rather than an
|
`m.room.message` with `msgtype: m.key.verification.request`, rather than an
|
||||||
event with type `m.key.verification.request`), to the room. In addition, Alice
|
event with type `m.key.verification.request`), to the room. In addition, Alice
|
||||||
does not send an `m.key.verification.cancel` event to tell Bob's other devices
|
does not send an `m.key.verification.cancel` event to tell Bob's other devices
|
||||||
that the request as already been accepted; instead, when Bob's other devices
|
that the request has already been accepted; instead, when Bob's other devices
|
||||||
see his `m.key.verification.ready` event, they will know that the request has
|
see his `m.key.verification.ready` event, they will know that the request has
|
||||||
already been accepted, and that they should ignore the request.
|
already been accepted, and that they should ignore the request.
|
||||||
|
|
||||||
|
|
@ -1124,7 +1124,7 @@ The process between Alice and Bob verifying each other would be:
|
||||||
framework as described above.
|
framework as described above.
|
||||||
3. Alice's client displays a QR code that Bob is able to scan if Bob's client
|
3. Alice's client displays a QR code that Bob is able to scan if Bob's client
|
||||||
indicated the ability to scan, an option to scan Bob's QR code if her client
|
indicated the ability to scan, an option to scan Bob's QR code if her client
|
||||||
is able to scan. Bob's client prompts displays a QR code that Alice can
|
is able to scan. Bob's client displays a QR code that Alice can
|
||||||
scan if Alice's client indicated the ability to scan, and an option to scan
|
scan if Alice's client indicated the ability to scan, and an option to scan
|
||||||
Alice's QR code if his client is able to scan. The format for the QR code
|
Alice's QR code if his client is able to scan. The format for the QR code
|
||||||
is described below. Other options, like starting SAS Emoji verification,
|
is described below. Other options, like starting SAS Emoji verification,
|
||||||
|
|
@ -1512,40 +1512,11 @@ message.
|
||||||
|
|
||||||
The plaintext payload is of the form:
|
The plaintext payload is of the form:
|
||||||
|
|
||||||
```json
|
{{% definition path="api/client-server/definitions/olm_payload" %}}
|
||||||
{
|
|
||||||
"type": "<type of the plaintext event>",
|
|
||||||
"content": "<content for the plaintext event>",
|
|
||||||
"sender": "<sender_user_id>",
|
|
||||||
"recipient": "<recipient_user_id>",
|
|
||||||
"recipient_keys": {
|
|
||||||
"ed25519": "<our_ed25519_key>"
|
|
||||||
},
|
|
||||||
"keys": {
|
|
||||||
"ed25519": "<sender_ed25519_key>"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
The type and content of the plaintext message event are given in the
|
The type and content of the plaintext message event are given in the
|
||||||
payload.
|
payload.
|
||||||
|
|
||||||
Other properties are included in order to prevent an attacker from
|
|
||||||
publishing someone else's curve25519 keys as their own and subsequently
|
|
||||||
claiming to have sent messages which they didn't. `sender` must
|
|
||||||
correspond to the user who sent the event, `recipient` to the local
|
|
||||||
user, and `recipient_keys` to the local ed25519 key.
|
|
||||||
|
|
||||||
Clients must confirm that the `sender_key` property in the cleartext
|
|
||||||
`m.room.encrypted` event body, and the `keys.ed25519` property in the
|
|
||||||
decrypted plaintext, match the keys returned by
|
|
||||||
[`/keys/query`](#post_matrixclientv3keysquery) for
|
|
||||||
the given user. Clients must also verify the signature of the keys from the
|
|
||||||
`/keys/query` response. Without this check, a client cannot be sure that
|
|
||||||
the sender device owns the private part of the ed25519 key it claims to
|
|
||||||
have in the Olm payload. This is crucial when the ed25519 key corresponds
|
|
||||||
to a verified device.
|
|
||||||
|
|
||||||
If a client has multiple sessions established with another device, it
|
If a client has multiple sessions established with another device, it
|
||||||
should use the session from which it last received and successfully
|
should use the session from which it last received and successfully
|
||||||
decrypted a message. For these purposes, a session that has not received
|
decrypted a message. For these purposes, a session that has not received
|
||||||
|
|
@ -1555,6 +1526,68 @@ maximum number of olm sessions that it will maintain for each device,
|
||||||
and expiring sessions on a Least Recently Used basis. The maximum number
|
and expiring sessions on a Least Recently Used basis. The maximum number
|
||||||
of olm sessions maintained per device should be at least 4.
|
of olm sessions maintained per device should be at least 4.
|
||||||
|
|
||||||
|
###### Validation of incoming decrypted events
|
||||||
|
|
||||||
|
{{% changed-in v="1.15" %}} Existing checks made more explicit, and checks for `sender_device_keys` added.
|
||||||
|
|
||||||
|
After decrypting an incoming encrypted event, clients MUST apply the
|
||||||
|
following checks:
|
||||||
|
|
||||||
|
1. The `sender` property in the decrypted content must match the
|
||||||
|
`sender` of the event.
|
||||||
|
2. The `keys.ed25519` property in the decrypted content must match
|
||||||
|
the `sender_key` property in the cleartext `m.room.encrypted`
|
||||||
|
event body.
|
||||||
|
3. The `recipient` property in the decrypted content must match
|
||||||
|
the user ID of the local user.
|
||||||
|
4. The `recipient_keys.ed25519` property in the decrypted content
|
||||||
|
must match the client device's [Ed25519 signing key](#device-keys).
|
||||||
|
5. Where `sender_device_keys` is present in the decrypted content:
|
||||||
|
1. `sender_device_keys.user_id` must also match the `sender`
|
||||||
|
of the event.
|
||||||
|
2. `sender_device_keys.keys.ed25519:<device_id>` must also match
|
||||||
|
the `sender_key` property in the cleartext `m.room.encrypted`
|
||||||
|
event body.
|
||||||
|
3. `sender_device_keys.keys.curve25519:<device_id>` must match
|
||||||
|
the Curve25519 key used to establish the Olm session.
|
||||||
|
4. The `sender_device_keys` structure must have a valid signature
|
||||||
|
from the key with ID `ed25519:<device_id>` (i.e., the sending
|
||||||
|
device's Ed25519 key).
|
||||||
|
|
||||||
|
Any event that does not comply with these checks MUST be discarded.
|
||||||
|
|
||||||
|
###### Verification of the sending user for incoming events
|
||||||
|
|
||||||
|
{{% added-in v="1.15" %}}
|
||||||
|
|
||||||
|
In addition, for each Olm session, clients MUST verify that the
|
||||||
|
Curve25519 key used to establish the Olm session does indeed belong
|
||||||
|
to the claimed `sender`. This requires a signed "device keys" structure
|
||||||
|
for that Curve25519 key, which can be obtained in one of two ways:
|
||||||
|
|
||||||
|
1. An Olm message may be received with a `sender_device_keys` property
|
||||||
|
in the decrypted content.
|
||||||
|
2. The keys are returned via a [`/keys/query`](#post_matrixclientv3keysquery)
|
||||||
|
request. Note that both the Curve25519 key **and** the Ed25519 key in
|
||||||
|
the returned device keys structure must match those used in an
|
||||||
|
Olm-encrypted event as above. (In particular, the Ed25519 key must
|
||||||
|
be present in the **encrypted** content of an Olm-encrypted event
|
||||||
|
to prevent an attacker from claiming another user's Curve25519 key
|
||||||
|
as their own.)
|
||||||
|
|
||||||
|
Ownership of the Curve25519 key is then established in one of two ways:
|
||||||
|
|
||||||
|
1. Via [cross-signing](#cross-signing). For this to be sufficient, the
|
||||||
|
device keys structure must be signed by the sender's self-signing key,
|
||||||
|
and that self-signing key must itself have been validated (either via
|
||||||
|
[explicit verification](#device-verification) or a "trust on first use" (TOFU) mechanism).
|
||||||
|
2. Via explicit verification of the device's Ed25519 signing key, as
|
||||||
|
contained in the device keys structure. This is no longer recommended.
|
||||||
|
|
||||||
|
A failure to complete these verifications does not necessarily mean that
|
||||||
|
the session is bogus; however it is the case that there is no proof that
|
||||||
|
the claimed sender is accurate, and the user should be warned accordingly.
|
||||||
|
|
||||||
###### Recovering from undecryptable messages
|
###### Recovering from undecryptable messages
|
||||||
|
|
||||||
Occasionally messages may be undecryptable by clients due to a variety
|
Occasionally messages may be undecryptable by clients due to a variety
|
||||||
|
|
|
||||||
|
|
@ -195,7 +195,7 @@ given event (for example, if an event is edited multiple times). These should
|
||||||
be [aggregated](#aggregations-of-child-events) by the homeserver.
|
be [aggregated](#aggregations-of-child-events) by the homeserver.
|
||||||
|
|
||||||
The aggregation format of `m.replace` relationships gives the **most recent**
|
The aggregation format of `m.replace` relationships gives the **most recent**
|
||||||
replacement event, formatted [as normal](#room-event-format).
|
valid replacement event, formatted [as normal](#room-event-format).
|
||||||
|
|
||||||
The most recent event is determined by comparing `origin_server_ts`; if two or
|
The most recent event is determined by comparing `origin_server_ts`; if two or
|
||||||
more replacement events have identical `origin_server_ts`, the event with the
|
more replacement events have identical `origin_server_ts`, the event with the
|
||||||
|
|
@ -268,6 +268,11 @@ Client authors are reminded to take note of the requirements for [Validity of
|
||||||
replacement events](#validity-of-replacement-events), and to ignore any
|
replacement events](#validity-of-replacement-events), and to ignore any
|
||||||
invalid replacement events that are received.
|
invalid replacement events that are received.
|
||||||
|
|
||||||
|
Clients should render the content of the **most recent** valid replacement event. The
|
||||||
|
most recent event is determined by comparing `origin_server_ts`; if two or more
|
||||||
|
replacement events have identical `origin_server_ts`, the event with the
|
||||||
|
lexicographically largest `event_id` is treated as more recent.
|
||||||
|
|
||||||
##### Permalinks
|
##### Permalinks
|
||||||
|
|
||||||
When creating [links](/appendices/#uris) to events (also known as permalinks),
|
When creating [links](/appendices/#uris) to events (also known as permalinks),
|
||||||
|
|
@ -364,7 +369,7 @@ property under `m.new_content`.
|
||||||
|
|
||||||
A particular constraint applies to events which replace a [reply](#rich-replies):
|
A particular constraint applies to events which replace a [reply](#rich-replies):
|
||||||
in contrast to the original reply, there should be no `m.in_reply_to` property
|
in contrast to the original reply, there should be no `m.in_reply_to` property
|
||||||
in the the `m.relates_to` object, since it would be redundant (see
|
in the `m.relates_to` object, since it would be redundant (see
|
||||||
[Applying `m.new_content`](#applying-mnew_content) above, which notes that the
|
[Applying `m.new_content`](#applying-mnew_content) above, which notes that the
|
||||||
original event's `m.relates_to` is preserved), as well as being contrary to the
|
original event's `m.relates_to` is preserved), as well as being contrary to the
|
||||||
spirit of the event relationships mechanism which expects only one "parent" per
|
spirit of the event relationships mechanism which expects only one "parent" per
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,9 @@ the entity making the decisions on filtering is best positioned to
|
||||||
interpret the rules how it sees fit.
|
interpret the rules how it sees fit.
|
||||||
|
|
||||||
Moderation policy lists are stored as room state events. There are no
|
Moderation policy lists are stored as room state events. There are no
|
||||||
restrictions on how the rooms can be configured (they could be public,
|
restrictions on how the rooms can be configured in terms of
|
||||||
private, encrypted, etc).
|
[join rules](#mroomjoin_rules), [history visibility](#room-history-visibility),
|
||||||
|
encryption, etc.
|
||||||
|
|
||||||
There are currently 3 kinds of entities which can be affected by rules:
|
There are currently 3 kinds of entities which can be affected by rules:
|
||||||
`user`, `server`, and `room`. All 3 are described with
|
`user`, `server`, and `room`. All 3 are described with
|
||||||
|
|
|
||||||
|
|
@ -68,5 +68,7 @@ will cause the server to automatically set their presence to `online`.
|
||||||
|
|
||||||
#### Security considerations
|
#### Security considerations
|
||||||
|
|
||||||
Presence information is shared with all users who share a room with the
|
Presence information is published to all users who share a room with the
|
||||||
target user. In large public rooms this could be undesirable.
|
target user. If the target user is a member of a room with a `public`
|
||||||
|
[join rule](#mroomjoin_rules), any other user in the federation is
|
||||||
|
able to gain access to the target user's presence. This could be undesirable.
|
||||||
|
|
|
||||||
|
|
@ -26,9 +26,10 @@ on certain keys of certain event types.
|
||||||
|
|
||||||
The supported keys to search over are:
|
The supported keys to search over are:
|
||||||
|
|
||||||
- `content.body` in `m.room.message`
|
- `content.body` in [`m.room.message`](/client-server-api/#mroommessage)
|
||||||
- `content.name` in `m.room.name`
|
- `content.name` in [`m.room.name`](/client-server-api/#mroomname)
|
||||||
- `content.topic` in `m.room.topic`
|
- In [`m.room.topic`](/client-server-api/#mroomtopic), `content.topic`
|
||||||
|
as well as the `body` of the `text/plain` representation in `content['m.topic']`.
|
||||||
|
|
||||||
The search will *not* include rooms that are end to end encrypted.
|
The search will *not* include rooms that are end to end encrypted.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
{{% added-in v="1.2" %}}
|
{{% added-in v="1.2" %}}
|
||||||
|
|
||||||
Often used to group rooms of similar subject matter (such as a public "Official
|
Often used to group rooms of similar subject matter (such as an "Official
|
||||||
matrix.org rooms" space or personal "Work stuff" space), spaces are a way to
|
matrix.org rooms" space or a "Work stuff" space), spaces are a way to
|
||||||
organise rooms while being represented as rooms themselves.
|
organise rooms while being represented as rooms themselves.
|
||||||
|
|
||||||
A space is defined by the [`m.space` room type](#types), making it known as a
|
A space is defined by the [`m.space` room type](#types), making it known as a
|
||||||
|
|
@ -18,11 +18,11 @@ In the default power level structure, this would be `100`. Clients might wish to
|
||||||
go a step further and explicitly ignore notification counts on space-rooms.
|
go a step further and explicitly ignore notification counts on space-rooms.
|
||||||
|
|
||||||
Membership of a space is defined and controlled by the existing mechanisms which
|
Membership of a space is defined and controlled by the existing mechanisms which
|
||||||
govern a room: [`m.room.member`](#mroommember), [`m.room.history_visibility`](#mroomhistory_visibility),
|
govern a room: [`m.room.member`](/client-server-api#mroommember), [`m.room.history_visibility`](/client-server-api#mroomhistory_visibility),
|
||||||
and [`m.room.join_rules`](#mroomjoin_rules). Public spaces are encouraged to have
|
and [`m.room.join_rules`](/client-server-api#mroomjoin_rules). Canonical aliases and invites, including
|
||||||
a similar setup to public rooms: `world_readable` history visibility, published
|
third-party invites, still work just as they do in normal rooms as well. Furthermore,
|
||||||
canonical alias, and suitably public `join_rule`. Invites, including third-party
|
spaces can also be published in the [room directory](/client-server-api#published-room-directory) to make them
|
||||||
invites, still work just as they do in normal rooms as well.
|
discoverable.
|
||||||
|
|
||||||
All other aspects of regular rooms are additionally carried over, such as the
|
All other aspects of regular rooms are additionally carried over, such as the
|
||||||
ability to set arbitrary state events, hold room account data, etc. Spaces are
|
ability to set arbitrary state events, hold room account data, etc. Spaces are
|
||||||
|
|
@ -87,10 +87,9 @@ the state of `#space:example.org` would consist of:
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
No state events in the child rooms themselves would be required (though they
|
No state events in the child rooms themselves would be required (though they can also
|
||||||
can also be present). This allows for users
|
be present). This allows for users to define spaces without needing explicit permission
|
||||||
to define personal/private spaces to organise their own rooms without needing explicit
|
from the room moderators/admins.
|
||||||
permission from the room moderators/admins.
|
|
||||||
|
|
||||||
Child rooms can be removed from a space by omitting the `via` key of `content` on the
|
Child rooms can be removed from a space by omitting the `via` key of `content` on the
|
||||||
relevant state event, such as through redaction or otherwise clearing the `content`.
|
relevant state event, such as through redaction or otherwise clearing the `content`.
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,10 @@ allow users to log into applications via a single web-based
|
||||||
authentication portal. Examples include OpenID Connect, "Central
|
authentication portal. Examples include OpenID Connect, "Central
|
||||||
Authentication Service" (CAS) and SAML.
|
Authentication Service" (CAS) and SAML.
|
||||||
|
|
||||||
This module allows a Matrix homeserver to delegate user authentication
|
This module allows a Matrix homeserver that supports the [legacy authentication
|
||||||
to an external authentication server supporting one of these protocols.
|
API](#legacy-api) to delegate user authentication to an external authentication
|
||||||
In this process, there are three systems involved:
|
server supporting one of these protocols. In this process, there are three
|
||||||
|
systems involved:
|
||||||
|
|
||||||
- A Matrix client, using the APIs defined in this specification, which
|
- A Matrix client, using the APIs defined in this specification, which
|
||||||
is seeking to authenticate a user to a Matrix homeserver.
|
is seeking to authenticate a user to a Matrix homeserver.
|
||||||
|
|
@ -24,7 +25,7 @@ used to communicate with the authentication server. Different Matrix
|
||||||
homeserver implementations might support different SSO protocols.
|
homeserver implementations might support different SSO protocols.
|
||||||
|
|
||||||
Clients and homeservers implementing the SSO flow will need to consider
|
Clients and homeservers implementing the SSO flow will need to consider
|
||||||
both [login](#login) and [user-interactive authentication](#user-interactive-authentication-api). The flow is
|
both [login](#legacy-login) and [user-interactive authentication](#user-interactive-authentication-api). The flow is
|
||||||
similar in both cases, but there are slight differences.
|
similar in both cases, but there are slight differences.
|
||||||
|
|
||||||
Typically, SSO systems require a single "callback" URI to be configured
|
Typically, SSO systems require a single "callback" URI to be configured
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,8 @@ This module adds in support for inviting new members to a room where
|
||||||
their Matrix user ID is not known, instead addressing them by a third-party
|
their Matrix user ID is not known, instead addressing them by a third-party
|
||||||
identifier such as an email address. There are two flows here; one
|
identifier such as an email address. There are two flows here; one
|
||||||
if a Matrix user ID is known for the third-party identifier, and one if
|
if a Matrix user ID is known for the third-party identifier, and one if
|
||||||
not. Either way, the client calls [`/invite`](#post_matrixclientv3roomsroomidinvite) with the details of the
|
not. Either way, the client calls [`/invite`](#thirdparty_post_matrixclientv3roomsroomidinvite)
|
||||||
third-party identifier.
|
with the details of the third-party identifier.
|
||||||
|
|
||||||
The homeserver asks the identity server whether a Matrix user ID is
|
The homeserver asks the identity server whether a Matrix user ID is
|
||||||
known for that identifier:
|
known for that identifier:
|
||||||
|
|
@ -37,10 +37,12 @@ A client asks a server to invite a user by their third-party identifier.
|
||||||
|
|
||||||
#### Server behaviour
|
#### Server behaviour
|
||||||
|
|
||||||
Upon receipt of an [`/invite`](#post_matrixclientv3roomsroomidinvite), the server is expected to look up the
|
Upon receipt of an [`/invite`](#thirdparty_post_matrixclientv3roomsroomidinvite),
|
||||||
third-party identifier with the provided identity server. If the lookup
|
the server is expected to look up the third-party identifier with the provided
|
||||||
yields a result for a Matrix User ID then the normal invite process can
|
identity server by making a call to [`/_matrix/identity/v2/lookup`](/identity-service-api/#post_matrixidentityv2lookup).
|
||||||
be initiated. This process ends up looking like this:
|
If the lookup yields a result for a Matrix User ID then the normal [invite
|
||||||
|
process](/server-server-api/#inviting-to-a-room) can be initiated. This process
|
||||||
|
ends up looking like this:
|
||||||
|
|
||||||
```
|
```
|
||||||
+---------+ +-------------+ +-----------------+
|
+---------+ +-------------+ +-----------------+
|
||||||
|
|
@ -66,10 +68,11 @@ be initiated. This process ends up looking like this:
|
||||||
| | |
|
| | |
|
||||||
```
|
```
|
||||||
|
|
||||||
However, if the lookup does not yield a bound User ID, the homeserver
|
However, if the lookup does not yield a bound User ID, the homeserver must store
|
||||||
must store the invite on the identity server and emit a valid
|
the invite on the identity server with a call to
|
||||||
`m.room.third_party_invite` event to the room. This process ends up
|
[`/_matrix/identity/v2/store-invite`](/identity-service-api/#post_matrixidentityv2store-invite)
|
||||||
looking like this:
|
and emit a valid [`m.room.third_party_invite`](#mroomthird_party_invite) event
|
||||||
|
to the room. This process ends up looking like this:
|
||||||
|
|
||||||
```
|
```
|
||||||
+---------+ +-------------+ +-----------------+
|
+---------+ +-------------+ +-----------------+
|
||||||
|
|
@ -101,15 +104,18 @@ looking like this:
|
||||||
| | |
|
| | |
|
||||||
```
|
```
|
||||||
|
|
||||||
All homeservers MUST verify the signature in the event's
|
The third-party user will then need to verify their identity, which results in a
|
||||||
`content.third_party_invite.signed` object.
|
request to [`/_matrix/federation/v1/3pid/onbind`](/server-server-api/#put_matrixfederationv13pidonbind)
|
||||||
|
from the identity server to the homeserver that bound the third-party identifier
|
||||||
|
to a user. The homeserver then exchanges the `m.room.third_party_invite` event
|
||||||
|
in the room for a complete [`m.room.member`](#mroommember) event with
|
||||||
|
`content.membership: invite` and a `content.third_party_invite` property for the
|
||||||
|
user that has bound the third-party identifier. If the invitee is on a different
|
||||||
|
homeserver than the inviting user, the invitee's homeserver makes a request to
|
||||||
|
[`/_matrix/federation/v1/exchange_third_party_invite/{roomId}`](/server-server-api/#put_matrixfederationv1exchange_third_party_inviteroomid).
|
||||||
|
|
||||||
The third-party user will then need to verify their identity, which
|
All homeservers MUST verify the signature in the `m.room.member` event's
|
||||||
results in a call from the identity server to the homeserver that bound
|
`content.third_party_invite.signed` object.
|
||||||
the third-party identifier to a user. The homeserver then exchanges the
|
|
||||||
`m.room.third_party_invite` event in the room for a complete
|
|
||||||
`m.room.member` event for `membership: invite` for the user that has
|
|
||||||
bound the third-party identifier.
|
|
||||||
|
|
||||||
If a homeserver is joining a room for the first time because of an
|
If a homeserver is joining a room for the first time because of an
|
||||||
`m.room.third_party_invite`, the server which is already participating
|
`m.room.third_party_invite`, the server which is already participating
|
||||||
|
|
@ -193,8 +199,8 @@ at any time - the completion is not shown in the diagram.
|
||||||
|
|
||||||
H1 MUST verify the request from H3 to ensure the `signed` property is
|
H1 MUST verify the request from H3 to ensure the `signed` property is
|
||||||
correct as well as the `key_validity_url` as still being valid. This is
|
correct as well as the `key_validity_url` as still being valid. This is
|
||||||
done by making a request to the [identity server
|
done by making a request to the identity server's
|
||||||
/isvalid](/identity-service-api/#get_matrixidentityv2pubkeyisvalid)
|
[`/pubkey/isvalid`](/identity-service-api/#get_matrixidentityv2pubkeyisvalid)
|
||||||
endpoint, using the provided URL rather than constructing a new one. The
|
endpoint, using the provided URL rather than constructing a new one. The
|
||||||
query string and response for the provided URL must match the Identity
|
query string and response for the provided URL must match the Identity
|
||||||
Service Specification.
|
Service Specification.
|
||||||
|
|
|
||||||
|
|
@ -185,7 +185,7 @@ included under the `m.relations` property in `unsigned` for the thread root. For
|
||||||
```
|
```
|
||||||
|
|
||||||
`latest_event` is the most recent event (topologically to the server) in the thread sent by an
|
`latest_event` is the most recent event (topologically to the server) in the thread sent by an
|
||||||
un-[ignored user](#ignoring-users).
|
un-[ignored user](#ignoring-users). It should be serialized in the same form as the event itself.
|
||||||
|
|
||||||
Note that, as in the example above, child events of the `latest_event` should
|
Note that, as in the example above, child events of the `latest_event` should
|
||||||
themselves be aggregated and included under `m.relations` for that event. The
|
themselves be aggregated and included under `m.relations` for that event. The
|
||||||
|
|
|
||||||
|
|
@ -202,11 +202,13 @@ specific user, and should be set to the Matrix user ID of that user. Invites
|
||||||
without an `invitee` field are defined to be intended for any member of the
|
without an `invitee` field are defined to be intended for any member of the
|
||||||
room other than the sender of the event.
|
room other than the sender of the event.
|
||||||
|
|
||||||
Clients should consider an incoming call if they see a non-expired invite event where the `invitee` field is either
|
Clients should consider an incoming call if they see a non-expired invite event
|
||||||
absent or equal to their user's Matrix ID, however they should evaluate whether or not to ring based on their
|
where the `invitee` field is either absent or equal to their user's Matrix ID.
|
||||||
user's trust relationship with the callers and/or where the call was placed. As a starting point, it is
|
They should, however, evaluate whether or not to ring based on their user's trust
|
||||||
suggested that clients ignore call invites from users in public rooms. It is strongly recommended that
|
relationship with the callers and/or where the call was placed. As a starting
|
||||||
when clients do not ring for an incoming call invite, they still display the call invite in the room and
|
point, it is RECOMMENDED that clients ignore call invites in rooms with a
|
||||||
|
[join rule](#mroomjoin_rules) of `public`. When clients suppress ringing for an
|
||||||
|
incoming call invite, they SHOULD still display the call invite in the room and
|
||||||
annotate that it was ignored.
|
annotate that it was ignored.
|
||||||
|
|
||||||
##### Glare
|
##### Glare
|
||||||
|
|
|
||||||
|
|
@ -185,6 +185,10 @@ is as follows:
|
||||||
- Take care in creating your proposal. Specify your intended
|
- Take care in creating your proposal. Specify your intended
|
||||||
changes, and give reasoning to back them up. Changes without
|
changes, and give reasoning to back them up. Changes without
|
||||||
justification will likely be poorly received by the community.
|
justification will likely be poorly received by the community.
|
||||||
|
- At the time of creating your draft you will not yet know the PR number, so you
|
||||||
|
should use a placeholder number to name your file and edit that
|
||||||
|
after PR submission. The suggested steps are described in
|
||||||
|
detail [in the proposals guide](https://github.com/matrix-org/matrix-spec-proposals#1-writing-the-proposal).
|
||||||
- Fork and make a PR to the
|
- Fork and make a PR to the
|
||||||
[matrix-spec-proposals](https://github.com/matrix-org/matrix-spec-proposals) repository.
|
[matrix-spec-proposals](https://github.com/matrix-org/matrix-spec-proposals) repository.
|
||||||
The ID of your PR will become the MSC ID for the lifetime of your
|
The ID of your PR will become the MSC ID for the lifetime of your
|
||||||
|
|
@ -493,6 +497,42 @@ In summary:
|
||||||
a small table at the bottom mapping the various values from stable
|
a small table at the bottom mapping the various values from stable
|
||||||
to unstable.
|
to unstable.
|
||||||
|
|
||||||
|
### Placeholder MSCs
|
||||||
|
|
||||||
|
Some proposals may contain security-sensitive or private context which can't be
|
||||||
|
publicly disclosed until a later stage in the idea or solution process. Typically,
|
||||||
|
the initial idea is validated using some amount of implementation or experimentation
|
||||||
|
and may require an MSC number to make that implementation easier.
|
||||||
|
|
||||||
|
Placeholder MSCs are used to represent proposals in a state where implementation
|
||||||
|
is ongoing, but the MSC details can't yet be disclosed. Authors which feel as
|
||||||
|
though their MSC could be highly sensitive MUST get in contact with the Spec Core
|
||||||
|
Team or [Security Team](https://matrix.org/security-disclosure-policy/) prior to
|
||||||
|
opening their MSC. If either team determines that a placeholder MSC is required,
|
||||||
|
it may be opened as such.
|
||||||
|
|
||||||
|
There are a few expectations attached to placeholder MSCs:
|
||||||
|
|
||||||
|
* They have a title which marks them WIP, and are in the "draft" state.
|
||||||
|
* They have the following labels: `[proposal-placeholder, action-required, needs-implementation]`.
|
||||||
|
* Notably, *not* `proposal`.
|
||||||
|
* They are relatively short-lived (ideally less than 6-12 months in placeholder).
|
||||||
|
* They propose solutions which are reasonably likely to be accepted. If a placeholder
|
||||||
|
needs to be closed because the idea won't work, isn't needed, etc, then the MSC's
|
||||||
|
content MUST be published ahead of that closure.
|
||||||
|
* Note: the MSC's publication (and therefore closure) may be delayed until an
|
||||||
|
appropriate point in the security disclosure cycle. For example, an alternative
|
||||||
|
MSC being published, or a stream of work being completed.
|
||||||
|
* When they are updated to receive real content, the following happens:
|
||||||
|
1. The Spec Core Team or the author leaves a comment to cause a notification
|
||||||
|
that the MSC has been replaced with real content.
|
||||||
|
2. The `proposal` label (or its equivalent) is added to trigger chat notifications
|
||||||
|
in the public Matrix rooms. The `proposal-placeholder` and `action-required`
|
||||||
|
labels should be removed at this stage as well. Other labels are removed/applied
|
||||||
|
per normal process.
|
||||||
|
* The Spec Core Team is aware of the intended MSC's title and purpose. This is
|
||||||
|
especially important if the Security Team approved the use of a placeholder MSC.
|
||||||
|
|
||||||
## Proposal Tracking
|
## Proposal Tracking
|
||||||
|
|
||||||
This is a living document generated from the list of proposals on the
|
This is a living document generated from the list of proposals on the
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,8 @@ to send. The process overall is as follows:
|
||||||
server must present a valid certificate for the hostname.
|
server must present a valid certificate for the hostname.
|
||||||
|
|
||||||
3. If the hostname is not an IP literal, a regular HTTPS request is
|
3. If the hostname is not an IP literal, a regular HTTPS request is
|
||||||
made to `https://<hostname>/.well-known/matrix/server`, expecting
|
made to `https://<hostname>/.well-known/matrix/server` (according to
|
||||||
|
[RFC 8615](https://datatracker.ietf.org/doc/html/rfc8615)), expecting
|
||||||
the schema defined later in this section. 30x redirects should be
|
the schema defined later in this section. 30x redirects should be
|
||||||
followed, however redirection loops should be avoided. Responses
|
followed, however redirection loops should be avoided. Responses
|
||||||
(successful or otherwise) to the `/.well-known` endpoint should be
|
(successful or otherwise) to the `/.well-known` endpoint should be
|
||||||
|
|
@ -543,8 +544,8 @@ the following subset of the room state:
|
||||||
`third_party_invite` property, the current
|
`third_party_invite` property, the current
|
||||||
`m.room.third_party_invite` event with `state_key` matching
|
`m.room.third_party_invite` event with `state_key` matching
|
||||||
`content.third_party_invite.signed.token`, if any.
|
`content.third_party_invite.signed.token`, if any.
|
||||||
- If `content.join_authorised_via_users_server` is present,
|
- If `membership` is `join`, `content.join_authorised_via_users_server`
|
||||||
and the [room version supports restricted rooms](/rooms/#feature-matrix),
|
is present, and the [room version supports restricted rooms](/rooms/#feature-matrix),
|
||||||
then the `m.room.member` event with `state_key` matching
|
then the `m.room.member` event with `state_key` matching
|
||||||
`content.join_authorised_via_users_server`.
|
`content.join_authorised_via_users_server`.
|
||||||
|
|
||||||
|
|
@ -970,9 +971,8 @@ the event to other servers in the room.
|
||||||
## Third-party invites
|
## Third-party invites
|
||||||
|
|
||||||
{{% boxes/note %}}
|
{{% boxes/note %}}
|
||||||
More information about third-party invites is available in the
|
More information about third-party invites is available in the Client-Server API
|
||||||
[Client-Server API](/client-server-api) under
|
under the [Third-party invites](/client-server-api/#third-party-invites) module.
|
||||||
the Third-party Invites module.
|
|
||||||
{{% /boxes/note %}}
|
{{% /boxes/note %}}
|
||||||
|
|
||||||
When a user wants to invite another user in a room but doesn't know the
|
When a user wants to invite another user in a room but doesn't know the
|
||||||
|
|
@ -985,38 +985,41 @@ API](/identity-service-api).
|
||||||
|
|
||||||
### Cases where an association exists for a third-party identifier
|
### Cases where an association exists for a third-party identifier
|
||||||
|
|
||||||
If the third-party identifier is already bound to a Matrix ID, a lookup
|
If the third-party identifier is already bound to a Matrix ID, a [lookup
|
||||||
request on the identity server will return it. The invite is then
|
request](/identity-service-api/#post_matrixidentityv2lookup) on the identity
|
||||||
processed by the inviting homeserver as a standard `m.room.member`
|
server will return it. The invite is then processed by the inviting homeserver
|
||||||
invite event. This is the simplest case.
|
as a [standard `m.room.member` invite event](#inviting-to-a-room). This is the
|
||||||
|
simplest case.
|
||||||
|
|
||||||
### Cases where an association doesn't exist for a third-party identifier
|
### Cases where an association doesn't exist for a third-party identifier
|
||||||
|
|
||||||
If the third-party identifier isn't bound to any Matrix ID, the inviting
|
If the third-party identifier isn't bound to any Matrix ID, the inviting
|
||||||
homeserver will request the identity server to store an invite for this
|
homeserver will request the identity server to [store an invite](/identity-service-api/#invitation-storage)
|
||||||
identifier and to deliver it to whoever binds it to its Matrix ID. It
|
for this identifier and to deliver it to whoever binds it to its Matrix ID. It
|
||||||
will also send an `m.room.third_party_invite` event in the room to
|
will also send an [`m.room.third_party_invite`](/client-server-api/#mroomthird_party_invite)
|
||||||
specify a display name, a token and public keys the identity server
|
event in the room to specify a display name, a token and public keys the
|
||||||
provided as a response to the invite storage request.
|
identity server provided as a response to the invite storage request.
|
||||||
|
|
||||||
When a third-party identifier with pending invites gets bound to a
|
When a third-party identifier with pending invites gets bound to a Matrix ID,
|
||||||
Matrix ID, the identity server will send a POST request to the ID's
|
the identity server will send a request to the [`/3pid/onbind`](#put_matrixfederationv13pidonbind)
|
||||||
homeserver as described in the [Invitation
|
endpoint of the the ID's homeserver as described in the [Invitation
|
||||||
Storage](/identity-service-api#invitation-storage)
|
Storage](/identity-service-api#invitation-storage) section of the Identity
|
||||||
section of the Identity Service API.
|
Service API.
|
||||||
|
|
||||||
The following process applies for each invite sent by the identity
|
The following process applies for each invite sent by the identity
|
||||||
server:
|
server:
|
||||||
|
|
||||||
The invited homeserver will create an `m.room.member` invite event
|
The invited homeserver will create an [`m.room.member`](/client-server-api/#mroommember)
|
||||||
containing a special `third_party_invite` section containing the token
|
invite event containing a special `third_party_invite` section containing the
|
||||||
and a signed object, both provided by the identity server.
|
token and a `signed` object, both provided by the identity server.
|
||||||
|
|
||||||
If the invited homeserver is in the room the invite came from, it can
|
If the invited homeserver is in the room the invite came from, it can
|
||||||
auth the event and send it.
|
auth the event and send it.
|
||||||
|
|
||||||
However, if the invited homeserver isn't in the room the invite came
|
However, if the invited homeserver isn't in the room the invite came
|
||||||
from, it will need to request the room's homeserver to auth the event.
|
from, it will need to request the inviting homeserver to auth the event
|
||||||
|
at the [`/exchange_third_party_invite`](#put_matrixfederationv1exchange_third_party_inviteroomid)
|
||||||
|
endpoint.
|
||||||
|
|
||||||
{{% http-api spec="server-server" api="third_party_invite" %}}
|
{{% http-api spec="server-server" api="third_party_invite" %}}
|
||||||
|
|
||||||
|
|
@ -1045,11 +1048,10 @@ user's Matrix ID and the token delivered when the invite was stored,
|
||||||
this verification will prove that the `m.room.member` invite event comes
|
this verification will prove that the `m.room.member` invite event comes
|
||||||
from the user owning the invited third-party identifier.
|
from the user owning the invited third-party identifier.
|
||||||
|
|
||||||
## Public Room Directory
|
## Published Room Directory
|
||||||
|
|
||||||
To complement the [Client-Server
|
To complement the [room directory in the Client-Server API](/client-server-api#published-room-directory),
|
||||||
API](/client-server-api)'s room directory,
|
homeservers need a way to query the published rooms of another server.
|
||||||
homeservers need a way to query the public rooms for another server.
|
|
||||||
This can be done by making a request to the `/publicRooms` endpoint for
|
This can be done by making a request to the `/publicRooms` endpoint for
|
||||||
the server the room directory should be retrieved for.
|
the server the room directory should be retrieved for.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,3 +23,4 @@ allOf:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
$ref: protocol_instance.yaml
|
$ref: protocol_instance.yaml
|
||||||
|
required: ['instances']
|
||||||
|
|
|
||||||
|
|
@ -77,4 +77,4 @@ properties:
|
||||||
"placeholder": "#foobar"
|
"placeholder": "#foobar"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
required: ['user_fields', 'location_fields', 'icon', 'field_types', 'instances']
|
required: ['user_fields', 'location_fields', 'icon', 'field_types']
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ properties:
|
||||||
type: string
|
type: string
|
||||||
description: A unique, user-defined ID of the application service which will never change.
|
description: A unique, user-defined ID of the application service which will never change.
|
||||||
url:
|
url:
|
||||||
type: string
|
type: ["null", "string"]
|
||||||
description: The URL for the application service. May include a path after the domain name. Optionally set to null if no traffic is required.
|
description: The URL for the application service. May include a path after the domain name. Optionally set to null if no traffic is required.
|
||||||
as_token:
|
as_token:
|
||||||
type: string
|
type: string
|
||||||
|
|
|
||||||
141
data/api/client-server/account_deactivation.yaml
Normal file
141
data/api/client-server/account_deactivation.yaml
Normal file
|
|
@ -0,0 +1,141 @@
|
||||||
|
# Copyright 2016 OpenMarket Ltd
|
||||||
|
# Copyright 2022 The Matrix.org Foundation C.I.C.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
openapi: 3.1.0
|
||||||
|
info:
|
||||||
|
title: Matrix Client-Server Account Deactivation API
|
||||||
|
version: 1.0.0
|
||||||
|
paths:
|
||||||
|
/account/deactivate:
|
||||||
|
post:
|
||||||
|
summary: Deactivate a user's account.
|
||||||
|
description: |-
|
||||||
|
Deactivate the user's account, removing all ability for the user to
|
||||||
|
login again.
|
||||||
|
|
||||||
|
This API endpoint uses the [User-Interactive Authentication API](/client-server-api/#user-interactive-authentication-api).
|
||||||
|
|
||||||
|
An access token should be submitted to this endpoint if the client has
|
||||||
|
an active session.
|
||||||
|
|
||||||
|
The homeserver may change the flows available depending on whether a
|
||||||
|
valid access token is provided.
|
||||||
|
|
||||||
|
Unlike other endpoints, this endpoint does not take an `id_access_token`
|
||||||
|
parameter because the homeserver is expected to sign the request to the
|
||||||
|
identity server instead.
|
||||||
|
security:
|
||||||
|
- {}
|
||||||
|
- accessTokenQuery: []
|
||||||
|
- accessTokenBearer: []
|
||||||
|
operationId: deactivateAccount
|
||||||
|
requestBody:
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
auth:
|
||||||
|
description: Additional authentication information for the user-interactive
|
||||||
|
authentication API.
|
||||||
|
allOf:
|
||||||
|
- $ref: definitions/auth_data.yaml
|
||||||
|
id_server:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
The identity server to unbind all of the user's 3PIDs from.
|
||||||
|
If not provided, the homeserver MUST use the `id_server`
|
||||||
|
that was originally use to bind each identifier. If the
|
||||||
|
homeserver does not know which `id_server` that was,
|
||||||
|
it must return an `id_server_unbind_result` of
|
||||||
|
`no-support`.
|
||||||
|
example: example.org
|
||||||
|
erase:
|
||||||
|
x-addedInMatrixVersion: "1.10"
|
||||||
|
type: boolean
|
||||||
|
description: |-
|
||||||
|
Whether the user would like their content to be erased as
|
||||||
|
much as possible from the server.
|
||||||
|
|
||||||
|
Erasure means that any users (or servers) which join the
|
||||||
|
room after the erasure request are served redacted copies of
|
||||||
|
the events sent by this account. Users which had visibility
|
||||||
|
on those events prior to the erasure are still able to see
|
||||||
|
unredacted copies. No redactions are sent and the erasure
|
||||||
|
request is not shared over federation, so other servers
|
||||||
|
might still serve unredacted copies.
|
||||||
|
|
||||||
|
The server should additionally erase any non-event data
|
||||||
|
associated with the user, such as [account data](/client-server-api/#client-config)
|
||||||
|
and [contact 3PIDs](/client-server-api/#adding-account-administrative-contact-information).
|
||||||
|
|
||||||
|
Defaults to `false` if not present.
|
||||||
|
required: true
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: The account has been deactivated.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
id_server_unbind_result:
|
||||||
|
type: string
|
||||||
|
enum:
|
||||||
|
- success
|
||||||
|
- no-support
|
||||||
|
description: |-
|
||||||
|
An indicator as to whether or not the homeserver was able to unbind
|
||||||
|
the user's 3PIDs from the identity server(s). `success` indicates
|
||||||
|
that all identifiers have been unbound from the identity server while
|
||||||
|
`no-support` indicates that one or more identifiers failed to unbind
|
||||||
|
due to the identity server refusing the request or the homeserver
|
||||||
|
being unable to determine an identity server to unbind from. This
|
||||||
|
must be `success` if the homeserver has no identifiers to unbind
|
||||||
|
for the user.
|
||||||
|
example: success
|
||||||
|
required:
|
||||||
|
- id_server_unbind_result
|
||||||
|
"401":
|
||||||
|
description: The homeserver requires additional authentication information.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: definitions/auth_response.yaml
|
||||||
|
"429":
|
||||||
|
description: This request was rate-limited.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: definitions/errors/rate_limited.yaml
|
||||||
|
tags:
|
||||||
|
- Account management
|
||||||
|
servers:
|
||||||
|
- url: "{protocol}://{hostname}{basePath}"
|
||||||
|
variables:
|
||||||
|
protocol:
|
||||||
|
enum:
|
||||||
|
- http
|
||||||
|
- https
|
||||||
|
default: https
|
||||||
|
hostname:
|
||||||
|
default: localhost:8008
|
||||||
|
basePath:
|
||||||
|
default: /_matrix/client/v3
|
||||||
|
components:
|
||||||
|
securitySchemes:
|
||||||
|
accessTokenQuery:
|
||||||
|
$ref: definitions/security.yaml#/accessTokenQuery
|
||||||
|
accessTokenBearer:
|
||||||
|
$ref: definitions/security.yaml#/accessTokenBearer
|
||||||
|
|
@ -201,6 +201,11 @@ paths:
|
||||||
|
|
||||||
Homeservers should prevent the caller from adding a 3PID to their account if it has
|
Homeservers should prevent the caller from adding a 3PID to their account if it has
|
||||||
already been added to another user's account on the homeserver.
|
already been added to another user's account on the homeserver.
|
||||||
|
|
||||||
|
{{% boxes/warning %}}
|
||||||
|
Since this endpoint uses User-Interactive Authentication, it cannot be used when the access token was obtained
|
||||||
|
via the [OAuth 2.0 API](/client-server-api/#oauth-20-api).
|
||||||
|
{{% /boxes/warning %}}
|
||||||
operationId: add3PID
|
operationId: add3PID
|
||||||
security:
|
security:
|
||||||
- accessTokenQuery: []
|
- accessTokenQuery: []
|
||||||
|
|
|
||||||
|
|
@ -13,18 +13,21 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
openapi: 3.1.0
|
openapi: 3.1.0
|
||||||
info:
|
info:
|
||||||
title: Matrix Client-Server Application Service Room Directory API
|
title: Matrix Client-Server Application Service Published Room Directory API
|
||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
paths:
|
paths:
|
||||||
"/directory/list/appservice/{networkId}/{roomId}":
|
"/directory/list/appservice/{networkId}/{roomId}":
|
||||||
put:
|
put:
|
||||||
summary: Updates a room's visibility in the application service's room directory.
|
summary: |-
|
||||||
description: |-
|
Updates a room's visibility in the application service's published room
|
||||||
Updates the visibility of a given room on the application service's room
|
|
||||||
directory.
|
directory.
|
||||||
|
description: |-
|
||||||
|
Updates the visibility of a given room in the application service's
|
||||||
|
published room directory.
|
||||||
|
|
||||||
This API is similar to the room directory visibility API used by clients
|
This API is similar to the
|
||||||
to update the homeserver's more general room directory.
|
[visibility API](/client-server-api#put_matrixclientv3directorylistroomroomid)
|
||||||
|
used by clients to update the homeserver's more general published room directory.
|
||||||
|
|
||||||
This API requires the use of an application service access token (`as_token`)
|
This API requires the use of an application service access token (`as_token`)
|
||||||
instead of a typical client's access_token. This API cannot be invoked by
|
instead of a typical client's access_token. This API cannot be invoked by
|
||||||
|
|
|
||||||
|
|
@ -87,12 +87,9 @@ paths:
|
||||||
- public
|
- public
|
||||||
- private
|
- private
|
||||||
description: |-
|
description: |-
|
||||||
A `public` visibility indicates that the room will be shown
|
The room's visibility in the server's
|
||||||
in the published room list. A `private` visibility will hide
|
[published room directory](/client-server-api#published-room-directory).
|
||||||
the room from the published room list. Rooms default to
|
Defaults to `private`.
|
||||||
`private` visibility if this key is not included. NB: This
|
|
||||||
should not be confused with `join_rules` which also uses the
|
|
||||||
word `public`.
|
|
||||||
room_alias_name:
|
room_alias_name:
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
|
|
@ -109,15 +106,17 @@ paths:
|
||||||
name:
|
name:
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
If this is included, an `m.room.name` event will be sent
|
If this is included, an [`m.room.name`](/client-server-api/#mroomname) event
|
||||||
into the room to indicate the name of the room. See Room
|
will be sent into the room to indicate the name for the room.
|
||||||
Events for more information on `m.room.name`.
|
This overwrites any [`m.room.name`](/client-server-api/#mroomname)
|
||||||
|
event in `initial_state`.
|
||||||
topic:
|
topic:
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
If this is included, an `m.room.topic` event will be sent
|
If this is included, an [`m.room.topic`](/client-server-api/#mroomtopic)
|
||||||
into the room to indicate the topic for the room. See Room
|
event with a `text/plain` mimetype will be sent into the room
|
||||||
Events for more information on `m.room.topic`.
|
to indicate the topic for the room. This overwrites any
|
||||||
|
[`m.room.topic`](/client-server-api/#mroomtopic) event in `initial_state`.
|
||||||
invite:
|
invite:
|
||||||
type: array
|
type: array
|
||||||
description: |-
|
description: |-
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ paths:
|
||||||
Publishes cross-signing keys for the user.
|
Publishes cross-signing keys for the user.
|
||||||
|
|
||||||
This API endpoint uses the [User-Interactive Authentication API](/client-server-api/#user-interactive-authentication-api).
|
This API endpoint uses the [User-Interactive Authentication API](/client-server-api/#user-interactive-authentication-api).
|
||||||
|
|
||||||
User-Interactive Authentication MUST be performed, except in these cases:
|
User-Interactive Authentication MUST be performed, except in these cases:
|
||||||
- there is no existing cross-signing master key uploaded to the homeserver, OR
|
- there is no existing cross-signing master key uploaded to the homeserver, OR
|
||||||
- there is an existing cross-signing master key and it exactly matches the
|
- there is an existing cross-signing master key and it exactly matches the
|
||||||
|
|
@ -34,11 +34,16 @@ paths:
|
||||||
keys provided in the request (self-signing key, user-signing key) they MUST also
|
keys provided in the request (self-signing key, user-signing key) they MUST also
|
||||||
match the existing keys stored on the server. In other words, the request contains
|
match the existing keys stored on the server. In other words, the request contains
|
||||||
no new keys.
|
no new keys.
|
||||||
|
|
||||||
This allows clients to freely upload one set of keys, but not modify/overwrite keys if
|
This allows clients to freely upload one set of keys, but not modify/overwrite keys if
|
||||||
they already exist. Allowing clients to upload the same set of keys more than once
|
they already exist. Allowing clients to upload the same set of keys more than once
|
||||||
makes this endpoint idempotent in the case where the response is lost over the network,
|
makes this endpoint idempotent in the case where the response is lost over the network,
|
||||||
which would otherwise cause a UIA challenge upon retry.
|
which would otherwise cause a UIA challenge upon retry.
|
||||||
|
|
||||||
|
{{% boxes/warning %}}
|
||||||
|
When this endpoint requires User-Interactive Authentication, it cannot be used when the access token was obtained
|
||||||
|
via the [OAuth 2.0 API](/client-server-api/#oauth-20-api).
|
||||||
|
{{% /boxes/warning %}}
|
||||||
operationId: uploadCrossSigningKeys
|
operationId: uploadCrossSigningKeys
|
||||||
security:
|
security:
|
||||||
- accessTokenQuery: []
|
- accessTokenQuery: []
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,7 @@ properties:
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
The end-to-end message encryption algorithm that the key is for. Must be `m.megolm.v1.aes-sha2`.
|
The end-to-end message encryption algorithm that the key is for. Must be `m.megolm.v1.aes-sha2`.
|
||||||
|
example: "m.megolm.v1.aes-sha2"
|
||||||
forwarding_curve25519_key_chain:
|
forwarding_curve25519_key_chain:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
|
|
@ -30,31 +31,24 @@ properties:
|
||||||
description: |-
|
description: |-
|
||||||
Chain of Curve25519 keys through which this session was forwarded, via [m.forwarded_room_key](/client-server-api/#mforwarded_room_key)
|
Chain of Curve25519 keys through which this session was forwarded, via [m.forwarded_room_key](/client-server-api/#mforwarded_room_key)
|
||||||
events.
|
events.
|
||||||
|
example: [ "hPQNcabIABgGnx3/ACv/jmMmiQHoeFfuLB17tzWp6Hw" ]
|
||||||
sender_key:
|
sender_key:
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
Unpadded base64-encoded device Curve25519 key.
|
Unpadded base64-encoded device Curve25519 key.
|
||||||
|
example: "RF3s+E7RkTQTGF2d8Deol0FkQvgII2aJDf3/Jp5mxVU"
|
||||||
sender_claimed_keys:
|
sender_claimed_keys:
|
||||||
type: object
|
type: object
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
A map from algorithm name (`ed25519`) to the Ed25519 signing key of the sending device.
|
A map from algorithm name (`ed25519`) to the Ed25519 signing key of the sending device.
|
||||||
|
example: { "ed25519": "aj40p+aw64yPIdsxoog8jhPu9i7l7NcFRecuOQblE3Y" }
|
||||||
session_key:
|
session_key:
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
Unpadded base64-encoded session key in [session-export format](https://gitlab.matrix.org/matrix-org/olm/blob/master/docs/megolm.md#session-export-format).
|
Unpadded base64-encoded session key in [session-export format](https://gitlab.matrix.org/matrix-org/olm/blob/master/docs/megolm.md#session-export-format).
|
||||||
example: {
|
example: "AgAAAADxKHa9uFxcXzwYoNueL5Xqi69IkD4sni8Llf..."
|
||||||
"algorithm": "m.megolm.v1.aes-sha2",
|
|
||||||
"forwarding_curve25519_key_chain": [
|
|
||||||
"hPQNcabIABgGnx3/ACv/jmMmiQHoeFfuLB17tzWp6Hw"
|
|
||||||
],
|
|
||||||
"sender_key": "RF3s+E7RkTQTGF2d8Deol0FkQvgII2aJDf3/Jp5mxVU",
|
|
||||||
"sender_claimed_keys": {
|
|
||||||
"ed25519": "aj40p+aw64yPIdsxoog8jhPu9i7l7NcFRecuOQblE3Y",
|
|
||||||
},
|
|
||||||
"session_key": "AgAAAADxKHa9uFxcXzwYoNueL5Xqi69IkD4sni8Llf..."
|
|
||||||
}
|
|
||||||
required:
|
required:
|
||||||
- algorithm
|
- algorithm
|
||||||
- forwarding_curve25519_key_chain
|
- forwarding_curve25519_key_chain
|
||||||
|
|
|
||||||
88
data/api/client-server/definitions/olm_payload.yaml
Normal file
88
data/api/client-server/definitions/olm_payload.yaml
Normal file
|
|
@ -0,0 +1,88 @@
|
||||||
|
# Copyright 2025 The Matrix.org Foundation C.I.C
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
|
||||||
|
type: object
|
||||||
|
title: OlmPayload
|
||||||
|
description: |-
|
||||||
|
The plaintext payload of Olm message events.
|
||||||
|
properties:
|
||||||
|
type:
|
||||||
|
type: string
|
||||||
|
description: The type of the event.
|
||||||
|
content:
|
||||||
|
type: object
|
||||||
|
description: The event content.
|
||||||
|
sender:
|
||||||
|
type: string
|
||||||
|
description: The user ID of the event sender.
|
||||||
|
recipient:
|
||||||
|
type: string
|
||||||
|
description: The user ID of the intended event recipient.
|
||||||
|
recipient_keys:
|
||||||
|
description: The recipient's signing keys of the encrypted event.
|
||||||
|
$ref: "#/components/schemas/SigningKeys"
|
||||||
|
keys:
|
||||||
|
$ref: "#/components/schemas/SigningKeys"
|
||||||
|
description: The sender's signing keys of the encrypted event.
|
||||||
|
sender_device_keys:
|
||||||
|
$ref: device_keys.yaml
|
||||||
|
description: The sender's device keys.
|
||||||
|
x-addedInMatrixVersion: "1.15"
|
||||||
|
required:
|
||||||
|
- type
|
||||||
|
- content
|
||||||
|
- sender
|
||||||
|
- recipient
|
||||||
|
- recipient_keys
|
||||||
|
- keys
|
||||||
|
components:
|
||||||
|
schemas:
|
||||||
|
SigningKeys:
|
||||||
|
type: object
|
||||||
|
title: SigningKeys
|
||||||
|
description: Public keys used for an `m.olm.v1.curve25519-aes-sha2` event.
|
||||||
|
properties:
|
||||||
|
ed25519:
|
||||||
|
type: string
|
||||||
|
description: The Ed25519 public key encoded using unpadded base64.
|
||||||
|
required:
|
||||||
|
- ed25519
|
||||||
|
example: {
|
||||||
|
"type": "<type of the plaintext event>",
|
||||||
|
"content": "<content for the plaintext event>",
|
||||||
|
"sender": "<sender_user_id>",
|
||||||
|
"recipient": "<recipient_user_id>",
|
||||||
|
"recipient_keys": {
|
||||||
|
"ed25519": "<our_ed25519_key>"
|
||||||
|
},
|
||||||
|
"keys": {
|
||||||
|
"ed25519": "<sender_ed25519_key>"
|
||||||
|
},
|
||||||
|
"sender_device_keys": {
|
||||||
|
"algorithms": ["<supported>", "<algorithms>"],
|
||||||
|
"user_id": "<user_id>",
|
||||||
|
"device_id": "<device_id>",
|
||||||
|
"keys": {
|
||||||
|
"ed25519:<device_id>": "<sender_ed25519_key>",
|
||||||
|
"curve25519:<device_id>": "<sender_curve25519_key>"
|
||||||
|
},
|
||||||
|
"signatures": {
|
||||||
|
"<user_id>": {
|
||||||
|
"ed25519:<device_id>": "<device_signature>",
|
||||||
|
"ed25519:<ssk_id>": "<ssk_signature>",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -37,7 +37,8 @@ allOf:
|
||||||
A unique identifier for this instance on the homeserver. This field is added
|
A unique identifier for this instance on the homeserver. This field is added
|
||||||
to the response of [`GET /_matrix/app/v1/thirdparty/protocol/{protocol}`](/application-service-api/#get_matrixappv1thirdpartyprotocolprotocol)
|
to the response of [`GET /_matrix/app/v1/thirdparty/protocol/{protocol}`](/application-service-api/#get_matrixappv1thirdpartyprotocolprotocol)
|
||||||
by the homeserver.
|
by the homeserver.
|
||||||
|
|
||||||
This is the identifier to use as the `third_party_instance_id` in a request to
|
This is the identifier to use as the `third_party_instance_id` in a request to
|
||||||
[`POST /_matrix/client/v3/publicRooms`](/client-server-api/#post_matrixclientv3publicrooms).
|
[`POST /_matrix/client/v3/publicRooms`](/client-server-api/#post_matrixclientv3publicrooms).
|
||||||
example: "irc-freenode"
|
example: "irc-freenode"
|
||||||
|
required: ['instances']
|
||||||
|
|
|
||||||
|
|
@ -13,10 +13,12 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
type: object
|
type: object
|
||||||
title: "PublicRoomsChunk"
|
title: "PublishedRoomsChunk"
|
||||||
properties:
|
properties:
|
||||||
canonical_alias:
|
canonical_alias:
|
||||||
type: string
|
type: string
|
||||||
|
format: mx-room-alias
|
||||||
|
pattern: "^#"
|
||||||
description: The canonical alias of the room, if any.
|
description: The canonical alias of the room, if any.
|
||||||
example: "#general:example.org"
|
example: "#general:example.org"
|
||||||
name:
|
name:
|
||||||
|
|
@ -29,11 +31,15 @@ properties:
|
||||||
example: 42
|
example: 42
|
||||||
room_id:
|
room_id:
|
||||||
type: string
|
type: string
|
||||||
|
format: mx-room-id
|
||||||
|
pattern: "^!"
|
||||||
description: The ID of the room.
|
description: The ID of the room.
|
||||||
example: "!abcdefg:example.org"
|
example: "!abcdefg:example.org"
|
||||||
topic:
|
topic:
|
||||||
type: string
|
type: string
|
||||||
description: The topic of the room, if any.
|
description: |-
|
||||||
|
The plain text topic of the room. Omitted if no `text/plain` mimetype
|
||||||
|
exists in [`m.room.topic`](/client-server-api/#mroomtopic).
|
||||||
example: "All things general"
|
example: "All things general"
|
||||||
world_readable:
|
world_readable:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
|
@ -59,7 +65,6 @@ properties:
|
||||||
example: "public"
|
example: "public"
|
||||||
room_type:
|
room_type:
|
||||||
type: string
|
type: string
|
||||||
x-addedInMatrixVersion: "1.4"
|
|
||||||
description: |-
|
description: |-
|
||||||
The `type` of room (from [`m.room.create`](/client-server-api/#mroomcreate)), if any.
|
The `type` of room (from [`m.room.create`](/client-server-api/#mroomcreate)), if any.
|
||||||
required:
|
required:
|
||||||
|
|
|
||||||
|
|
@ -13,28 +13,15 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
type: object
|
type: object
|
||||||
description: A list of the rooms on the server.
|
description: A list of the published rooms on the server.
|
||||||
required: ["chunk"]
|
required: ["chunk"]
|
||||||
properties:
|
properties:
|
||||||
chunk:
|
chunk:
|
||||||
type: array
|
type: array
|
||||||
description: |-
|
description: |-
|
||||||
A paginated chunk of public rooms.
|
A paginated chunk of published rooms.
|
||||||
items:
|
items:
|
||||||
allOf:
|
$ref: "public_rooms_chunk.yaml"
|
||||||
- $ref: "public_rooms_chunk.yaml"
|
|
||||||
- type: object
|
|
||||||
title: PublicRoomsChunk
|
|
||||||
properties:
|
|
||||||
# Override description of join_rule
|
|
||||||
join_rule:
|
|
||||||
type: string
|
|
||||||
description: |-
|
|
||||||
The room's join rule. When not present, the room is assumed to
|
|
||||||
be `public`. Note that rooms with `invite` join rules are not
|
|
||||||
expected here, but rooms with `knock` rules are given their
|
|
||||||
near-public nature.
|
|
||||||
example: "public"
|
|
||||||
next_batch:
|
next_batch:
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
|
|
@ -50,7 +37,7 @@ properties:
|
||||||
total_room_count_estimate:
|
total_room_count_estimate:
|
||||||
type: integer
|
type: integer
|
||||||
description: |-
|
description: |-
|
||||||
An estimate on the total number of public rooms, if the
|
An estimate on the total number of published rooms, if the
|
||||||
server has an estimate.
|
server has an estimate.
|
||||||
example: {
|
example: {
|
||||||
"chunk": [
|
"chunk": [
|
||||||
|
|
|
||||||
44
data/api/client-server/definitions/room_summary.yaml
Normal file
44
data/api/client-server/definitions/room_summary.yaml
Normal file
|
|
@ -0,0 +1,44 @@
|
||||||
|
# Copyright 2025 The Matrix.org Foundation C.I.C.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
type: object
|
||||||
|
title: RoomSummary
|
||||||
|
allOf:
|
||||||
|
- $ref: public_rooms_chunk.yaml
|
||||||
|
- type: object
|
||||||
|
properties:
|
||||||
|
room_type:
|
||||||
|
type: string
|
||||||
|
description: The `type` of room (from
|
||||||
|
[`m.room.create`](/client-server-api/#mroomcreate)),
|
||||||
|
if any.
|
||||||
|
allowed_room_ids:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
format: mx-room-id
|
||||||
|
pattern: "^!"
|
||||||
|
description: |-
|
||||||
|
If the room is a [restricted room](/server-server-api/#restricted-rooms), these are the room IDs which
|
||||||
|
are specified by the join rules. Empty or omitted otherwise.
|
||||||
|
encryption:
|
||||||
|
type: string
|
||||||
|
enum:
|
||||||
|
- "m.megolm.v1.aes-sha2"
|
||||||
|
description: |-
|
||||||
|
The encryption algorithm to be used to encrypt messages sent in the
|
||||||
|
room.
|
||||||
|
room_version:
|
||||||
|
description: The version of the room.
|
||||||
|
type: string
|
||||||
|
|
@ -14,8 +14,8 @@
|
||||||
accessTokenQuery:
|
accessTokenQuery:
|
||||||
type: apiKey
|
type: apiKey
|
||||||
description: |-
|
description: |-
|
||||||
**Deprecated.** The `access_token` returned by a call to `/login` or `/register`, as a query
|
**Deprecated.** The `access_token` obtained during [account registration](/client-server-api/#account-registration)
|
||||||
parameter.
|
or [login](/client-server-api/#login), as a query parameter.
|
||||||
|
|
||||||
It can also be the `as_token` of an application service.
|
It can also be the `as_token` of an application service.
|
||||||
name: access_token
|
name: access_token
|
||||||
|
|
@ -23,11 +23,11 @@ accessTokenQuery:
|
||||||
accessTokenBearer:
|
accessTokenBearer:
|
||||||
type: http
|
type: http
|
||||||
description: |-
|
description: |-
|
||||||
The `access_token` returned by a call to `/login` or `/register`, using the
|
The `access_token` obtained during [account registration](/client-server-api/#account-registration)
|
||||||
`Authorization: Bearer` header.
|
or [login](/client-server-api/#login), using the `Authorization: Bearer` header.
|
||||||
|
|
||||||
It can also be the `as_token` of an application service.
|
It can also be the `as_token` of an application service.
|
||||||
|
|
||||||
This is the preferred method.
|
This is the preferred method.
|
||||||
scheme: bearer
|
scheme: bearer
|
||||||
appserviceAccessTokenQuery:
|
appserviceAccessTokenQuery:
|
||||||
|
|
@ -42,6 +42,6 @@ appserviceAccessTokenBearer:
|
||||||
description: |-
|
description: |-
|
||||||
The `as_token` of an application service, using the `Authorization: Bearer`
|
The `as_token` of an application service, using the `Authorization: Bearer`
|
||||||
header.
|
header.
|
||||||
|
|
||||||
This is the preferred method.
|
This is the preferred method.
|
||||||
scheme: bearer
|
scheme: bearer
|
||||||
|
|
|
||||||
|
|
@ -137,6 +137,11 @@ paths:
|
||||||
This API endpoint uses the [User-Interactive Authentication API](/client-server-api/#user-interactive-authentication-api).
|
This API endpoint uses the [User-Interactive Authentication API](/client-server-api/#user-interactive-authentication-api).
|
||||||
|
|
||||||
Deletes the given device, and invalidates any access token associated with it.
|
Deletes the given device, and invalidates any access token associated with it.
|
||||||
|
|
||||||
|
{{% boxes/warning %}}
|
||||||
|
Since this endpoint uses User-Interactive Authentication, it cannot be used when the access token was obtained
|
||||||
|
via the [OAuth 2.0 API](/client-server-api/#oauth-20-api).
|
||||||
|
{{% /boxes/warning %}}
|
||||||
operationId: deleteDevice
|
operationId: deleteDevice
|
||||||
security:
|
security:
|
||||||
- accessTokenQuery: []
|
- accessTokenQuery: []
|
||||||
|
|
@ -189,6 +194,11 @@ paths:
|
||||||
This API endpoint uses the [User-Interactive Authentication API](/client-server-api/#user-interactive-authentication-api).
|
This API endpoint uses the [User-Interactive Authentication API](/client-server-api/#user-interactive-authentication-api).
|
||||||
|
|
||||||
Deletes the given devices, and invalidates any access token associated with them.
|
Deletes the given devices, and invalidates any access token associated with them.
|
||||||
|
|
||||||
|
{{% boxes/warning %}}
|
||||||
|
Since this endpoint uses User-Interactive Authentication, it cannot be used when the access token was obtained
|
||||||
|
via the [OAuth 2.0 API](/client-server-api/#oauth-20-api).
|
||||||
|
{{% /boxes/warning %}}
|
||||||
operationId: deleteDevices
|
operationId: deleteDevices
|
||||||
security:
|
security:
|
||||||
- accessTokenQuery: []
|
- accessTokenQuery: []
|
||||||
|
|
|
||||||
|
|
@ -13,14 +13,15 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
openapi: 3.1.0
|
openapi: 3.1.0
|
||||||
info:
|
info:
|
||||||
title: Matrix Client-Server Room Directory API
|
title: Matrix Client-Server Published Room Directory API
|
||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
paths:
|
paths:
|
||||||
"/directory/list/room/{roomId}":
|
"/directory/list/room/{roomId}":
|
||||||
get:
|
get:
|
||||||
summary: Gets the visibility of a room in the directory
|
summary: Gets the visibility of a room in the directory
|
||||||
description: Gets the visibility of a given room on the server's public room
|
description: |-
|
||||||
directory.
|
Gets the visibility of a given room in the server's
|
||||||
|
published room directory.
|
||||||
operationId: getRoomVisibilityOnDirectory
|
operationId: getRoomVisibilityOnDirectory
|
||||||
parameters:
|
parameters:
|
||||||
- in: path
|
- in: path
|
||||||
|
|
@ -32,7 +33,7 @@ paths:
|
||||||
type: string
|
type: string
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
description: The visibility of the room in the directory
|
description: The visibility of the room in the directory.
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
|
|
@ -50,7 +51,7 @@ paths:
|
||||||
"visibility": "public"
|
"visibility": "public"
|
||||||
}
|
}
|
||||||
"404":
|
"404":
|
||||||
description: The room is not known to the server
|
description: The room is not known to the server.
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
|
|
@ -64,14 +65,13 @@ paths:
|
||||||
tags:
|
tags:
|
||||||
- Room discovery
|
- Room discovery
|
||||||
put:
|
put:
|
||||||
summary: Sets the visibility of a room in the room directory
|
summary: Sets the visibility of a room in the directory
|
||||||
description: |-
|
description: |-
|
||||||
Sets the visibility of a given room in the server's public room
|
Sets the visibility of a given room in the server's published room directory.
|
||||||
directory.
|
|
||||||
|
|
||||||
Servers may choose to implement additional access control checks
|
Servers MAY implement additional access control checks, for instance,
|
||||||
here, for instance that room visibility can only be changed by
|
to ensure that a room's visibility can only be changed by the room creator
|
||||||
the room creator or a server administrator.
|
or a server administrator.
|
||||||
operationId: setRoomVisibilityOnDirectory
|
operationId: setRoomVisibilityOnDirectory
|
||||||
security:
|
security:
|
||||||
- accessTokenQuery: []
|
- accessTokenQuery: []
|
||||||
|
|
@ -97,11 +97,11 @@ paths:
|
||||||
- public
|
- public
|
||||||
description: |-
|
description: |-
|
||||||
The new visibility setting for the room.
|
The new visibility setting for the room.
|
||||||
Defaults to 'public'.
|
Defaults to `public`.
|
||||||
example: {
|
example: {
|
||||||
"visibility": "public"
|
"visibility": "public"
|
||||||
}
|
}
|
||||||
description: The new visibility for the room on the room directory.
|
description: The new visibility for the room in the published room directory.
|
||||||
required: true
|
required: true
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
|
|
@ -114,7 +114,7 @@ paths:
|
||||||
response:
|
response:
|
||||||
value: {}
|
value: {}
|
||||||
"404":
|
"404":
|
||||||
description: The room is not known to the server
|
description: The room is not known to the server.
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
|
|
@ -129,9 +129,9 @@ paths:
|
||||||
- Room discovery
|
- Room discovery
|
||||||
/publicRooms:
|
/publicRooms:
|
||||||
get:
|
get:
|
||||||
summary: Lists the public rooms on the server.
|
summary: Lists a server's published room directory
|
||||||
description: |-
|
description: |-
|
||||||
Lists the public rooms on the server.
|
Lists a server's published room directory.
|
||||||
|
|
||||||
This API returns paginated responses. The rooms are ordered by the number
|
This API returns paginated responses. The rooms are ordered by the number
|
||||||
of joined members, with the largest rooms first.
|
of joined members, with the largest rooms first.
|
||||||
|
|
@ -154,13 +154,13 @@ paths:
|
||||||
- in: query
|
- in: query
|
||||||
name: server
|
name: server
|
||||||
description: |-
|
description: |-
|
||||||
The server to fetch the public room lists from. Defaults to the
|
The server to fetch the published room directory from. Defaults
|
||||||
local server. Case sensitive.
|
to the local server. Case sensitive.
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
description: A list of the rooms on the server.
|
description: A list of the published rooms on the server.
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
|
|
@ -168,9 +168,9 @@ paths:
|
||||||
tags:
|
tags:
|
||||||
- Room discovery
|
- Room discovery
|
||||||
post:
|
post:
|
||||||
summary: Lists the public rooms on the server with optional filter.
|
summary: Lists a server's published room directory with an optional filter
|
||||||
description: |-
|
description: |-
|
||||||
Lists the public rooms on the server, with optional filter.
|
Lists a server's published room directory with an optional filter.
|
||||||
|
|
||||||
This API returns paginated responses. The rooms are ordered by the number
|
This API returns paginated responses. The rooms are ordered by the number
|
||||||
of joined members, with the largest rooms first.
|
of joined members, with the largest rooms first.
|
||||||
|
|
@ -182,8 +182,8 @@ paths:
|
||||||
- in: query
|
- in: query
|
||||||
name: server
|
name: server
|
||||||
description: |-
|
description: |-
|
||||||
The server to fetch the public room lists from. Defaults to the
|
The server to fetch the published room directory from. Defaults
|
||||||
local server. Case sensitive.
|
to the local server. Case sensitive.
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
requestBody:
|
requestBody:
|
||||||
|
|
@ -253,7 +253,7 @@ paths:
|
||||||
required: true
|
required: true
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
description: A list of the rooms on the server.
|
description: A filtered list of the published rooms on the server.
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,7 @@ paths:
|
||||||
deleted alongside the device.
|
deleted alongside the device.
|
||||||
|
|
||||||
This endpoint does not use the [User-Interactive Authentication API](/client-server-api/#user-interactive-authentication-api) because
|
This endpoint does not use the [User-Interactive Authentication API](/client-server-api/#user-interactive-authentication-api) because
|
||||||
User-Interactive Authentication is designed to protect against attacks where the
|
User-Interactive Authentication is designed to protect against attacks where
|
||||||
someone gets hold of a single access token then takes over the account. This
|
someone gets hold of a single access token then takes over the account. This
|
||||||
endpoint invalidates all access tokens for the user, including the token used in
|
endpoint invalidates all access tokens for the user, including the token used in
|
||||||
the request, and therefore the attacker is unable to take over the account in
|
the request, and therefore the attacker is unable to take over the account in
|
||||||
|
|
|
||||||
176
data/api/client-server/oauth_server_metadata.yaml
Normal file
176
data/api/client-server/oauth_server_metadata.yaml
Normal file
|
|
@ -0,0 +1,176 @@
|
||||||
|
# Copyright 2025 The Matrix.org Foundation C.I.C.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
openapi: 3.1.0
|
||||||
|
info:
|
||||||
|
title: Matrix Client-Server OAuth 2.0 Server Metadata Discovery API
|
||||||
|
version: 1.0.0
|
||||||
|
paths:
|
||||||
|
"/auth_metadata":
|
||||||
|
get:
|
||||||
|
summary: Get the OAuth 2.0 authorization server metadata.
|
||||||
|
description: |-
|
||||||
|
Gets the OAuth 2.0 authorization server metadata, as defined in
|
||||||
|
[RFC 8414](https://datatracker.ietf.org/doc/html/rfc8414), including the
|
||||||
|
endpoint URLs and the supported parameters that can be used by the
|
||||||
|
clients.
|
||||||
|
|
||||||
|
This endpoint definition includes only the fields that are meaningful in
|
||||||
|
the context of the Matrix specification. The full list of possible
|
||||||
|
fields is available in the [OAuth Authorization Server Metadata
|
||||||
|
registry](https://www.iana.org/assignments/oauth-parameters/oauth-parameters.xhtml#authorization-server-metadata),
|
||||||
|
and normative definitions of them are available in their respective
|
||||||
|
RFCs.
|
||||||
|
|
||||||
|
{{% boxes/note %}}
|
||||||
|
The authorization server metadata is relatively large and may change
|
||||||
|
over time. Clients should:
|
||||||
|
|
||||||
|
- Cache the metadata appropriately based on HTTP caching headers
|
||||||
|
- Refetch the metadata if it is stale
|
||||||
|
{{% /boxes/note %}}
|
||||||
|
operationId: getAuthMetadata
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: The OAuth 2.0 authorization server metadata.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
issuer:
|
||||||
|
type: string
|
||||||
|
format: uri
|
||||||
|
description: |-
|
||||||
|
The authorization server's issuer identifier, which is a URL that uses the
|
||||||
|
`https` scheme and has no query or fragment components.
|
||||||
|
|
||||||
|
This is not used in the context of the Matrix specification, but is required
|
||||||
|
by [RFC 8414](https://datatracker.ietf.org/doc/html/rfc8414).
|
||||||
|
authorization_endpoint:
|
||||||
|
type: string
|
||||||
|
format: uri
|
||||||
|
description: |-
|
||||||
|
URL of the authorization endpoint, necessary to use the authorization code
|
||||||
|
grant.
|
||||||
|
token_endpoint:
|
||||||
|
type: string
|
||||||
|
format: uri
|
||||||
|
description: |-
|
||||||
|
URL of the token endpoint, necessary to use the authorization code grant and
|
||||||
|
the refresh token grant.
|
||||||
|
revocation_endpoint:
|
||||||
|
type: string
|
||||||
|
format: uri
|
||||||
|
description: |-
|
||||||
|
URL of the revocation endpoint, necessary to log out a client by invalidating
|
||||||
|
its access and refresh tokens.
|
||||||
|
registration_endpoint:
|
||||||
|
type: string
|
||||||
|
format: uri
|
||||||
|
description: |-
|
||||||
|
URL of the client registration endpoint, necessary to perform dynamic
|
||||||
|
registration of a client.
|
||||||
|
response_types_supported:
|
||||||
|
type: array
|
||||||
|
description: |-
|
||||||
|
List of OAuth 2.0 response type strings that the server supports at the
|
||||||
|
authorization endpoint.
|
||||||
|
|
||||||
|
This array MUST contain at least the `code` value, for clients to be able to
|
||||||
|
use the authorization code grant.
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
description: A response type that the server supports.
|
||||||
|
grant_types_supported:
|
||||||
|
type: array
|
||||||
|
description: |-
|
||||||
|
List of OAuth 2.0 grant type strings that the server supports at the token
|
||||||
|
endpoint.
|
||||||
|
|
||||||
|
This array MUST contain at least the `authorization_code` and `refresh_token`
|
||||||
|
values, for clients to be able to use the authorization code grant and refresh
|
||||||
|
token grant, respectively.
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
description: A grant type that the server supports.
|
||||||
|
response_modes_supported:
|
||||||
|
type: array
|
||||||
|
description: |-
|
||||||
|
List of OAuth 2.0 response mode strings that the server supports at the
|
||||||
|
authorization endpoint.
|
||||||
|
|
||||||
|
This array MUST contain at least the `query` and `fragment` values, for
|
||||||
|
improved security in the authorization code grant.
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
description: A response mode that the server supports.
|
||||||
|
code_challenge_methods_supported:
|
||||||
|
type: array
|
||||||
|
description: |-
|
||||||
|
List of OAuth 2.0 Proof Key for Code Exchange (PKCE) code challenge methods
|
||||||
|
that the server supports at the authorization endpoint.
|
||||||
|
|
||||||
|
This array MUST contain at least the `S256` value, for improved security in
|
||||||
|
the authorization code grant.
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
description: A PKCE code challenge method that the server supports.
|
||||||
|
prompt_values_supported:
|
||||||
|
type: array
|
||||||
|
description: |-
|
||||||
|
List of OpenID Connect prompt values that the server supports at the
|
||||||
|
authorization endpoint.
|
||||||
|
|
||||||
|
Only the `create` value defined in [Initiating User Registration via OpenID
|
||||||
|
Connect](https://openid.net/specs/openid-connect-prompt-create-1_0.html) is
|
||||||
|
supported, for a client to signal to the server that the user desires to
|
||||||
|
register a new account.
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
description: A prompt value that the server supports.
|
||||||
|
required:
|
||||||
|
- issuer
|
||||||
|
- authorization_endpoint
|
||||||
|
- token_endpoint
|
||||||
|
- revocation_endpoint
|
||||||
|
- registration_endpoint
|
||||||
|
- response_types_supported
|
||||||
|
- grant_types_supported
|
||||||
|
- response_modes_supported
|
||||||
|
- code_challenge_methods_supported
|
||||||
|
example: {
|
||||||
|
"issuer": "https://account.example.com/",
|
||||||
|
"authorization_endpoint": "https://account.example.com/oauth2/auth",
|
||||||
|
"token_endpoint": "https://account.example.com/oauth2/token",
|
||||||
|
"registration_endpoint": "https://account.example.com/oauth2/clients/register",
|
||||||
|
"revocation_endpoint": "https://account.example.com/oauth2/revoke",
|
||||||
|
"response_types_supported": ["code"],
|
||||||
|
"grant_types_supported": ["authorization_code", "refresh_token"],
|
||||||
|
"response_modes_supported": ["query", "fragment"],
|
||||||
|
"code_challenge_methods_supported": ["S256"],
|
||||||
|
}
|
||||||
|
tags:
|
||||||
|
- Session management
|
||||||
|
servers:
|
||||||
|
- url: "{protocol}://{hostname}{basePath}"
|
||||||
|
variables:
|
||||||
|
protocol:
|
||||||
|
enum:
|
||||||
|
- http
|
||||||
|
- https
|
||||||
|
default: https
|
||||||
|
hostname:
|
||||||
|
default: localhost:8008
|
||||||
|
basePath:
|
||||||
|
default: /_matrix/client/v1
|
||||||
242
data/api/client-server/password_management.yaml
Normal file
242
data/api/client-server/password_management.yaml
Normal file
|
|
@ -0,0 +1,242 @@
|
||||||
|
# Copyright 2016 OpenMarket Ltd
|
||||||
|
# Copyright 2022 The Matrix.org Foundation C.I.C.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
openapi: 3.1.0
|
||||||
|
info:
|
||||||
|
title: Matrix Client-Server Password Management API
|
||||||
|
version: 1.0.0
|
||||||
|
paths:
|
||||||
|
/account/password:
|
||||||
|
post:
|
||||||
|
summary: Changes a user's password.
|
||||||
|
description: |-
|
||||||
|
Changes the password for an account on this homeserver.
|
||||||
|
|
||||||
|
This API endpoint uses the [User-Interactive Authentication API](/client-server-api/#user-interactive-authentication-api) to
|
||||||
|
ensure the user changing the password is actually the owner of the
|
||||||
|
account.
|
||||||
|
|
||||||
|
An access token should be submitted to this endpoint if the client has
|
||||||
|
an active session.
|
||||||
|
|
||||||
|
The homeserver may change the flows available depending on whether a
|
||||||
|
valid access token is provided. The homeserver SHOULD NOT revoke the
|
||||||
|
access token provided in the request. Whether other access tokens for
|
||||||
|
the user are revoked depends on the request parameters.
|
||||||
|
security:
|
||||||
|
- {}
|
||||||
|
- accessTokenQuery: []
|
||||||
|
- accessTokenBearer: []
|
||||||
|
operationId: changePassword
|
||||||
|
requestBody:
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
new_password:
|
||||||
|
type: string
|
||||||
|
description: The new password for the account.
|
||||||
|
example: ihatebananas
|
||||||
|
logout_devices:
|
||||||
|
type: boolean
|
||||||
|
description: |-
|
||||||
|
Whether the user's other access tokens, and their associated devices, should be
|
||||||
|
revoked if the request succeeds. Defaults to true.
|
||||||
|
|
||||||
|
When `false`, the server can still take advantage of the [soft logout method](/client-server-api/#soft-logout)
|
||||||
|
for the user's remaining devices.
|
||||||
|
example: true
|
||||||
|
auth:
|
||||||
|
description: Additional authentication information for the user-interactive
|
||||||
|
authentication API.
|
||||||
|
allOf:
|
||||||
|
- $ref: definitions/auth_data.yaml
|
||||||
|
required:
|
||||||
|
- new_password
|
||||||
|
required: true
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: The password has been changed.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
examples:
|
||||||
|
response:
|
||||||
|
value: {}
|
||||||
|
"401":
|
||||||
|
description: The homeserver requires additional authentication information.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: definitions/auth_response.yaml
|
||||||
|
"429":
|
||||||
|
description: This request was rate-limited.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: definitions/errors/rate_limited.yaml
|
||||||
|
tags:
|
||||||
|
- Account management
|
||||||
|
/account/password/email/requestToken:
|
||||||
|
post:
|
||||||
|
summary: Requests a validation token be sent to the given email address for the
|
||||||
|
purpose of resetting a user's password
|
||||||
|
description: |-
|
||||||
|
The homeserver must check that the given email address **is
|
||||||
|
associated** with an account on this homeserver. This API should be
|
||||||
|
used to request validation tokens when authenticating for the
|
||||||
|
`/account/password` endpoint.
|
||||||
|
|
||||||
|
This API's parameters and response are identical to that of the
|
||||||
|
[`/register/email/requestToken`](/client-server-api/#post_matrixclientv3registeremailrequesttoken)
|
||||||
|
endpoint, except that
|
||||||
|
`M_THREEPID_NOT_FOUND` may be returned if no account matching the
|
||||||
|
given email address could be found. The server may instead send an
|
||||||
|
email to the given address prompting the user to create an account.
|
||||||
|
`M_THREEPID_IN_USE` may not be returned.
|
||||||
|
|
||||||
|
The homeserver should validate the email itself, either by sending a
|
||||||
|
validation email itself or by using a service it has control over.
|
||||||
|
operationId: requestTokenToResetPasswordEmail
|
||||||
|
requestBody:
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: definitions/request_email_validation.yaml
|
||||||
|
required: true
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: An email was sent to the given address.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: definitions/request_token_response.yaml
|
||||||
|
"400":
|
||||||
|
description: |-
|
||||||
|
The referenced third-party identifier is not recognised by the
|
||||||
|
homeserver, or the request was invalid. The error code `M_SERVER_NOT_TRUSTED`
|
||||||
|
can be returned if the server does not trust/support the identity server
|
||||||
|
provided in the request.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: definitions/errors/error.yaml
|
||||||
|
examples:
|
||||||
|
response:
|
||||||
|
value: {
|
||||||
|
"errcode": "M_THREEPID_NOT_FOUND",
|
||||||
|
"error": "Email not found"
|
||||||
|
}
|
||||||
|
"403":
|
||||||
|
description: |-
|
||||||
|
The homeserver does not allow the third-party identifier as a
|
||||||
|
contact option.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: definitions/errors/error.yaml
|
||||||
|
examples:
|
||||||
|
response:
|
||||||
|
value: {
|
||||||
|
"errcode": "M_THREEPID_DENIED",
|
||||||
|
"error": "Third-party identifier is not allowed"
|
||||||
|
}
|
||||||
|
tags:
|
||||||
|
- Account management
|
||||||
|
/account/password/msisdn/requestToken:
|
||||||
|
post:
|
||||||
|
summary: Requests a validation token be sent to the given phone number for the
|
||||||
|
purpose of resetting a user's password.
|
||||||
|
description: |-
|
||||||
|
The homeserver must check that the given phone number **is
|
||||||
|
associated** with an account on this homeserver. This API should be
|
||||||
|
used to request validation tokens when authenticating for the
|
||||||
|
`/account/password` endpoint.
|
||||||
|
|
||||||
|
This API's parameters and response are identical to that of the
|
||||||
|
[`/register/msisdn/requestToken`](/client-server-api/#post_matrixclientv3registermsisdnrequesttoken)
|
||||||
|
endpoint, except that
|
||||||
|
`M_THREEPID_NOT_FOUND` may be returned if no account matching the
|
||||||
|
given phone number could be found. The server may instead send the SMS
|
||||||
|
to the given phone number prompting the user to create an account.
|
||||||
|
`M_THREEPID_IN_USE` may not be returned.
|
||||||
|
|
||||||
|
The homeserver should validate the phone number itself, either by sending a
|
||||||
|
validation message itself or by using a service it has control over.
|
||||||
|
operationId: requestTokenToResetPasswordMSISDN
|
||||||
|
requestBody:
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: definitions/request_msisdn_validation.yaml
|
||||||
|
required: true
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: An SMS message was sent to the given phone number.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: definitions/request_token_response.yaml
|
||||||
|
"400":
|
||||||
|
description: |-
|
||||||
|
The referenced third-party identifier is not recognised by the
|
||||||
|
homeserver, or the request was invalid. The error code `M_SERVER_NOT_TRUSTED`
|
||||||
|
can be returned if the server does not trust/support the identity server
|
||||||
|
provided in the request.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: definitions/errors/error.yaml
|
||||||
|
examples:
|
||||||
|
response:
|
||||||
|
value: {
|
||||||
|
"errcode": "M_THREEPID_NOT_FOUND",
|
||||||
|
"error": "Phone number not found"
|
||||||
|
}
|
||||||
|
"403":
|
||||||
|
description: |-
|
||||||
|
The homeserver does not allow the third-party identifier as a
|
||||||
|
contact option.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: definitions/errors/error.yaml
|
||||||
|
examples:
|
||||||
|
response:
|
||||||
|
value: {
|
||||||
|
"errcode": "M_THREEPID_DENIED",
|
||||||
|
"error": "Third-party identifier is not allowed"
|
||||||
|
}
|
||||||
|
tags:
|
||||||
|
- Account management
|
||||||
|
servers:
|
||||||
|
- url: "{protocol}://{hostname}{basePath}"
|
||||||
|
variables:
|
||||||
|
protocol:
|
||||||
|
enum:
|
||||||
|
- http
|
||||||
|
- https
|
||||||
|
default: https
|
||||||
|
hostname:
|
||||||
|
default: localhost:8008
|
||||||
|
basePath:
|
||||||
|
default: /_matrix/client/v3
|
||||||
|
components:
|
||||||
|
securitySchemes:
|
||||||
|
accessTokenQuery:
|
||||||
|
$ref: definitions/security.yaml#/accessTokenQuery
|
||||||
|
accessTokenBearer:
|
||||||
|
$ref: definitions/security.yaml#/accessTokenBearer
|
||||||
|
|
@ -373,315 +373,6 @@ paths:
|
||||||
}
|
}
|
||||||
tags:
|
tags:
|
||||||
- Account management
|
- Account management
|
||||||
/account/password:
|
|
||||||
post:
|
|
||||||
summary: Changes a user's password.
|
|
||||||
description: |-
|
|
||||||
Changes the password for an account on this homeserver.
|
|
||||||
|
|
||||||
This API endpoint uses the [User-Interactive Authentication API](/client-server-api/#user-interactive-authentication-api) to
|
|
||||||
ensure the user changing the password is actually the owner of the
|
|
||||||
account.
|
|
||||||
|
|
||||||
An access token should be submitted to this endpoint if the client has
|
|
||||||
an active session.
|
|
||||||
|
|
||||||
The homeserver may change the flows available depending on whether a
|
|
||||||
valid access token is provided. The homeserver SHOULD NOT revoke the
|
|
||||||
access token provided in the request. Whether other access tokens for
|
|
||||||
the user are revoked depends on the request parameters.
|
|
||||||
security:
|
|
||||||
- {}
|
|
||||||
- accessTokenQuery: []
|
|
||||||
- accessTokenBearer: []
|
|
||||||
operationId: changePassword
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
new_password:
|
|
||||||
type: string
|
|
||||||
description: The new password for the account.
|
|
||||||
example: ihatebananas
|
|
||||||
logout_devices:
|
|
||||||
type: boolean
|
|
||||||
description: |-
|
|
||||||
Whether the user's other access tokens, and their associated devices, should be
|
|
||||||
revoked if the request succeeds. Defaults to true.
|
|
||||||
|
|
||||||
When `false`, the server can still take advantage of the [soft logout method](/client-server-api/#soft-logout)
|
|
||||||
for the user's remaining devices.
|
|
||||||
example: true
|
|
||||||
auth:
|
|
||||||
description: Additional authentication information for the user-interactive
|
|
||||||
authentication API.
|
|
||||||
allOf:
|
|
||||||
- $ref: definitions/auth_data.yaml
|
|
||||||
required:
|
|
||||||
- new_password
|
|
||||||
required: true
|
|
||||||
responses:
|
|
||||||
"200":
|
|
||||||
description: The password has been changed.
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
examples:
|
|
||||||
response:
|
|
||||||
value: {}
|
|
||||||
"401":
|
|
||||||
description: The homeserver requires additional authentication information.
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: definitions/auth_response.yaml
|
|
||||||
"429":
|
|
||||||
description: This request was rate-limited.
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: definitions/errors/rate_limited.yaml
|
|
||||||
tags:
|
|
||||||
- Account management
|
|
||||||
/account/password/email/requestToken:
|
|
||||||
post:
|
|
||||||
summary: Requests a validation token be sent to the given email address for the
|
|
||||||
purpose of resetting a user's password
|
|
||||||
description: |-
|
|
||||||
The homeserver must check that the given email address **is
|
|
||||||
associated** with an account on this homeserver. This API should be
|
|
||||||
used to request validation tokens when authenticating for the
|
|
||||||
`/account/password` endpoint.
|
|
||||||
|
|
||||||
This API's parameters and response are identical to that of the
|
|
||||||
[`/register/email/requestToken`](/client-server-api/#post_matrixclientv3registeremailrequesttoken)
|
|
||||||
endpoint, except that
|
|
||||||
`M_THREEPID_NOT_FOUND` may be returned if no account matching the
|
|
||||||
given email address could be found. The server may instead send an
|
|
||||||
email to the given address prompting the user to create an account.
|
|
||||||
`M_THREEPID_IN_USE` may not be returned.
|
|
||||||
|
|
||||||
The homeserver should validate the email itself, either by sending a
|
|
||||||
validation email itself or by using a service it has control over.
|
|
||||||
operationId: requestTokenToResetPasswordEmail
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: definitions/request_email_validation.yaml
|
|
||||||
required: true
|
|
||||||
responses:
|
|
||||||
"200":
|
|
||||||
description: An email was sent to the given address.
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: definitions/request_token_response.yaml
|
|
||||||
"400":
|
|
||||||
description: |-
|
|
||||||
The referenced third-party identifier is not recognised by the
|
|
||||||
homeserver, or the request was invalid. The error code `M_SERVER_NOT_TRUSTED`
|
|
||||||
can be returned if the server does not trust/support the identity server
|
|
||||||
provided in the request.
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: definitions/errors/error.yaml
|
|
||||||
examples:
|
|
||||||
response:
|
|
||||||
value: {
|
|
||||||
"errcode": "M_THREEPID_NOT_FOUND",
|
|
||||||
"error": "Email not found"
|
|
||||||
}
|
|
||||||
"403":
|
|
||||||
description: |-
|
|
||||||
The homeserver does not allow the third-party identifier as a
|
|
||||||
contact option.
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: definitions/errors/error.yaml
|
|
||||||
examples:
|
|
||||||
response:
|
|
||||||
value: {
|
|
||||||
"errcode": "M_THREEPID_DENIED",
|
|
||||||
"error": "Third-party identifier is not allowed"
|
|
||||||
}
|
|
||||||
tags:
|
|
||||||
- Account management
|
|
||||||
/account/password/msisdn/requestToken:
|
|
||||||
post:
|
|
||||||
summary: Requests a validation token be sent to the given phone number for the
|
|
||||||
purpose of resetting a user's password.
|
|
||||||
description: |-
|
|
||||||
The homeserver must check that the given phone number **is
|
|
||||||
associated** with an account on this homeserver. This API should be
|
|
||||||
used to request validation tokens when authenticating for the
|
|
||||||
`/account/password` endpoint.
|
|
||||||
|
|
||||||
This API's parameters and response are identical to that of the
|
|
||||||
[`/register/msisdn/requestToken`](/client-server-api/#post_matrixclientv3registermsisdnrequesttoken)
|
|
||||||
endpoint, except that
|
|
||||||
`M_THREEPID_NOT_FOUND` may be returned if no account matching the
|
|
||||||
given phone number could be found. The server may instead send the SMS
|
|
||||||
to the given phone number prompting the user to create an account.
|
|
||||||
`M_THREEPID_IN_USE` may not be returned.
|
|
||||||
|
|
||||||
The homeserver should validate the phone number itself, either by sending a
|
|
||||||
validation message itself or by using a service it has control over.
|
|
||||||
operationId: requestTokenToResetPasswordMSISDN
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: definitions/request_msisdn_validation.yaml
|
|
||||||
required: true
|
|
||||||
responses:
|
|
||||||
"200":
|
|
||||||
description: An SMS message was sent to the given phone number.
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: definitions/request_token_response.yaml
|
|
||||||
"400":
|
|
||||||
description: |-
|
|
||||||
The referenced third-party identifier is not recognised by the
|
|
||||||
homeserver, or the request was invalid. The error code `M_SERVER_NOT_TRUSTED`
|
|
||||||
can be returned if the server does not trust/support the identity server
|
|
||||||
provided in the request.
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: definitions/errors/error.yaml
|
|
||||||
examples:
|
|
||||||
response:
|
|
||||||
value: {
|
|
||||||
"errcode": "M_THREEPID_NOT_FOUND",
|
|
||||||
"error": "Phone number not found"
|
|
||||||
}
|
|
||||||
"403":
|
|
||||||
description: |-
|
|
||||||
The homeserver does not allow the third-party identifier as a
|
|
||||||
contact option.
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: definitions/errors/error.yaml
|
|
||||||
examples:
|
|
||||||
response:
|
|
||||||
value: {
|
|
||||||
"errcode": "M_THREEPID_DENIED",
|
|
||||||
"error": "Third-party identifier is not allowed"
|
|
||||||
}
|
|
||||||
tags:
|
|
||||||
- Account management
|
|
||||||
/account/deactivate:
|
|
||||||
post:
|
|
||||||
summary: Deactivate a user's account.
|
|
||||||
description: |-
|
|
||||||
Deactivate the user's account, removing all ability for the user to
|
|
||||||
login again.
|
|
||||||
|
|
||||||
This API endpoint uses the [User-Interactive Authentication API](/client-server-api/#user-interactive-authentication-api).
|
|
||||||
|
|
||||||
An access token should be submitted to this endpoint if the client has
|
|
||||||
an active session.
|
|
||||||
|
|
||||||
The homeserver may change the flows available depending on whether a
|
|
||||||
valid access token is provided.
|
|
||||||
|
|
||||||
Unlike other endpoints, this endpoint does not take an `id_access_token`
|
|
||||||
parameter because the homeserver is expected to sign the request to the
|
|
||||||
identity server instead.
|
|
||||||
security:
|
|
||||||
- {}
|
|
||||||
- accessTokenQuery: []
|
|
||||||
- accessTokenBearer: []
|
|
||||||
operationId: deactivateAccount
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
auth:
|
|
||||||
description: Additional authentication information for the user-interactive
|
|
||||||
authentication API.
|
|
||||||
allOf:
|
|
||||||
- $ref: definitions/auth_data.yaml
|
|
||||||
id_server:
|
|
||||||
type: string
|
|
||||||
description: |-
|
|
||||||
The identity server to unbind all of the user's 3PIDs from.
|
|
||||||
If not provided, the homeserver MUST use the `id_server`
|
|
||||||
that was originally use to bind each identifier. If the
|
|
||||||
homeserver does not know which `id_server` that was,
|
|
||||||
it must return an `id_server_unbind_result` of
|
|
||||||
`no-support`.
|
|
||||||
example: example.org
|
|
||||||
erase:
|
|
||||||
x-addedInMatrixVersion: "1.10"
|
|
||||||
type: boolean
|
|
||||||
description: |-
|
|
||||||
Whether the user would like their content to be erased as
|
|
||||||
much as possible from the server.
|
|
||||||
|
|
||||||
Erasure means that any users (or servers) which join the
|
|
||||||
room after the erasure request are served redacted copies of
|
|
||||||
the events sent by this account. Users which had visibility
|
|
||||||
on those events prior to the erasure are still able to see
|
|
||||||
unredacted copies. No redactions are sent and the erasure
|
|
||||||
request is not shared over federation, so other servers
|
|
||||||
might still serve unredacted copies.
|
|
||||||
|
|
||||||
The server should additionally erase any non-event data
|
|
||||||
associated with the user, such as [account data](/client-server-api/#client-config)
|
|
||||||
and [contact 3PIDs](/client-server-api/#adding-account-administrative-contact-information).
|
|
||||||
|
|
||||||
Defaults to `false` if not present.
|
|
||||||
required: true
|
|
||||||
responses:
|
|
||||||
"200":
|
|
||||||
description: The account has been deactivated.
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
id_server_unbind_result:
|
|
||||||
type: string
|
|
||||||
enum:
|
|
||||||
- success
|
|
||||||
- no-support
|
|
||||||
description: |-
|
|
||||||
An indicator as to whether or not the homeserver was able to unbind
|
|
||||||
the user's 3PIDs from the identity server(s). `success` indicates
|
|
||||||
that all identifiers have been unbound from the identity server while
|
|
||||||
`no-support` indicates that one or more identifiers failed to unbind
|
|
||||||
due to the identity server refusing the request or the homeserver
|
|
||||||
being unable to determine an identity server to unbind from. This
|
|
||||||
must be `success` if the homeserver has no identifiers to unbind
|
|
||||||
for the user.
|
|
||||||
example: success
|
|
||||||
required:
|
|
||||||
- id_server_unbind_result
|
|
||||||
"401":
|
|
||||||
description: The homeserver requires additional authentication information.
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: definitions/auth_response.yaml
|
|
||||||
"429":
|
|
||||||
description: This request was rate-limited.
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: definitions/errors/rate_limited.yaml
|
|
||||||
tags:
|
|
||||||
- Account management
|
|
||||||
/register/available:
|
/register/available:
|
||||||
get:
|
get:
|
||||||
summary: Checks to see if a username is available on the server.
|
summary: Checks to see if a username is available on the server.
|
||||||
|
|
|
||||||
138
data/api/client-server/room_summary.yaml
Normal file
138
data/api/client-server/room_summary.yaml
Normal file
|
|
@ -0,0 +1,138 @@
|
||||||
|
# Copyright 2025 The Matrix.org Foundation C.I.C.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
openapi: 3.1.0
|
||||||
|
info:
|
||||||
|
title: Matrix Client-Server Room Summary API
|
||||||
|
version: 1.0.0
|
||||||
|
paths:
|
||||||
|
"/room_summary/{roomIdOrAlias}":
|
||||||
|
get:
|
||||||
|
x-addedInMatrixVersion: "1.15"
|
||||||
|
summary: Retrieves a summary for a room.
|
||||||
|
description: |-
|
||||||
|
Retrieves a summary for a room.
|
||||||
|
|
||||||
|
Clients should note that requests for rooms where the user's membership
|
||||||
|
is `invite` or `knock` might yield outdated, partial or even no data
|
||||||
|
since the server may not have access to the current state of the room.
|
||||||
|
|
||||||
|
Servers MAY allow unauthenticated access to this API if at least one of
|
||||||
|
the following conditions holds true:
|
||||||
|
|
||||||
|
- The room has a [join rule](#mroomjoin_rules) of `public`, `knock` or
|
||||||
|
`knock_restricted`.
|
||||||
|
- The room has a `world_readable` [history visibility](#room-history-visibility).
|
||||||
|
|
||||||
|
Servers should consider rate limiting requests that require a federation
|
||||||
|
request more heavily if the client is unauthenticated.
|
||||||
|
operationId: getRoomSummary
|
||||||
|
security:
|
||||||
|
- signedRequest: []
|
||||||
|
parameters:
|
||||||
|
- in: path
|
||||||
|
name: roomIdOrAlias
|
||||||
|
description: The room identifier or alias to summarise.
|
||||||
|
required: true
|
||||||
|
example: "#monkeys:matrix.org"
|
||||||
|
schema:
|
||||||
|
oneOf:
|
||||||
|
- type: string
|
||||||
|
format: mx-room-id
|
||||||
|
pattern: "^!"
|
||||||
|
- type: string
|
||||||
|
format: mx-room-alias
|
||||||
|
pattern: "^#"
|
||||||
|
- in: query
|
||||||
|
name: via
|
||||||
|
description: |-
|
||||||
|
The servers to attempt to request the summary from when
|
||||||
|
the local server cannot generate it (for instance, because
|
||||||
|
it has no local user in the room).
|
||||||
|
example:
|
||||||
|
- matrix.org
|
||||||
|
- elsewhere.ca
|
||||||
|
schema:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
format: mx-server-name
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: A summary of the room.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
description: A summary of the room.
|
||||||
|
allOf:
|
||||||
|
- $ref: ../client-server/definitions/room_summary.yaml
|
||||||
|
- type: object
|
||||||
|
properties:
|
||||||
|
membership:
|
||||||
|
description: |-
|
||||||
|
The membership state of the user if the user is joined to the room. Absent
|
||||||
|
if the API was called unauthenticated.
|
||||||
|
enum:
|
||||||
|
- invite
|
||||||
|
- join
|
||||||
|
- knock
|
||||||
|
- leave
|
||||||
|
- ban
|
||||||
|
type: string
|
||||||
|
examples:
|
||||||
|
response:
|
||||||
|
value: {
|
||||||
|
room_id: "!ol19s:bleecker.street",
|
||||||
|
avatar_url: "mxc://bleecker.street/CHEDDARandBRIE",
|
||||||
|
guest_can_join: false,
|
||||||
|
name: "CHEESE",
|
||||||
|
num_joined_members: 37,
|
||||||
|
topic: "Tasty tasty cheese",
|
||||||
|
world_readable: true,
|
||||||
|
join_rule: "public",
|
||||||
|
room_type: "m.space",
|
||||||
|
membership: "invite",
|
||||||
|
encryption: "m.megolm.v1.aes-sha2",
|
||||||
|
room_version: "9001",
|
||||||
|
}
|
||||||
|
"404":
|
||||||
|
description: |-
|
||||||
|
The room could not be found.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: ../client-server/definitions/errors/error.yaml
|
||||||
|
examples:
|
||||||
|
response:
|
||||||
|
value: {
|
||||||
|
"errcode": "M_NOT_FOUND",
|
||||||
|
"error": "Room not found."
|
||||||
|
}
|
||||||
|
servers:
|
||||||
|
- url: "{protocol}://{hostname}{basePath}"
|
||||||
|
variables:
|
||||||
|
protocol:
|
||||||
|
enum:
|
||||||
|
- http
|
||||||
|
- https
|
||||||
|
default: https
|
||||||
|
hostname:
|
||||||
|
default: localhost:8008
|
||||||
|
basePath:
|
||||||
|
default: /_matrix/client/v1
|
||||||
|
components:
|
||||||
|
securitySchemes:
|
||||||
|
accessTokenQuery:
|
||||||
|
$ref: definitions/security.yaml#/accessTokenQuery
|
||||||
|
accessTokenBearer:
|
||||||
|
$ref: definitions/security.yaml#/accessTokenBearer
|
||||||
|
|
@ -105,13 +105,31 @@ paths:
|
||||||
example: ""
|
example: ""
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
|
- in: query
|
||||||
|
name: format
|
||||||
|
x-addedInMatrixVersion: "1.16"
|
||||||
|
description: |-
|
||||||
|
The format to use for the returned data. `content` (the default) will
|
||||||
|
return only the content of the state event. `event` will return the entire
|
||||||
|
event in the usual format suitable for clients, including fields like event
|
||||||
|
ID, sender and timestamp.
|
||||||
|
example: event
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
enum:
|
||||||
|
- content
|
||||||
|
- event
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
description: The content of the state event.
|
description: |-
|
||||||
|
The content of the state event, or the entire client-formatted event
|
||||||
|
if `?format=event` was used.
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
type: object
|
oneOf:
|
||||||
|
- type: object
|
||||||
|
- $ref: "../../event-schemas/schema/core-event-schema/state_event.yaml"
|
||||||
examples:
|
examples:
|
||||||
response:
|
response:
|
||||||
value: {
|
value: {
|
||||||
|
|
|
||||||
|
|
@ -102,15 +102,10 @@ paths:
|
||||||
* The room's [`m.room.history_visibility`](#room-history-visibility) is set to `world_readable`.
|
* The room's [`m.room.history_visibility`](#room-history-visibility) is set to `world_readable`.
|
||||||
items:
|
items:
|
||||||
allOf:
|
allOf:
|
||||||
- $ref: definitions/public_rooms_chunk.yaml
|
- $ref: definitions/room_summary.yaml
|
||||||
- type: object
|
- type: object
|
||||||
title: SpaceHierarchyRoomsChunk
|
title: SpaceHierarchyRoomsChunk
|
||||||
properties:
|
properties:
|
||||||
room_type:
|
|
||||||
type: string
|
|
||||||
description: The `type` of room (from
|
|
||||||
[`m.room.create`](/client-server-api/#mroomcreate)),
|
|
||||||
if any.
|
|
||||||
children_state:
|
children_state:
|
||||||
type: array
|
type: array
|
||||||
description: |-
|
description: |-
|
||||||
|
|
@ -130,6 +125,14 @@ paths:
|
||||||
description: The `origin_server_ts` for the event.
|
description: The `origin_server_ts` for the event.
|
||||||
required:
|
required:
|
||||||
- origin_server_ts
|
- origin_server_ts
|
||||||
|
room_type:
|
||||||
|
x-addedInMatrixVersion: "1.4" # Extends room_summary.yaml
|
||||||
|
allowed_room_ids:
|
||||||
|
x-addedInMatrixVersion: "1.15" # Extends room_summary.yaml
|
||||||
|
encryption:
|
||||||
|
x-addedInMatrixVersion: "1.15" # Extends room_summary.yaml
|
||||||
|
room_version:
|
||||||
|
x-addedInMatrixVersion: "1.15" # Extends room_summary.yaml
|
||||||
required:
|
required:
|
||||||
- children_state
|
- children_state
|
||||||
next_batch:
|
next_batch:
|
||||||
|
|
|
||||||
|
|
@ -22,9 +22,12 @@ paths:
|
||||||
description: |-
|
description: |-
|
||||||
Gets server admin contact and support page of the domain.
|
Gets server admin contact and support page of the domain.
|
||||||
|
|
||||||
Like the [well-known discovery URI](/client-server-api/#well-known-uri),
|
{{% boxes/note %}}
|
||||||
this should be accessed with the hostname of the homeserver by making a
|
Like the [well-known discovery URI](/client-server-api/#well-known-uris),
|
||||||
|
this endpoint should be accessed with the hostname of the homeserver's
|
||||||
|
[server name](/appendices/#server-name) by making a
|
||||||
GET request to `https://hostname/.well-known/matrix/support`.
|
GET request to `https://hostname/.well-known/matrix/support`.
|
||||||
|
{{% /boxes/note %}}
|
||||||
|
|
||||||
Note that this endpoint is not necessarily handled by the homeserver.
|
Note that this endpoint is not necessarily handled by the homeserver.
|
||||||
It may be served by another webserver, used for discovering support
|
It may be served by another webserver, used for discovering support
|
||||||
|
|
|
||||||
|
|
@ -117,6 +117,31 @@ paths:
|
||||||
example: 30000
|
example: 30000
|
||||||
schema:
|
schema:
|
||||||
type: integer
|
type: integer
|
||||||
|
- in: query
|
||||||
|
name: use_state_after
|
||||||
|
x-addedInMatrixVersion: "1.16"
|
||||||
|
description: |-
|
||||||
|
Controls whether to receive state changes between the previous sync
|
||||||
|
and the **start** of the timeline, or between the previous sync and
|
||||||
|
the **end** of the timeline.
|
||||||
|
|
||||||
|
If this is set to `true`, servers MUST respond with the state
|
||||||
|
between the previous sync and the **end** of the timeline in
|
||||||
|
`state_after` and MUST omit `state`.
|
||||||
|
|
||||||
|
If `false`, servers MUST respond with the state between the previous
|
||||||
|
sync and the **start** of the timeline in `state` and MUST omit
|
||||||
|
`state_after`.
|
||||||
|
|
||||||
|
Even if this is set to `true`, clients MUST update their local state
|
||||||
|
with events in `state` and `timeline` if `state_after` is missing in
|
||||||
|
the response, for compatibility with servers that don't support this
|
||||||
|
parameter.
|
||||||
|
|
||||||
|
By default, this is `false`.
|
||||||
|
example: false
|
||||||
|
schema:
|
||||||
|
type: boolean
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
description: The initial snapshot or delta for the client to use to update their
|
description: The initial snapshot or delta for the client to use to update their
|
||||||
|
|
@ -197,16 +222,50 @@ paths:
|
||||||
type: object
|
type: object
|
||||||
description: |-
|
description: |-
|
||||||
Updates to the state, between the time indicated by
|
Updates to the state, between the time indicated by
|
||||||
the `since` parameter, and the start of the
|
the `since` parameter, and the **start** of the
|
||||||
`timeline` (or all state up to the start of the
|
`timeline` (or all state up to the **start** of the
|
||||||
`timeline`, if `since` is not given, or
|
`timeline`, if `since` is not given, or
|
||||||
`full_state` is true).
|
`full_state` is true).
|
||||||
|
|
||||||
N.B. state updates for `m.room.member` events will
|
{{% boxes/note %}}
|
||||||
|
State updates for `m.room.member` events will
|
||||||
be incomplete if `lazy_load_members` is enabled in
|
be incomplete if `lazy_load_members` is enabled in
|
||||||
the `/sync` filter, and only return the member events
|
the `/sync` filter, and only return the member events
|
||||||
required to display the senders of the timeline events
|
required to display the senders of the timeline events
|
||||||
in this response.
|
in this response.
|
||||||
|
{{% /boxes/note %}}
|
||||||
|
|
||||||
|
MUST be omitted if `use_state_after` was set to `true`
|
||||||
|
in the request.
|
||||||
|
allOf:
|
||||||
|
- $ref: definitions/state_event_batch.yaml
|
||||||
|
state_after:
|
||||||
|
title: State
|
||||||
|
type: object
|
||||||
|
x-addedInMatrixVersion: "1.16"
|
||||||
|
description: |-
|
||||||
|
Updates to the state, between the time indicated by
|
||||||
|
the `since` parameter, and the **end** of the
|
||||||
|
`timeline` (or all state up to the **end** of the
|
||||||
|
`timeline`, if `since` is not given, or
|
||||||
|
`full_state` is true).
|
||||||
|
|
||||||
|
{{% boxes/note %}}
|
||||||
|
State updates for `m.room.member` events will
|
||||||
|
be incomplete if `lazy_load_members` is enabled in
|
||||||
|
the `/sync` filter, and only return the member events
|
||||||
|
required to display the senders of the timeline events
|
||||||
|
in this response.
|
||||||
|
{{% /boxes/note %}}
|
||||||
|
|
||||||
|
If this field is set, even if it is empty, clients MUST
|
||||||
|
only update their local state with events in this list,
|
||||||
|
and MUST NOT update their local state with events in
|
||||||
|
`timeline`. If this field is not set, clients MUST update
|
||||||
|
their local state with events in `state` and `timeline`.
|
||||||
|
|
||||||
|
**Required** if `use_state_after` was set to `true` in the
|
||||||
|
request, even if it is empty.
|
||||||
allOf:
|
allOf:
|
||||||
- $ref: definitions/state_event_batch.yaml
|
- $ref: definitions/state_event_batch.yaml
|
||||||
timeline:
|
timeline:
|
||||||
|
|
@ -353,7 +412,28 @@ paths:
|
||||||
state:
|
state:
|
||||||
title: State
|
title: State
|
||||||
type: object
|
type: object
|
||||||
description: The state updates for the room up to the start of the timeline.
|
description: |-
|
||||||
|
The state updates for the room up to the **start** of the timeline.
|
||||||
|
|
||||||
|
MUST be omitted if `use_state_after` was set to `true` in the
|
||||||
|
request.
|
||||||
|
allOf:
|
||||||
|
- $ref: definitions/state_event_batch.yaml
|
||||||
|
state_after:
|
||||||
|
title: State
|
||||||
|
type: object
|
||||||
|
x-addedInMatrixVersion: "1.16"
|
||||||
|
description: |-
|
||||||
|
The state updates for the room up to the **end** of the timeline.
|
||||||
|
|
||||||
|
If this field is set, even if it is empty, clients MUST only
|
||||||
|
update their local state with events in this list, and MUST NOT
|
||||||
|
update their local state with events in `timeline`. If this field
|
||||||
|
is not set, clients MUST update their local state with events in
|
||||||
|
`state` and `timeline`.
|
||||||
|
|
||||||
|
**Required** if `use_state_after` was set to `true` in the
|
||||||
|
request, even if it is empty.
|
||||||
allOf:
|
allOf:
|
||||||
- $ref: definitions/state_event_batch.yaml
|
- $ref: definitions/state_event_batch.yaml
|
||||||
timeline:
|
timeline:
|
||||||
|
|
@ -441,17 +521,57 @@ paths:
|
||||||
"state": {
|
"state": {
|
||||||
"events": [
|
"events": [
|
||||||
{
|
{
|
||||||
"$ref": "../../event-schemas/examples/m.room.member.yaml"
|
"content": {
|
||||||
|
"avatar_url": "mxc://example.org/SFHyPlCeYUSFFxlgbQYZmoEoe",
|
||||||
|
"displayname": "Example user",
|
||||||
|
"membership": "join"
|
||||||
|
},
|
||||||
|
"event_id": "$143273976499sgjks:example.org",
|
||||||
|
"origin_server_ts": 1432735824653,
|
||||||
|
"sender": "@example:example.org",
|
||||||
|
"state_key": "@example:example.org",
|
||||||
|
"type": "m.room.member",
|
||||||
|
"unsigned": {
|
||||||
|
"age": 45603,
|
||||||
|
"membership": "join"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"timeline": {
|
"timeline": {
|
||||||
"events": [
|
"events": [
|
||||||
{
|
{
|
||||||
"$ref": "../../event-schemas/examples/m.room.member.yaml"
|
"content": {
|
||||||
|
"avatar_url": "mxc://example.org/SEsfnsuifSDFSSEF",
|
||||||
|
"displayname": "Alice Margatroid",
|
||||||
|
"membership": "join",
|
||||||
|
"reason": "Looking for support"
|
||||||
|
},
|
||||||
|
"event_id": "$143273582443PhrSn:example.org",
|
||||||
|
"origin_server_ts": 1432735824653,
|
||||||
|
"sender": "@alice:example.org",
|
||||||
|
"state_key": "@alice:example.org",
|
||||||
|
"type": "m.room.member",
|
||||||
|
"unsigned": {
|
||||||
|
"age": 1234,
|
||||||
|
"membership": "join"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"$ref": "../../event-schemas/examples/m.room.message$m.text.yaml"
|
"content": {
|
||||||
|
"body": "This is an example text message",
|
||||||
|
"format": "org.matrix.custom.html",
|
||||||
|
"formatted_body": "<b>This is an example text message</b>",
|
||||||
|
"msgtype": "m.text"
|
||||||
|
},
|
||||||
|
"event_id": "$143273582443PhrSn:example.org",
|
||||||
|
"origin_server_ts": 1432735824653,
|
||||||
|
"sender": "@example:example.org",
|
||||||
|
"type": "m.room.message",
|
||||||
|
"unsigned": {
|
||||||
|
"age": 1234,
|
||||||
|
"membership": "join"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"limited": true,
|
"limited": true,
|
||||||
|
|
|
||||||
|
|
@ -57,9 +57,6 @@ paths:
|
||||||
- A signature of the token, signed with the identity server's private key
|
- A signature of the token, signed with the identity server's private key
|
||||||
|
|
||||||
- The matrix user ID who invited them to the room
|
- The matrix user ID who invited them to the room
|
||||||
|
|
||||||
If a token is requested from the identity server, the homeserver will
|
|
||||||
append a `m.room.third_party_invite` event to the room.
|
|
||||||
operationId: inviteBy3PID
|
operationId: inviteBy3PID
|
||||||
security:
|
security:
|
||||||
- accessTokenQuery: []
|
- accessTokenQuery: []
|
||||||
|
|
@ -72,6 +69,8 @@ paths:
|
||||||
example: "!d41d8cd:matrix.org"
|
example: "!d41d8cd:matrix.org"
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
|
format: mx-room-id
|
||||||
|
pattern: "^!"
|
||||||
requestBody:
|
requestBody:
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
|
|
@ -90,7 +89,9 @@ paths:
|
||||||
value: {}
|
value: {}
|
||||||
"403":
|
"403":
|
||||||
description: |-
|
description: |-
|
||||||
You do not have permission to invite the user to the room. A meaningful `errcode` and description error text will be returned. Example reasons for rejections are:
|
You do not have permission to invite the user to the room. A
|
||||||
|
meaningful `errcode` and description error text will be returned.
|
||||||
|
Example reasons for rejections are:
|
||||||
|
|
||||||
- The invitee has been banned from the room.
|
- The invitee has been banned from the room.
|
||||||
- The invitee is already a member of the room.
|
- The invitee is already a member of the room.
|
||||||
|
|
|
||||||
|
|
@ -20,10 +20,17 @@ paths:
|
||||||
post:
|
post:
|
||||||
summary: Searches the user directory.
|
summary: Searches the user directory.
|
||||||
description: |-
|
description: |-
|
||||||
Performs a search for users. The homeserver may
|
Performs a search for users. The homeserver may determine which
|
||||||
determine which subset of users are searched, however the homeserver
|
subset of users are searched. However, the homeserver MUST at a
|
||||||
MUST at a minimum consider the users the requesting user shares a
|
minimum consider users who are visible to the requester based
|
||||||
room with and those who reside in public rooms (known to the homeserver).
|
on their membership in rooms known to the homeserver. This means:
|
||||||
|
|
||||||
|
- users that share a room with the requesting user
|
||||||
|
- users who are joined to rooms known to the homeserver that have a
|
||||||
|
`public` [join rule](#mroomjoin_rules)
|
||||||
|
- users who are joined to rooms known to the homeserver that have a
|
||||||
|
`world_readable` [history visibility](#room-history-visibility)
|
||||||
|
|
||||||
The search MUST consider local users to the homeserver, and SHOULD
|
The search MUST consider local users to the homeserver, and SHOULD
|
||||||
query remote users as part of the search.
|
query remote users as part of the search.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,12 @@ paths:
|
||||||
suitably namespaced for each application and reduces the risk of
|
suitably namespaced for each application and reduces the risk of
|
||||||
clashes.
|
clashes.
|
||||||
|
|
||||||
|
{{% boxes/note %}}
|
||||||
|
This endpoint should be accessed with the hostname of the homeserver's
|
||||||
|
[server name](/appendices/#server-name) by making a
|
||||||
|
GET request to `https://hostname/.well-known/matrix/client`.
|
||||||
|
{{% /boxes/note %}}
|
||||||
|
|
||||||
Note that this endpoint is not necessarily handled by the homeserver,
|
Note that this endpoint is not necessarily handled by the homeserver,
|
||||||
but by another webserver, to be used for discovering the homeserver URL.
|
but by another webserver, to be used for discovering the homeserver URL.
|
||||||
operationId: getWellknown
|
operationId: getWellknown
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,8 @@ paths:
|
||||||
properties:
|
properties:
|
||||||
public_key:
|
public_key:
|
||||||
type: string
|
type: string
|
||||||
description: Unpadded Base64 encoded public key.
|
description: |-
|
||||||
|
[Unpadded Base64](/appendices/#unpadded-base64)-encoded public key.
|
||||||
required:
|
required:
|
||||||
- public_key
|
- public_key
|
||||||
examples:
|
examples:
|
||||||
|
|
@ -74,7 +75,8 @@ paths:
|
||||||
- in: query
|
- in: query
|
||||||
name: public_key
|
name: public_key
|
||||||
required: true
|
required: true
|
||||||
description: The unpadded base64-encoded public key to check.
|
description: |-
|
||||||
|
The [unpadded Base64](/appendices/#unpadded-base64)-encoded public key to check.
|
||||||
example: VXuGitF39UH5iRfvbIknlvlAVKgD1BsLDMvBf0pmp7c
|
example: VXuGitF39UH5iRfvbIknlvlAVKgD1BsLDMvBf0pmp7c
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
|
|
@ -105,7 +107,14 @@ paths:
|
||||||
- in: query
|
- in: query
|
||||||
name: public_key
|
name: public_key
|
||||||
required: true
|
required: true
|
||||||
description: The unpadded base64-encoded public key to check.
|
description: |-
|
||||||
|
The [unpadded Base64](/appendices/#unpadded-base64)-encoded public
|
||||||
|
key to check.
|
||||||
|
|
||||||
|
This MUST be the exact same encoded string returned in the response
|
||||||
|
of the [`/store-invite`](/identity-service-api/#post_matrixidentityv2store-invite)
|
||||||
|
endpoint, or found in the corresponding [`m.room.third_party_invite`](/client-server-api/#mroomthird_party_invite)
|
||||||
|
event, so it may use the standard or URL-safe alphabets.
|
||||||
example: VXuGitF39UH5iRfvbIknlvlAVKgD1BsLDMvBf0pmp7c
|
example: VXuGitF39UH5iRfvbIknlvlAVKgD1BsLDMvBf0pmp7c
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ paths:
|
||||||
(if present) from the request here.
|
(if present) from the request here.
|
||||||
|
|
||||||
Also, the generated ephemeral public key will be listed as valid on
|
Also, the generated ephemeral public key will be listed as valid on
|
||||||
requests to `/_matrix/identity/v2/pubkey/ephemeral/isvalid`.
|
requests to [`/_matrix/identity/v2/pubkey/ephemeral/isvalid`](/identity-service-api/#get_matrixidentityv2pubkeyephemeralisvalid).
|
||||||
|
|
||||||
Currently, invites may only be issued for 3pids of the `email` medium.
|
Currently, invites may only be issued for 3pids of the `email` medium.
|
||||||
|
|
||||||
|
|
@ -70,10 +70,14 @@ paths:
|
||||||
room_id:
|
room_id:
|
||||||
type: string
|
type: string
|
||||||
description: The Matrix room ID to which the user is invited
|
description: The Matrix room ID to which the user is invited
|
||||||
|
format: mx-room-id
|
||||||
|
pattern: "^!"
|
||||||
example: "!something:example.org"
|
example: "!something:example.org"
|
||||||
sender:
|
sender:
|
||||||
type: string
|
type: string
|
||||||
description: The Matrix user ID of the inviting user
|
description: The Matrix user ID of the inviting user
|
||||||
|
format: mx-user-id
|
||||||
|
pattern: "^@"
|
||||||
example: "@bob:example.com"
|
example: "@bob:example.com"
|
||||||
room_alias:
|
room_alias:
|
||||||
type: string
|
type: string
|
||||||
|
|
@ -81,12 +85,16 @@ paths:
|
||||||
The Matrix room alias for the room to which the user is
|
The Matrix room alias for the room to which the user is
|
||||||
invited. This should be retrieved from the `m.room.canonical_alias`
|
invited. This should be retrieved from the `m.room.canonical_alias`
|
||||||
state event.
|
state event.
|
||||||
|
format: mx-room-alias
|
||||||
|
pattern: "^#"
|
||||||
example: "#somewhere:example.org"
|
example: "#somewhere:example.org"
|
||||||
room_avatar_url:
|
room_avatar_url:
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
The Content URI for the room to which the user is invited. This should
|
The Content URI for the room to which the user is invited. This should
|
||||||
be retrieved from the `m.room.avatar` state event.
|
be retrieved from the `m.room.avatar` state event.
|
||||||
|
format: mx-mxc-uri
|
||||||
|
pattern: "^mxc:\\/\\/"
|
||||||
example: mxc://example.org/s0meM3dia
|
example: mxc://example.org/s0meM3dia
|
||||||
room_join_rules:
|
room_join_rules:
|
||||||
type: string
|
type: string
|
||||||
|
|
@ -108,6 +116,8 @@ paths:
|
||||||
type: string
|
type: string
|
||||||
description: The Content URI for the avatar of the user ID initiating the
|
description: The Content URI for the avatar of the user ID initiating the
|
||||||
invite.
|
invite.
|
||||||
|
format: mx-mxc-uri
|
||||||
|
pattern: "^mxc:\\/\\/"
|
||||||
example: mxc://example.org/an0th3rM3dia
|
example: mxc://example.org/an0th3rM3dia
|
||||||
room_type:
|
room_type:
|
||||||
type: string
|
type: string
|
||||||
|
|
@ -146,7 +156,7 @@ paths:
|
||||||
public_key:
|
public_key:
|
||||||
type: string
|
type: string
|
||||||
description: |
|
description: |
|
||||||
The public key, encoded using [unpadded Base64](/appendices/#unpadded-base64).
|
The public key, encoded using standard or URL-safe [unpadded Base64](/appendices/#unpadded-base64).
|
||||||
key_validity_url:
|
key_validity_url:
|
||||||
type: string
|
type: string
|
||||||
description: |
|
description: |
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ paths:
|
||||||
put:
|
put:
|
||||||
summary: Invites a remote user to a room
|
summary: Invites a remote user to a room
|
||||||
description: |-
|
description: |-
|
||||||
Invites a remote user to a room. Once the event has been signed by both the inviting
|
Invites a remote user to a room. Once the event has been signed by both the inviting
|
||||||
homeserver and the invited homeserver, it can be sent to all of the servers in the
|
homeserver and the invited homeserver, it can be sent to all of the servers in the
|
||||||
room by the inviting homeserver.
|
room by the inviting homeserver.
|
||||||
|
|
||||||
|
|
@ -32,6 +32,10 @@ paths:
|
||||||
[room version specification](/rooms) for precise event formats. **The request and response
|
[room version specification](/rooms) for precise event formats. **The request and response
|
||||||
bodies here describe the common event fields in more detail and may be missing other
|
bodies here describe the common event fields in more detail and may be missing other
|
||||||
required fields for a PDU.**
|
required fields for a PDU.**
|
||||||
|
|
||||||
|
Also note that if the remote homeserver is already in the room, it will receive the
|
||||||
|
invite event twice; once through this endpoint, and again through a [federation
|
||||||
|
transaction](/server-server-api/#transactions).
|
||||||
operationId: sendInviteV1
|
operationId: sendInviteV1
|
||||||
security:
|
security:
|
||||||
- signedRequest: []
|
- signedRequest: []
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ paths:
|
||||||
This API is nearly identical to the v1 API with the exception of the request
|
This API is nearly identical to the v1 API with the exception of the request
|
||||||
body being different, and the response format fixed.
|
body being different, and the response format fixed.
|
||||||
|
|
||||||
Invites a remote user to a room. Once the event has been signed by both the inviting
|
Invites a remote user to a room. Once the event has been signed by both the inviting
|
||||||
homeserver and the invited homeserver, it can be sent to all of the servers in the
|
homeserver and the invited homeserver, it can be sent to all of the servers in the
|
||||||
room by the inviting homeserver.
|
room by the inviting homeserver.
|
||||||
|
|
||||||
|
|
@ -36,6 +36,10 @@ paths:
|
||||||
[room version specification](/rooms) for precise event formats. **The request and response
|
[room version specification](/rooms) for precise event formats. **The request and response
|
||||||
bodies here describe the common event fields in more detail and may be missing other
|
bodies here describe the common event fields in more detail and may be missing other
|
||||||
required fields for a PDU.**
|
required fields for a PDU.**
|
||||||
|
|
||||||
|
Also note that if the remote homeserver is already in the room, it will receive the
|
||||||
|
invite event twice; once through this endpoint, and again through a [federation
|
||||||
|
transaction](/server-server-api/#transactions).
|
||||||
operationId: sendInviteV2
|
operationId: sendInviteV2
|
||||||
security:
|
security:
|
||||||
- signedRequest: []
|
- signedRequest: []
|
||||||
|
|
|
||||||
|
|
@ -13,16 +13,20 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
openapi: 3.1.0
|
openapi: 3.1.0
|
||||||
info:
|
info:
|
||||||
title: Matrix Federation Public Rooms API
|
title: Matrix Federation Published Room Directory API
|
||||||
version: 1.0.0
|
version: 1.0.0
|
||||||
paths:
|
paths:
|
||||||
/publicRooms:
|
/publicRooms:
|
||||||
get:
|
get:
|
||||||
summary: Get all the public rooms for a homeserver
|
summary: Lists the server's published room directory
|
||||||
description: |-
|
description: |-
|
||||||
Gets all the public rooms for the homeserver. This should not return
|
Lists the server's published room directory.
|
||||||
rooms that are listed on another homeserver's directory, just those
|
|
||||||
listed on the receiving homeserver's directory.
|
This API returns paginated responses. The rooms are ordered by the number
|
||||||
|
of joined members, with the largest rooms first.
|
||||||
|
|
||||||
|
This SHOULD not return rooms that are listed on another homeserver's directory,
|
||||||
|
just those listed on the receiving homeserver's directory.
|
||||||
operationId: getPublicRooms
|
operationId: getPublicRooms
|
||||||
security:
|
security:
|
||||||
- signedRequest: []
|
- signedRequest: []
|
||||||
|
|
@ -62,21 +66,18 @@ paths:
|
||||||
type: string
|
type: string
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
description: The public room list for the homeserver.
|
description: A list of the published rooms on the server.
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: ../client-server/definitions/public_rooms_response.yaml
|
$ref: ../client-server/definitions/public_rooms_response.yaml
|
||||||
post:
|
post:
|
||||||
summary: Gets the public rooms on the server with optional filter.
|
summary: Lists the server's published room directory with an optional filter
|
||||||
description: |-
|
description: |-
|
||||||
Lists the public rooms on the server, with optional filter.
|
Lists the server's published room directory with an optional filter.
|
||||||
|
|
||||||
This API returns paginated responses. The rooms are ordered by the number
|
This API returns paginated responses. The rooms are ordered by the number
|
||||||
of joined members, with the largest rooms first.
|
of joined members, with the largest rooms first.
|
||||||
|
|
||||||
Note that this endpoint receives and returns the same format that is seen
|
|
||||||
in the Client-Server API's `POST /publicRooms` endpoint.
|
|
||||||
operationId: queryPublicRooms
|
operationId: queryPublicRooms
|
||||||
security:
|
security:
|
||||||
- signedRequest: []
|
- signedRequest: []
|
||||||
|
|
@ -147,69 +148,11 @@ paths:
|
||||||
required: true
|
required: true
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
description: A list of the rooms on the server.
|
description: A filtered list of the published rooms on the server.
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
type: object
|
$ref: ../client-server/definitions/public_rooms_response.yaml
|
||||||
description: A list of the rooms on the server.
|
|
||||||
required:
|
|
||||||
- chunk
|
|
||||||
properties:
|
|
||||||
chunk:
|
|
||||||
title: PublicRoomsChunks
|
|
||||||
type: array
|
|
||||||
description: A paginated chunk of public rooms.
|
|
||||||
items:
|
|
||||||
allOf:
|
|
||||||
- $ref: ../client-server/definitions/public_rooms_chunk.yaml
|
|
||||||
- type: object
|
|
||||||
properties:
|
|
||||||
# Override description of join_rule
|
|
||||||
join_rule:
|
|
||||||
type: string
|
|
||||||
description: |-
|
|
||||||
The room's join rule. When not present, the room is assumed to
|
|
||||||
be `public`. Note that rooms with `invite` join rules are not
|
|
||||||
expected here, but rooms with `knock` rules are given their
|
|
||||||
near-public nature.
|
|
||||||
next_batch:
|
|
||||||
type: string
|
|
||||||
description: |-
|
|
||||||
A pagination token for the response. The absence of this token
|
|
||||||
means there are no more results to fetch and the client should
|
|
||||||
stop paginating.
|
|
||||||
prev_batch:
|
|
||||||
type: string
|
|
||||||
description: |-
|
|
||||||
A pagination token that allows fetching previous results. The
|
|
||||||
absence of this token means there are no results before this
|
|
||||||
batch, i.e. this is the first batch.
|
|
||||||
total_room_count_estimate:
|
|
||||||
type: integer
|
|
||||||
description: |-
|
|
||||||
An estimate on the total number of public rooms, if the
|
|
||||||
server has an estimate.
|
|
||||||
examples:
|
|
||||||
response:
|
|
||||||
value: {
|
|
||||||
"chunk": [
|
|
||||||
{
|
|
||||||
"avatar_url": "mxc://bleecker.street/CHEDDARandBRIE",
|
|
||||||
"guest_can_join": false,
|
|
||||||
"name": "CHEESE",
|
|
||||||
"num_joined_members": 37,
|
|
||||||
"room_id": "!ol19s:bleecker.street",
|
|
||||||
"topic": "Tasty tasty cheese",
|
|
||||||
"world_readable": true,
|
|
||||||
"join_rule": "public",
|
|
||||||
"room_type": "m.space"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"next_batch": "p190q",
|
|
||||||
"prev_batch": "p1902",
|
|
||||||
"total_room_count_estimate": 115
|
|
||||||
}
|
|
||||||
servers:
|
servers:
|
||||||
- url: "{protocol}://{hostname}{basePath}"
|
- url: "{protocol}://{hostname}{basePath}"
|
||||||
variables:
|
variables:
|
||||||
|
|
|
||||||
|
|
@ -61,22 +61,10 @@ paths:
|
||||||
room:
|
room:
|
||||||
description: A summary of the room requested.
|
description: A summary of the room requested.
|
||||||
allOf:
|
allOf:
|
||||||
- $ref: ../client-server/definitions/public_rooms_chunk.yaml
|
- $ref: ../client-server/definitions/room_summary.yaml
|
||||||
- type: object
|
- type: object
|
||||||
title: SpaceHierarchyParentRoom
|
title: SpaceHierarchyParentRoom
|
||||||
properties:
|
properties:
|
||||||
room_type:
|
|
||||||
type: string
|
|
||||||
description: The `type` of room (from
|
|
||||||
[`m.room.create`](/client-server-api/#mroomcreate)),
|
|
||||||
if any.
|
|
||||||
allowed_room_ids:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
type: string
|
|
||||||
description: |-
|
|
||||||
If the room is a [restricted room](/server-server-api/#restricted-rooms), these are the room IDs which
|
|
||||||
are specified by the join rules. Empty or omitted otherwise.
|
|
||||||
children_state:
|
children_state:
|
||||||
type: array
|
type: array
|
||||||
description: |-
|
description: |-
|
||||||
|
|
@ -96,6 +84,12 @@ paths:
|
||||||
description: The `origin_server_ts` for the event.
|
description: The `origin_server_ts` for the event.
|
||||||
required:
|
required:
|
||||||
- origin_server_ts
|
- origin_server_ts
|
||||||
|
room_type:
|
||||||
|
x-addedInMatrixVersion: "1.4" # Extends room_summary.yaml
|
||||||
|
encryption:
|
||||||
|
x-addedInMatrixVersion: "1.15" # Extends room_summary.yaml
|
||||||
|
room_version:
|
||||||
|
x-addedInMatrixVersion: "1.15" # Extends room_summary.yaml
|
||||||
required:
|
required:
|
||||||
- children_state
|
- children_state
|
||||||
children:
|
children:
|
||||||
|
|
@ -105,22 +99,16 @@ paths:
|
||||||
be excluded.
|
be excluded.
|
||||||
items:
|
items:
|
||||||
allOf:
|
allOf:
|
||||||
- $ref: ../client-server/definitions/public_rooms_chunk.yaml
|
- $ref: ../client-server/definitions/room_summary.yaml
|
||||||
- type: object
|
- type: object
|
||||||
title: SpaceHierarchyChildRoomsChunk
|
title: SpaceHierarchyChildRoomsChunk
|
||||||
properties:
|
properties:
|
||||||
room_type:
|
room_type:
|
||||||
type: string
|
x-addedInMatrixVersion: "1.4" # Extends room_summary.yaml
|
||||||
description: The `type` of room (from
|
encryption:
|
||||||
[`m.room.create`](/client-server-api/#mroomcreate)),
|
x-addedInMatrixVersion: "1.15" # Extends room_summary.yaml
|
||||||
if any.
|
room_version:
|
||||||
allowed_room_ids:
|
x-addedInMatrixVersion: "1.15" # Extends room_summary.yaml
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
type: string
|
|
||||||
description: |-
|
|
||||||
If the room is a [restricted room](/server-server-api/#restricted-rooms), these are the room IDs which
|
|
||||||
are specified by the join rules. Empty or omitted otherwise.
|
|
||||||
inaccessible_children:
|
inaccessible_children:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,8 @@ paths:
|
||||||
example: "!abc123:matrix.org"
|
example: "!abc123:matrix.org"
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
|
format: mx-room-id
|
||||||
|
pattern: "^!"
|
||||||
requestBody:
|
requestBody:
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
|
|
@ -50,16 +52,22 @@ paths:
|
||||||
description: |-
|
description: |-
|
||||||
The room ID the event is for. Must match the ID given in
|
The room ID the event is for. Must match the ID given in
|
||||||
the path.
|
the path.
|
||||||
|
format: mx-room-id
|
||||||
|
pattern: "^!"
|
||||||
example: "!abc123:matrix.org"
|
example: "!abc123:matrix.org"
|
||||||
sender:
|
sender:
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
The user ID of the user who sent the original `m.room.third_party_invite`
|
The user ID of the user who sent the original `m.room.third_party_invite`
|
||||||
event.
|
event.
|
||||||
|
format: mx-user-id
|
||||||
|
pattern: "^@"
|
||||||
example: "@joe:matrix.org"
|
example: "@joe:matrix.org"
|
||||||
state_key:
|
state_key:
|
||||||
type: string
|
type: string
|
||||||
description: The user ID of the invited user
|
description: The user ID of the invited user
|
||||||
|
format: mx-user-id
|
||||||
|
pattern: "^@"
|
||||||
example: "@someone:example.org"
|
example: "@someone:example.org"
|
||||||
content:
|
content:
|
||||||
type: object
|
type: object
|
||||||
|
|
@ -82,45 +90,7 @@ paths:
|
||||||
third-party identifier.
|
third-party identifier.
|
||||||
example: alice
|
example: alice
|
||||||
signed:
|
signed:
|
||||||
type: object
|
$ref: ../../event-schemas/schema/components/signed_third_party_invite.yaml
|
||||||
description: |-
|
|
||||||
A block of content which has been signed, which servers can use to
|
|
||||||
verify the event.
|
|
||||||
title: Invite Signatures
|
|
||||||
properties:
|
|
||||||
signatures:
|
|
||||||
type: object
|
|
||||||
title: Signatures
|
|
||||||
additionalProperties:
|
|
||||||
type: object
|
|
||||||
additionalProperties:
|
|
||||||
type: string
|
|
||||||
description: |-
|
|
||||||
The server signatures for this event.
|
|
||||||
|
|
||||||
The signature is calculated using the process
|
|
||||||
described at [Signing JSON](/appendices/#signing-json).
|
|
||||||
example:
|
|
||||||
magic.forest:
|
|
||||||
ed25519:3: fQpGIW1Snz+pwLZu6sTy2aHy/DYWWTspTJRPyNp0PKkymfIsNffysMl6ObMMFdIJhk6g6pwlIqZ54rxo8SLmAg
|
|
||||||
mxid:
|
|
||||||
type: string
|
|
||||||
description: The invited matrix user ID
|
|
||||||
example: "@alice:localhost"
|
|
||||||
token:
|
|
||||||
type: string
|
|
||||||
description: The token used to verify the event
|
|
||||||
example: abc123
|
|
||||||
required:
|
|
||||||
- signatures
|
|
||||||
- mxid
|
|
||||||
- token
|
|
||||||
example:
|
|
||||||
mxid: "@alice:localhost"
|
|
||||||
token: abc123
|
|
||||||
signatures:
|
|
||||||
magic.forest:
|
|
||||||
ed25519:3: fQpGIW1Snz+pwLZu6sTy2aHy/DYWWTspTJRPyNp0PKkymfIsNffysMl6ObMMFdIJhk6g6pwlIqZ54rxo8SLmAg
|
|
||||||
required:
|
required:
|
||||||
- display_name
|
- display_name
|
||||||
- signed
|
- signed
|
||||||
|
|
@ -215,6 +185,8 @@ paths:
|
||||||
mxid:
|
mxid:
|
||||||
type: string
|
type: string
|
||||||
description: The user that is now bound to the third-party identifier.
|
description: The user that is now bound to the third-party identifier.
|
||||||
|
format: mx-user-id
|
||||||
|
pattern: "^@"
|
||||||
example: "@alice:matrix.org"
|
example: "@alice:matrix.org"
|
||||||
invites:
|
invites:
|
||||||
type: array
|
type: array
|
||||||
|
|
@ -237,59 +209,23 @@ paths:
|
||||||
mxid:
|
mxid:
|
||||||
type: string
|
type: string
|
||||||
description: The now-bound user ID that received the invite.
|
description: The now-bound user ID that received the invite.
|
||||||
|
format: mx-user-id
|
||||||
|
pattern: "^@"
|
||||||
example: "@alice:matrix.org"
|
example: "@alice:matrix.org"
|
||||||
room_id:
|
room_id:
|
||||||
type: string
|
type: string
|
||||||
description: The room ID the invite is valid for.
|
description: The room ID the invite is valid for.
|
||||||
|
format: mx-room-id
|
||||||
|
pattern: "^!"
|
||||||
example: "!somewhere:example.org"
|
example: "!somewhere:example.org"
|
||||||
sender:
|
sender:
|
||||||
type: string
|
type: string
|
||||||
description: The user ID that sent the invite.
|
description: The user ID that sent the invite.
|
||||||
|
format: mx-user-id
|
||||||
|
pattern: "^@"
|
||||||
example: "@bob:matrix.org"
|
example: "@bob:matrix.org"
|
||||||
# TODO (TravisR): Make this reusable when doing IS spec changes
|
|
||||||
# also make sure it isn't lying about anything, like the key version
|
|
||||||
signed:
|
signed:
|
||||||
type: object
|
$ref: ../../event-schemas/schema/components/signed_third_party_invite.yaml
|
||||||
title: Identity Server Signatures
|
|
||||||
description: |-
|
|
||||||
Signature from the identity server using a long-term private
|
|
||||||
key.
|
|
||||||
properties:
|
|
||||||
mxid:
|
|
||||||
type: string
|
|
||||||
description: |-
|
|
||||||
The user ID that has been bound to the third-party
|
|
||||||
identifier.
|
|
||||||
example: "@alice:matrix.org"
|
|
||||||
token:
|
|
||||||
type: string
|
|
||||||
# TODO: What is this actually?
|
|
||||||
description: A token.
|
|
||||||
example: Hello World
|
|
||||||
signatures:
|
|
||||||
type: object
|
|
||||||
title: Identity Server Signature
|
|
||||||
description: |-
|
|
||||||
The signature from the identity server. The `string` key
|
|
||||||
is the identity server's domain name, such as vector.im
|
|
||||||
additionalProperties:
|
|
||||||
type: object
|
|
||||||
title: Identity Server Domain Signature
|
|
||||||
description: The signature for the identity server.
|
|
||||||
properties:
|
|
||||||
ed25519:0:
|
|
||||||
type: string
|
|
||||||
description: The signature.
|
|
||||||
example: SomeSignatureGoesHere
|
|
||||||
required:
|
|
||||||
- ed25519:0
|
|
||||||
example:
|
|
||||||
vector.im:
|
|
||||||
ed25519:0: SomeSignatureGoesHere
|
|
||||||
required:
|
|
||||||
- mxid
|
|
||||||
- token
|
|
||||||
- signatures
|
|
||||||
required:
|
required:
|
||||||
- medium
|
- medium
|
||||||
- address
|
- address
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,12 @@ paths:
|
||||||
Gets information about the delegated server for server-server communication
|
Gets information about the delegated server for server-server communication
|
||||||
between Matrix homeservers. Servers should follow 30x redirects, carefully
|
between Matrix homeservers. Servers should follow 30x redirects, carefully
|
||||||
avoiding redirect loops, and use normal X.509 certificate validation.
|
avoiding redirect loops, and use normal X.509 certificate validation.
|
||||||
|
|
||||||
|
{{% boxes/note %}}
|
||||||
|
This endpoint should be accessed with the hostname of the homeserver's
|
||||||
|
[server name](/appendices/#server-name) by making a
|
||||||
|
GET request to `https://hostname/.well-known/matrix/server`.
|
||||||
|
{{% /boxes/note %}}
|
||||||
operationId: getWellKnown
|
operationId: getWellKnown
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"$ref": "core/state_event.json",
|
"$ref": "core/state_event.json",
|
||||||
"state_key": "@alice:example.org",
|
"state_key": "@alice:example.org",
|
||||||
|
"sender": "@alice:example.org",
|
||||||
"type": "m.room.member",
|
"type": "m.room.member",
|
||||||
"content": {
|
"content": {
|
||||||
"membership": "join",
|
"membership": "join",
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,14 @@
|
||||||
"type": "m.room.topic",
|
"type": "m.room.topic",
|
||||||
"state_key": "",
|
"state_key": "",
|
||||||
"content": {
|
"content": {
|
||||||
"topic": "A room topic"
|
"m.topic": {
|
||||||
|
"m.text": [ {
|
||||||
|
"mimetype": "text/html",
|
||||||
|
"body": "An <em>interesting</em> room topic"
|
||||||
|
}, {
|
||||||
|
"body": "An interesting room topic"
|
||||||
|
}]
|
||||||
|
},
|
||||||
|
"topic": "An interesting room topic"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,28 @@
|
||||||
|
type: array
|
||||||
|
description: |-
|
||||||
|
An ordered array of textual representations in different mimetypes.
|
||||||
|
|
||||||
|
Senders SHOULD specify at least one representation and SHOULD always
|
||||||
|
include a plaintext representation.
|
||||||
|
|
||||||
|
Receivers SHOULD use the first representation in the array that
|
||||||
|
they understand.
|
||||||
|
title: TextContentBlock
|
||||||
|
items:
|
||||||
|
type: object
|
||||||
|
title: TextualRepresentation
|
||||||
|
properties:
|
||||||
|
mimetype:
|
||||||
|
type: string
|
||||||
|
description: The mimetype. Defaults to `text/plain` if omitted.
|
||||||
|
example: "text/html"
|
||||||
|
body:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
The string content.
|
||||||
|
|
||||||
|
Clients SHOULD validate and sanitize the content as they do
|
||||||
|
for rich content associated with [`msgtype`](/client-server-api/#mroommessage-msgtypes)
|
||||||
|
of [`m.room.message`](/client-server-api/#mroommessage).
|
||||||
|
required:
|
||||||
|
- body
|
||||||
|
|
@ -0,0 +1,45 @@
|
||||||
|
title: SignedThirdPartyInvite
|
||||||
|
description: |-
|
||||||
|
A block of content which has been signed by the identity server, which
|
||||||
|
homeservers can use to verify the event. Clients should ignore this.
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
mxid:
|
||||||
|
description: |-
|
||||||
|
The user ID that has been bound to the third-party identifier.
|
||||||
|
type: string
|
||||||
|
format: mx-user-id
|
||||||
|
pattern: "^@"
|
||||||
|
example: "@alice:example.org"
|
||||||
|
signatures:
|
||||||
|
title: IdentityServerSignatures
|
||||||
|
description: |-
|
||||||
|
The identity server signatures for this block. This is a map of identity
|
||||||
|
server name to signing key identifier to base64-encoded signature.
|
||||||
|
|
||||||
|
The signatures are calculated using the process described at
|
||||||
|
[Signing JSON](/appendices/#signing-json).
|
||||||
|
type: object
|
||||||
|
additionalProperties:
|
||||||
|
type: object
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
example: {
|
||||||
|
"magic.forest": {
|
||||||
|
"ed25519:3": "fQpGIW1Snz+pwLZu6sTy2aHy/DYWWTspTJRPyNp0PKkymfIsNffysMl6ObMMFdIJhk6g6pwlIqZ54rxo8SLmAg"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
token:
|
||||||
|
description: |-
|
||||||
|
The token generated by the identity server at the
|
||||||
|
[`/store_invite`](/identity-service-api/#post_matrixidentityv2store-invite)
|
||||||
|
endpoint.
|
||||||
|
|
||||||
|
It matches the `state_key` of the corresponding [`m.room.third_party_invite`](/client-server-api/#mroomthird_party_invite)
|
||||||
|
event.
|
||||||
|
type: string
|
||||||
|
example: "abc123"
|
||||||
|
required:
|
||||||
|
- mxid
|
||||||
|
- signatures
|
||||||
|
- token
|
||||||
|
|
@ -1,15 +1,15 @@
|
||||||
$schema: https://json-schema.org/draft/2020-12/schema
|
$schema: https://json-schema.org/draft/2020-12/schema
|
||||||
|
|
||||||
|
title: RoomEvent
|
||||||
|
description: Room Events have the following fields.
|
||||||
allOf:
|
allOf:
|
||||||
- $ref: sync_room_event.yaml
|
- $ref: sync_room_event.yaml
|
||||||
description: Room Events have the following fields.
|
- type: object
|
||||||
properties:
|
properties:
|
||||||
room_id:
|
room_id:
|
||||||
description: |-
|
description: |-
|
||||||
The ID of the room associated with this event. Will not be present on events
|
The ID of the room associated with this event. Will not be present on events
|
||||||
that arrive through `/sync`, despite being required everywhere else.
|
that arrive through `/sync`, despite being required everywhere else.
|
||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- room_id
|
- room_id
|
||||||
title: RoomEvent
|
|
||||||
type: object
|
|
||||||
|
|
|
||||||
|
|
@ -19,27 +19,27 @@
|
||||||
|
|
||||||
$schema: https://json-schema.org/draft/2020-12/schema
|
$schema: https://json-schema.org/draft/2020-12/schema
|
||||||
|
|
||||||
allOf:
|
title: SyncRoomEvent
|
||||||
- $ref: event.yaml
|
|
||||||
description: In addition to the Event fields, Room Events have the following additional
|
description: In addition to the Event fields, Room Events have the following additional
|
||||||
fields.
|
fields.
|
||||||
properties:
|
allOf:
|
||||||
event_id:
|
- $ref: event.yaml
|
||||||
description: The globally unique event identifier.
|
- type: object
|
||||||
type: string
|
properties:
|
||||||
sender:
|
event_id:
|
||||||
description: Contains the fully-qualified ID of the user who sent this event.
|
description: The globally unique event identifier.
|
||||||
type: string
|
type: string
|
||||||
origin_server_ts:
|
sender:
|
||||||
description: Timestamp in milliseconds on originating homeserver
|
description: Contains the fully-qualified ID of the user who sent this event.
|
||||||
when this event was sent.
|
type: string
|
||||||
type: integer
|
origin_server_ts:
|
||||||
format: int64
|
description: Timestamp in milliseconds on originating homeserver
|
||||||
unsigned:
|
when this event was sent.
|
||||||
$ref: unsigned_prop.yaml
|
type: integer
|
||||||
required:
|
format: int64
|
||||||
- event_id
|
unsigned:
|
||||||
- sender
|
$ref: unsigned_prop.yaml
|
||||||
- origin_server_ts
|
required:
|
||||||
title: SyncRoomEvent
|
- event_id
|
||||||
type: object
|
- sender
|
||||||
|
- origin_server_ts
|
||||||
|
|
|
||||||
|
|
@ -16,21 +16,21 @@
|
||||||
|
|
||||||
$schema: https://json-schema.org/draft/2020-12/schema
|
$schema: https://json-schema.org/draft/2020-12/schema
|
||||||
|
|
||||||
allOf:
|
title: SyncStateEvent
|
||||||
- $ref: sync_room_event.yaml
|
|
||||||
description: In addition to the Room Event fields, State Events have the following
|
description: In addition to the Room Event fields, State Events have the following
|
||||||
additional fields.
|
additional fields.
|
||||||
properties:
|
allOf:
|
||||||
state_key:
|
- $ref: sync_room_event.yaml
|
||||||
description: A unique key which defines the overwriting semantics for this piece
|
- type: object
|
||||||
of room state. This value is often a zero-length string. The presence of this
|
properties:
|
||||||
key makes this event a State Event.
|
state_key:
|
||||||
|
description: A unique key which defines the overwriting semantics for this piece
|
||||||
|
of room state. This value is often a zero-length string. The presence of this
|
||||||
|
key makes this event a State Event.
|
||||||
|
|
||||||
State keys starting with an `@` are reserved for referencing user IDs, such
|
State keys starting with an `@` are reserved for referencing user IDs, such
|
||||||
as room members. With the exception of a few events, state events set with a
|
as room members. With the exception of a few events, state events set with a
|
||||||
given user's ID as the state key MUST only be set by that user.
|
given user's ID as the state key MUST only be set by that user.
|
||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- state_key
|
- state_key
|
||||||
title: SyncStateEvent
|
|
||||||
type: object
|
|
||||||
|
|
|
||||||
|
|
@ -4,17 +4,27 @@ $schema: https://json-schema.org/draft/2020-12/schema
|
||||||
allOf:
|
allOf:
|
||||||
- $ref: core-event-schema/state_event.yaml
|
- $ref: core-event-schema/state_event.yaml
|
||||||
description: |-
|
description: |-
|
||||||
Adjusts the membership state for a user in a room. It is preferable to use the membership APIs (`/rooms/<room id>/invite` etc) when performing membership actions rather than adjusting the state directly as there are a restricted set of valid transformations. For example, user A cannot force user B to join a room, and trying to force this state change directly will fail.
|
Adjusts the membership state for a user in a room. It is preferable to use the membership APIs
|
||||||
|
(`/rooms/<room id>/invite` etc) when performing membership actions rather than adjusting the
|
||||||
|
state directly as there are a restricted set of valid transformations. For example, user A cannot
|
||||||
|
force user B to join a room, and trying to force this state change directly will fail.
|
||||||
|
|
||||||
The following membership states are specified:
|
The following membership states are specified:
|
||||||
|
|
||||||
- `invite` - The user has been invited to join a room, but has not yet joined it. They may not participate in the room until they join.
|
- `invite` - The user has been invited to join a room, but has not yet joined it. They may not
|
||||||
- `join` - The user has joined the room (possibly after accepting an invite), and may participate in it.
|
participate in the room until they join.
|
||||||
- `leave` - The user was once joined to the room, but has since left (possibly by choice, or possibly by being kicked).
|
- `join` - The user has joined the room (possibly after accepting an invite), and may participate
|
||||||
- `ban` - The user has been banned from the room, and is no longer allowed to join it until they are un-banned from the room (by having their membership state set to a value other than `ban`).
|
in it.
|
||||||
- `knock` - The user has knocked on the room, requesting permission to participate. They may not participate in the room until they join.
|
- `leave` - The user was once joined to the room, but has since left (possibly by choice, or
|
||||||
|
possibly by being kicked).
|
||||||
|
- `ban` - The user has been banned from the room, and is no longer allowed to join it until they
|
||||||
|
are un-banned from the room (by having their membership state set to a value other than `ban`).
|
||||||
|
- `knock` - The user has knocked on the room, requesting permission to participate. They may not
|
||||||
|
participate in the room until they join.
|
||||||
|
|
||||||
The `third_party_invite` property will be set if this invite is an `invite` event and is the successor of an `m.room.third_party_invite` event, and absent otherwise.
|
The `third_party_invite` property will be set if this invite is an `invite` event and is the
|
||||||
|
successor of an [`m.room.third_party_invite`](/client-server-api/#mroomthird_party_invite) event,
|
||||||
|
and absent otherwise.
|
||||||
|
|
||||||
This event may also include an `invite_room_state` key inside the event's `unsigned` data.
|
This event may also include an `invite_room_state` key inside the event's `unsigned` data.
|
||||||
If present, this contains an array of [stripped state events](/client-server-api/#stripped-state)
|
If present, this contains an array of [stripped state events](/client-server-api/#stripped-state)
|
||||||
|
|
@ -59,63 +69,54 @@ properties:
|
||||||
- ban
|
- ban
|
||||||
type: string
|
type: string
|
||||||
is_direct:
|
is_direct:
|
||||||
description: Flag indicating if the room containing this event was created with the intention of being a direct chat. See [Direct Messaging](/client-server-api/#direct-messaging).
|
description: |-
|
||||||
|
Flag indicating if the room containing this event was created with the intention of being
|
||||||
|
a direct chat. See [Direct Messaging](/client-server-api/#direct-messaging).
|
||||||
type: boolean
|
type: boolean
|
||||||
join_authorised_via_users_server:
|
join_authorised_via_users_server:
|
||||||
x-addedInMatrixVersion: "1.2"
|
x-addedInMatrixVersion: "1.2"
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
Usually found on `join` events, this field is used to denote which homeserver (through representation of a user with sufficient power level)
|
Usually found on `join` events, this field is used to denote which homeserver (through
|
||||||
authorised the user's join. More information about this field can be found in the [Restricted Rooms Specification](/client-server-api/#restricted-rooms).
|
representation of a user with sufficient power level) authorised the user's join. More
|
||||||
|
information about this field can be found in the [Restricted Rooms Specification](/client-server-api/#restricted-rooms).
|
||||||
|
|
||||||
Client and server implementations should be aware of the [signing implications](/rooms/v8/#authorization-rules) of including this
|
Client and server implementations should be aware of the [signing implications](/rooms/v8/#authorization-rules)
|
||||||
field in further events: in particular, the event must be signed by the server which
|
of including this field in further events: in particular, the event must be signed by the
|
||||||
owns the user ID in the field. When copying the membership event's `content`
|
server which owns the user ID in the field. When copying the membership event's `content`
|
||||||
(for profile updates and similar) it is therefore encouraged to exclude this
|
(for profile updates and similar) it is therefore encouraged to exclude this field in the
|
||||||
field in the copy, as otherwise the event might fail event authorization.
|
copy, as otherwise the event might fail event authorization.
|
||||||
reason:
|
reason:
|
||||||
x-addedInMatrixVersion: "1.1"
|
x-addedInMatrixVersion: "1.1"
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
Optional user-supplied text for why their membership has changed. For kicks and bans, this is typically the reason for the kick or ban.
|
Optional user-supplied text for why their membership has changed. For kicks and bans,
|
||||||
For other membership changes, this is a way for the user to communicate their intent without having to send a message to the room, such
|
this is typically the reason for the kick or ban. For other membership changes, this is a
|
||||||
as in a case where Bob rejects an invite from Alice about an upcoming concert, but can't make it that day.
|
way for the user to communicate their intent without having to send a message to the
|
||||||
|
room, such as in a case where Bob rejects an invite from Alice about an upcoming concert,
|
||||||
|
but can't make it that day.
|
||||||
|
|
||||||
Clients are not recommended to show this reason to users when receiving an invite due to the potential for spam and abuse. Hiding the
|
Clients are not recommended to show this reason to users when receiving an invite due to
|
||||||
reason behind a button or other component is recommended.
|
the potential for spam and abuse. Hiding the reason behind a button or other component is
|
||||||
|
recommended.
|
||||||
third_party_invite:
|
third_party_invite:
|
||||||
|
title: ThirdPartyInvite
|
||||||
|
description: |-
|
||||||
|
A third-party invite, if this `m.room.member` is the successor to an
|
||||||
|
[`m.room.third_party_invite`](/client-server-api/#mroomthird_party_invite)
|
||||||
|
event.
|
||||||
|
type: object
|
||||||
properties:
|
properties:
|
||||||
display_name:
|
display_name:
|
||||||
description: A name which can be displayed to represent the user instead of their third-party identifier
|
description: |-
|
||||||
|
A name which can be displayed to represent the user instead of their
|
||||||
|
third-party identifier
|
||||||
type: string
|
type: string
|
||||||
signed:
|
signed:
|
||||||
description: 'A block of content which has been signed, which servers can use to verify the event. Clients should ignore this.'
|
$ref: components/signed_third_party_invite.yaml
|
||||||
properties:
|
|
||||||
mxid:
|
|
||||||
description: The invited matrix user ID. Must be equal to the user_id property of the event.
|
|
||||||
type: string
|
|
||||||
signatures:
|
|
||||||
description: 'A single signature from the verifying server, in the format specified by the Signing Events section of the server-server API.'
|
|
||||||
title: Signatures
|
|
||||||
type: object
|
|
||||||
additionalProperties:
|
|
||||||
type: object
|
|
||||||
additionalProperties:
|
|
||||||
type: string
|
|
||||||
token:
|
|
||||||
description: The token property of the containing third_party_invite object.
|
|
||||||
type: string
|
|
||||||
required:
|
|
||||||
- mxid
|
|
||||||
- signatures
|
|
||||||
- token
|
|
||||||
title: signed
|
|
||||||
type: object
|
|
||||||
required:
|
required:
|
||||||
- display_name
|
- display_name
|
||||||
- signed
|
- signed
|
||||||
title: Invite
|
|
||||||
type: object
|
|
||||||
required:
|
required:
|
||||||
- membership
|
- membership
|
||||||
title: EventContent
|
title: EventContent
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,8 @@ properties:
|
||||||
"1.10": This property can act as a caption for the audio.
|
"1.10": This property can act as a caption for the audio.
|
||||||
format:
|
format:
|
||||||
description: |-
|
description: |-
|
||||||
The format used in the `formatted_body`. Currently only
|
The format used in the `formatted_body`. This is required if `formatted_body`
|
||||||
`org.matrix.custom.html` is supported.
|
is specified. Currently only `org.matrix.custom.html` is supported.
|
||||||
type: string
|
type: string
|
||||||
x-addedInMatrixVersion: "1.10"
|
x-addedInMatrixVersion: "1.10"
|
||||||
formatted_body:
|
formatted_body:
|
||||||
|
|
|
||||||
|
|
@ -16,8 +16,8 @@ properties:
|
||||||
type: string
|
type: string
|
||||||
format:
|
format:
|
||||||
description: |-
|
description: |-
|
||||||
The format used in the `formatted_body`. Currently only
|
The format used in the `formatted_body`. This is required if `formatted_body`
|
||||||
`org.matrix.custom.html` is supported.
|
is specified. Currently only `org.matrix.custom.html` is supported.
|
||||||
type: string
|
type: string
|
||||||
formatted_body:
|
formatted_body:
|
||||||
description: |-
|
description: |-
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,8 @@ properties:
|
||||||
"1.10": This property can act as a caption for the file.
|
"1.10": This property can act as a caption for the file.
|
||||||
format:
|
format:
|
||||||
description: |-
|
description: |-
|
||||||
The format used in the `formatted_body`. Currently only
|
The format used in the `formatted_body`. This is required if `formatted_body`
|
||||||
`org.matrix.custom.html` is supported.
|
is specified. Currently only `org.matrix.custom.html` is supported.
|
||||||
type: string
|
type: string
|
||||||
x-addedInMatrixVersion: "1.10"
|
x-addedInMatrixVersion: "1.10"
|
||||||
formatted_body:
|
formatted_body:
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,8 @@ properties:
|
||||||
"1.10": This property can act as a caption for the image.
|
"1.10": This property can act as a caption for the image.
|
||||||
format:
|
format:
|
||||||
description: |-
|
description: |-
|
||||||
The format used in the `formatted_body`. Currently only
|
The format used in the `formatted_body`. This is required if `formatted_body`
|
||||||
`org.matrix.custom.html` is supported.
|
is specified. Currently only `org.matrix.custom.html` is supported.
|
||||||
type: string
|
type: string
|
||||||
x-addedInMatrixVersion: "1.10"
|
x-addedInMatrixVersion: "1.10"
|
||||||
formatted_body:
|
formatted_body:
|
||||||
|
|
|
||||||
|
|
@ -24,8 +24,8 @@ properties:
|
||||||
verification.
|
verification.
|
||||||
format:
|
format:
|
||||||
description: |-
|
description: |-
|
||||||
The format used in the `formatted_body`. Currently only
|
The format used in the `formatted_body`. This is required if `formatted_body`
|
||||||
`org.matrix.custom.html` is supported.
|
is specified. Currently only `org.matrix.custom.html` is supported.
|
||||||
type: string
|
type: string
|
||||||
formatted_body:
|
formatted_body:
|
||||||
description: |-
|
description: |-
|
||||||
|
|
|
||||||
|
|
@ -16,8 +16,8 @@ properties:
|
||||||
type: string
|
type: string
|
||||||
format:
|
format:
|
||||||
description: |-
|
description: |-
|
||||||
The format used in the `formatted_body`. Currently only
|
The format used in the `formatted_body`. This is required if `formatted_body`
|
||||||
`org.matrix.custom.html` is supported.
|
is specified. Currently only `org.matrix.custom.html` is supported.
|
||||||
type: string
|
type: string
|
||||||
formatted_body:
|
formatted_body:
|
||||||
description: |-
|
description: |-
|
||||||
|
|
|
||||||
|
|
@ -16,8 +16,8 @@ properties:
|
||||||
type: string
|
type: string
|
||||||
format:
|
format:
|
||||||
description: |-
|
description: |-
|
||||||
The format used in the `formatted_body`. Currently only
|
The format used in the `formatted_body`. This is required if `formatted_body`
|
||||||
`org.matrix.custom.html` is supported.
|
is specified. Currently only `org.matrix.custom.html` is supported.
|
||||||
type: string
|
type: string
|
||||||
formatted_body:
|
formatted_body:
|
||||||
description: |-
|
description: |-
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,8 @@ properties:
|
||||||
"1.10": This property can act as a caption for the video.
|
"1.10": This property can act as a caption for the video.
|
||||||
format:
|
format:
|
||||||
description: |-
|
description: |-
|
||||||
The format used in the `formatted_body`. Currently only
|
The format used in the `formatted_body`. This is required if `formatted_body`
|
||||||
`org.matrix.custom.html` is supported.
|
is specified. Currently only `org.matrix.custom.html` is supported.
|
||||||
type: string
|
type: string
|
||||||
x-addedInMatrixVersion: "1.10"
|
x-addedInMatrixVersion: "1.10"
|
||||||
formatted_body:
|
formatted_body:
|
||||||
|
|
|
||||||
|
|
@ -3,28 +3,56 @@ $schema: https://json-schema.org/draft/2020-12/schema
|
||||||
|
|
||||||
allOf:
|
allOf:
|
||||||
- $ref: core-event-schema/state_event.yaml
|
- $ref: core-event-schema/state_event.yaml
|
||||||
description: "Acts as an `m.room.member` invite event, where there isn't a target user_id to invite. This event contains a token and a public key whose private key must be used to sign the token. Any user who can present that signature may use this invitation to join the target room."
|
description: |-
|
||||||
|
Acts as an `m.room.member` invite event, where there isn't a target user_id to
|
||||||
|
invite. This event contains a token and a public key whose private key must be
|
||||||
|
used to sign the token. Any user who can present that signature may use this
|
||||||
|
invitation to join the target room.
|
||||||
properties:
|
properties:
|
||||||
content:
|
content:
|
||||||
properties:
|
properties:
|
||||||
display_name:
|
display_name:
|
||||||
description: "A user-readable string which represents the user who has been invited. This should not contain the user's third-party ID, as otherwise when the invite is accepted it would leak the association between the matrix ID and the third-party ID."
|
description: |-
|
||||||
|
A user-readable string which represents the user who has been invited.
|
||||||
|
This should not contain the user's third-party ID, as otherwise when
|
||||||
|
the invite is accepted it would leak the association between the
|
||||||
|
matrix ID and the third-party ID.
|
||||||
type: string
|
type: string
|
||||||
key_validity_url:
|
key_validity_url:
|
||||||
description: "A URL which can be fetched, with querystring public_key=public_key, to validate whether the key has been revoked. The URL must return a JSON object containing a boolean property named 'valid'."
|
description: |-
|
||||||
|
A URL which can be fetched, with querystring public_key=public_key, to
|
||||||
|
validate whether the key has been revoked. The URL must return a JSON
|
||||||
|
object containing a boolean property named 'valid'.
|
||||||
type: string
|
type: string
|
||||||
|
format: uri
|
||||||
public_key:
|
public_key:
|
||||||
description: A base64-encoded ed25519 key with which token must be signed (though a signature from any entry in public_keys is also sufficient). This exists for backwards compatibility.
|
description: |-
|
||||||
|
An Ed25519 key with which the token must be signed (though a signature
|
||||||
|
from any entry in `public_keys` is also sufficient).
|
||||||
|
|
||||||
|
The key is encoded using [Unpadded Base64](/appendices/#unpadded-base64),
|
||||||
|
using the standard or URL-safe alphabets.
|
||||||
|
|
||||||
|
This exists for backwards compatibility.
|
||||||
type: string
|
type: string
|
||||||
public_keys:
|
public_keys:
|
||||||
description: Keys with which the token may be signed.
|
description: Keys with which the token may be signed.
|
||||||
items:
|
items:
|
||||||
properties:
|
properties:
|
||||||
key_validity_url:
|
key_validity_url:
|
||||||
description: "An optional URL which can be fetched, with querystring public_key=public_key, to validate whether the key has been revoked. The URL must return a JSON object containing a boolean property named 'valid'. If this URL is absent, the key must be considered valid indefinitely."
|
description: |-
|
||||||
|
An optional URL which can be fetched, with querystring
|
||||||
|
`public_key=<public_key>`, to validate whether the key has been
|
||||||
|
revoked. The URL must return a JSON object containing a boolean
|
||||||
|
property named `valid`. If this URL is absent, the key must be
|
||||||
|
considered valid indefinitely.
|
||||||
type: string
|
type: string
|
||||||
public_key:
|
public_key:
|
||||||
description: A base-64 encoded ed25519 key with which token may be signed.
|
description: |-
|
||||||
|
An Ed25519 key with which the token may be signed.
|
||||||
|
|
||||||
|
The key is encoded using [Unpadded Base64](/appendices/#unpadded-base64),
|
||||||
|
using the standard or URL-safe alphabets.
|
||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- public_key
|
- public_key
|
||||||
|
|
@ -37,11 +65,15 @@ properties:
|
||||||
- public_key
|
- public_key
|
||||||
type: object
|
type: object
|
||||||
state_key:
|
state_key:
|
||||||
description: 'The token, of which a signature must be produced in order to join the room.'
|
description: |-
|
||||||
|
The token, of which a signature must be produced in order to join the
|
||||||
|
room.
|
||||||
type: string
|
type: string
|
||||||
type:
|
type:
|
||||||
enum:
|
enum:
|
||||||
- m.room.third_party_invite
|
- m.room.third_party_invite
|
||||||
type: string
|
type: string
|
||||||
title: 'An invitation to a room issued to a third-party identifier, rather than a matrix user ID.'
|
title: |-
|
||||||
|
An invitation to a room issued to a third-party identifier, rather than a
|
||||||
|
matrix user ID.
|
||||||
type: object
|
type: object
|
||||||
|
|
|
||||||
|
|
@ -3,13 +3,41 @@ $schema: https://json-schema.org/draft/2020-12/schema
|
||||||
|
|
||||||
allOf:
|
allOf:
|
||||||
- $ref: core-event-schema/state_event.yaml
|
- $ref: core-event-schema/state_event.yaml
|
||||||
description: 'A topic is a short message detailing what is currently being discussed in the room. It can also be used as a way to display extra information about the room, which may not be suitable for the room name. The room topic can also be set when creating a room using `/createRoom` with the `topic` key.'
|
description: |-
|
||||||
|
A topic is a short message detailing what is currently being discussed
|
||||||
|
in the room. It can also be used as a way to display extra information
|
||||||
|
about the room, which may not be suitable for the room name. The room
|
||||||
|
topic can also be set when creating a room using
|
||||||
|
[`/createRoom`](client-server-api/#post_matrixclientv3createroom), either
|
||||||
|
with the `topic` key or by specifying a full event in `initial_state`.
|
||||||
|
|
||||||
|
If the `topic` property is absent, null, or empty then the topic is unset. In other words,
|
||||||
|
an empty `topic` property effectively resets the room to having no topic.
|
||||||
|
|
||||||
|
In order to prevent formatting abuse in room topics, clients SHOULD
|
||||||
|
limit the length of topics during both entry and display, for instance,
|
||||||
|
by capping the number of displayed lines. Additionally, clients SHOULD
|
||||||
|
ignore things like headings and enumerations (or format them as regular
|
||||||
|
text).
|
||||||
properties:
|
properties:
|
||||||
content:
|
content:
|
||||||
properties:
|
properties:
|
||||||
topic:
|
topic:
|
||||||
description: The topic text.
|
description: |-
|
||||||
|
The topic in plain text.
|
||||||
|
|
||||||
|
This SHOULD duplicate the content of the `text/plain`
|
||||||
|
representation in `m.topic` if any exists.
|
||||||
type: string
|
type: string
|
||||||
|
m.topic:
|
||||||
|
type: object
|
||||||
|
title: TopicContentBlock
|
||||||
|
x-addedInMatrixVersion: "1.15"
|
||||||
|
description: |-
|
||||||
|
Textual representation of the room topic in different mimetypes.
|
||||||
|
properties:
|
||||||
|
m.text:
|
||||||
|
$ref: components/m_text_content_block.yaml
|
||||||
required:
|
required:
|
||||||
- topic
|
- topic
|
||||||
type: object
|
type: object
|
||||||
|
|
|
||||||
140
data/schemas/oauth2-client-metadata.yaml
Normal file
140
data/schemas/oauth2-client-metadata.yaml
Normal file
|
|
@ -0,0 +1,140 @@
|
||||||
|
# Copyright 2025 The Matrix.org Foundation C.I.C.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
title: OAuthClientMetadata
|
||||||
|
type: object
|
||||||
|
description: |-
|
||||||
|
This definition of the metadata specifies only the fields that are meaningful
|
||||||
|
in the context of the Matrix specification. All the possible values are
|
||||||
|
registered in the [OAuth Dynamic Client Registration Metadata registry](https://www.iana.org/assignments/oauth-parameters/oauth-parameters.xhtml#client-metadata),
|
||||||
|
and normative definitions of them are available in their respective RFCs.
|
||||||
|
properties:
|
||||||
|
client_uri:
|
||||||
|
type: string
|
||||||
|
format: uri
|
||||||
|
description: |-
|
||||||
|
A URL to a valid web page that SHOULD give the user more information about
|
||||||
|
the client.
|
||||||
|
|
||||||
|
This URL MUST use the `https` scheme and SHOULD NOT require authentication
|
||||||
|
to access. It MUST NOT use a user or password in the authority component
|
||||||
|
of the URI.
|
||||||
|
|
||||||
|
The server MAY reject client registrations if this field is invalid or
|
||||||
|
missing.
|
||||||
|
|
||||||
|
This URI is a common base for all the other URIs in the metadata: those
|
||||||
|
MUST be either on the same host or on a subdomain of the host of the
|
||||||
|
`client_uri`. The port number, path and query components MAY be different.
|
||||||
|
|
||||||
|
For example, if the `client_uri` is `https://example.com/`, then one of
|
||||||
|
the `redirect_uris` can be `https://example.com/callback` or
|
||||||
|
`https://app.example.com/callback`, but not `https://app.com/callback`.
|
||||||
|
client_name:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
Human-readable name of the client to be presented to the user.
|
||||||
|
|
||||||
|
This field can be [localized](/client-server-api/#metadata-localization).
|
||||||
|
logo_uri:
|
||||||
|
type: string
|
||||||
|
format: uri
|
||||||
|
description: |-
|
||||||
|
URL that references a logo for the client.
|
||||||
|
|
||||||
|
This URL MUST use the `https` scheme.
|
||||||
|
|
||||||
|
This field can be [localized](/client-server-api/#metadata-localization).
|
||||||
|
tos_uri:
|
||||||
|
type: string
|
||||||
|
format: uri
|
||||||
|
description: |-
|
||||||
|
URL that points to a human-readable terms of service document for the
|
||||||
|
client.
|
||||||
|
|
||||||
|
This URL MUST use the `https` scheme and SHOULD NOT require authentication
|
||||||
|
to access. It MUST NOT use a user or password in the authority component
|
||||||
|
of the URI.
|
||||||
|
|
||||||
|
If this field is set, the server SHOULD show or link to this URL.
|
||||||
|
|
||||||
|
This field can be [localized](/client-server-api/#metadata-localization).
|
||||||
|
policy_uri:
|
||||||
|
type: string
|
||||||
|
format: uri
|
||||||
|
description: |-
|
||||||
|
URL that points to a human-readable policy document for the client.
|
||||||
|
|
||||||
|
This URL MUST use the `https` scheme and SHOULD NOT require authentication
|
||||||
|
to access. It MUST NOT use a user or password in the authority component
|
||||||
|
of the URI.
|
||||||
|
|
||||||
|
If this field is set, the server SHOULD show or link to this URL.
|
||||||
|
|
||||||
|
This field can be [localized](/client-server-api/#metadata-localization).
|
||||||
|
redirect_uris:
|
||||||
|
type: array
|
||||||
|
description: |-
|
||||||
|
Array of redirection URIs for use in redirect-based flows.
|
||||||
|
|
||||||
|
At least one URI is required to use the authorization code grant.
|
||||||
|
|
||||||
|
The server MUST perform [validation on redirect URIs](/client-server-api/#redirect-uri-validation).
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
format: uri
|
||||||
|
description: A redirection URI.
|
||||||
|
response_types:
|
||||||
|
type: array
|
||||||
|
description: |-
|
||||||
|
Array of the OAuth 2.0 response types that the client may use.
|
||||||
|
|
||||||
|
This MUST include the `code` value to use the authorization code grant.
|
||||||
|
|
||||||
|
The server MUST ignore values that it does not understand.
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
description: A response type that the client may use.
|
||||||
|
grant_types:
|
||||||
|
type: array
|
||||||
|
description: |-
|
||||||
|
Array of the OAuth 2.0 grant types that the client may use.
|
||||||
|
|
||||||
|
This MUST include:
|
||||||
|
- the `authorization_code` value to use the authorization code grant,
|
||||||
|
- the `refresh_token` value to use the refresh token grant.
|
||||||
|
|
||||||
|
The server MUST ignore values that it does not understand.
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
description: A grant type that the client may use.
|
||||||
|
token_endpoint_auth_method:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
String indicator of the requested authentication method for the token
|
||||||
|
endpoint.
|
||||||
|
|
||||||
|
The homeserver MUST support the `none` value, as most Matrix clients are
|
||||||
|
client-side only, do not have a server component, and therefore are public
|
||||||
|
clients.
|
||||||
|
application_type:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
Kind of the application.
|
||||||
|
|
||||||
|
The homeserver MUST support the `web` and `native` values to be able to
|
||||||
|
perform [redirect URI validation](/client-server-api/#redirect-uri-validation).
|
||||||
|
|
||||||
|
Defaults to `web` if omitted.
|
||||||
|
required:
|
||||||
|
- client_uri
|
||||||
|
|
@ -51,6 +51,11 @@ mx-room-id:
|
||||||
url: appendices#room-ids
|
url: appendices#room-ids
|
||||||
# regex: "^!"
|
# regex: "^!"
|
||||||
|
|
||||||
|
mx-room-alias:
|
||||||
|
title: Room Alias
|
||||||
|
url: appendices#room-aliases
|
||||||
|
# regex: "^#"
|
||||||
|
|
||||||
mx-server-name:
|
mx-server-name:
|
||||||
title: Server Name
|
title: Server Name
|
||||||
url: appendices#server-name
|
url: appendices#server-name
|
||||||
|
|
|
||||||
|
|
@ -60,6 +60,11 @@ General
|
||||||
you have at home. "identity server" is clear, whereas "identityserver" is
|
you have at home. "identity server" is clear, whereas "identityserver" is
|
||||||
horrible.
|
horrible.
|
||||||
|
|
||||||
|
* When talking about a user's "display name", it is spelt as two words. In
|
||||||
|
identifiers such as within the content of an ``m.room.member`` event, it is
|
||||||
|
spelt as a single word, ``displayname``. (There are some historical exceptions
|
||||||
|
to this where the identifier is spelt ``display_name``.)
|
||||||
|
|
||||||
* Lists should:
|
* Lists should:
|
||||||
|
|
||||||
* Be introduced with a colon.
|
* Be introduced with a colon.
|
||||||
|
|
@ -84,12 +89,12 @@ Changes between spec versions
|
||||||
Sections should reference the Matrix spec version they were added/changed in. This
|
Sections should reference the Matrix spec version they were added/changed in. This
|
||||||
is often a guess at what the next version will be - please use the currently released
|
is often a guess at what the next version will be - please use the currently released
|
||||||
version with a minor version bump as the referenced version. For example, if the
|
version with a minor version bump as the referenced version. For example, if the
|
||||||
current version is `v1.1` then annotate your changes with `v1.2`.
|
current version is ``v1.1`` then annotate your changes with ``v1.2``.
|
||||||
|
|
||||||
"Added/changed in" tags can be documented as the following:
|
"Added/changed in" tags can be documented as the following:
|
||||||
|
|
||||||
* `{{% added-in v="1.2" %}}` or `{{% changed-in v="1.2" %}}` within Markdown documents.
|
* ``{{% added-in v="1.2" %}}`` or ``{{% changed-in v="1.2" %}}`` within Markdown documents.
|
||||||
* `x-addedInMatrixVersion` and `x-changedInMatrixVersion` within OpenAPI.
|
* ``x-addedInMatrixVersion`` and ``x-changedInMatrixVersion`` within OpenAPI.
|
||||||
|
|
||||||
OpenAPI
|
OpenAPI
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
|
@ -185,4 +190,4 @@ Describing grammar
|
||||||
|
|
||||||
Use `RFC5234-style ABNF <https://datatracker.ietf.org/doc/html/rfc5234>`_ when describing
|
Use `RFC5234-style ABNF <https://datatracker.ietf.org/doc/html/rfc5234>`_ when describing
|
||||||
the grammar for something in the spec, such as user IDs or server names. Use lowercase
|
the grammar for something in the spec, such as user IDs or server names. Use lowercase
|
||||||
and underscore-delimited element names (`user_id`, not `UserID` or `user-id`).
|
and underscore-delimited element names (``user_id``, not ``UserID`` or ``user-id``).
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,35 @@ import yaml
|
||||||
scripts_dir = os.path.dirname(os.path.abspath(__file__))
|
scripts_dir = os.path.dirname(os.path.abspath(__file__))
|
||||||
api_dir = os.path.join(os.path.dirname(scripts_dir), "data", "api")
|
api_dir = os.path.join(os.path.dirname(scripts_dir), "data", "api")
|
||||||
|
|
||||||
|
# Finds a Hugo shortcode in a string.
|
||||||
|
#
|
||||||
|
# A shortcode is defined as (newlines and whitespaces for presentation purpose):
|
||||||
|
#
|
||||||
|
# {{%
|
||||||
|
# <zero or more whitespaces>
|
||||||
|
# <name of shortcode>
|
||||||
|
# (optional <one or more whitespaces><list of parameters>)
|
||||||
|
# <zero or more whitespaces>
|
||||||
|
# %}}
|
||||||
|
#
|
||||||
|
# With:
|
||||||
|
#
|
||||||
|
# * <name of shortcode>: any word character and `-` and `/`. `re.ASCII` is used to only match
|
||||||
|
# ASCII characters in the name.
|
||||||
|
# * <list of parameters>: any character except `}`, must not start or end with a
|
||||||
|
# whitespace.
|
||||||
|
shortcode_regex = re.compile(r"""\{\{\% # {{%
|
||||||
|
\s* # zero or more whitespaces
|
||||||
|
(?P<name>[\w/-]+) # name of shortcode
|
||||||
|
(?:\s+(?P<params>[^\s\}][^\}]+[^\s\}]))? # optional list of parameters
|
||||||
|
\s* # zero or more whitespaces
|
||||||
|
\%\}\} # %}}""", re.ASCII | re.VERBOSE)
|
||||||
|
|
||||||
|
# Parses the parameters of a Hugo shortcode.
|
||||||
|
#
|
||||||
|
# For simplicity, this currently only supports the `key="value"` format.
|
||||||
|
shortcode_params_regex = re.compile(r"(?P<key>\w+)=\"(?P<value>[^\"]+)\"", re.ASCII)
|
||||||
|
|
||||||
def prefix_absolute_path_references(text, base_url):
|
def prefix_absolute_path_references(text, base_url):
|
||||||
"""Adds base_url to absolute-path references.
|
"""Adds base_url to absolute-path references.
|
||||||
|
|
||||||
|
|
@ -44,17 +73,90 @@ def prefix_absolute_path_references(text, base_url):
|
||||||
"""
|
"""
|
||||||
return text.replace("](/", "]({}/".format(base_url))
|
return text.replace("](/", "]({}/".format(base_url))
|
||||||
|
|
||||||
def edit_links(node, base_url):
|
def replace_match(match, replacement):
|
||||||
"""Finds description nodes and makes any links in them absolute."""
|
"""Replaces the regex match by the replacement in the text."""
|
||||||
|
return match.string[:match.start()] + replacement + match.string[match.end():]
|
||||||
|
|
||||||
|
def replace_shortcode(shortcode):
|
||||||
|
"""Replaces the shortcode by a Markdown fallback in the text.
|
||||||
|
|
||||||
|
The supported shortcodes are:
|
||||||
|
|
||||||
|
* boxes/note, boxes/rationale, boxes/warning
|
||||||
|
* added-in, changed-in
|
||||||
|
|
||||||
|
All closing tags (`{{ /shortcode }}`) are replaced with the empty string.
|
||||||
|
"""
|
||||||
|
|
||||||
|
if shortcode['name'].startswith("/"):
|
||||||
|
# This is the end of the shortcode, just remove it.
|
||||||
|
return replace_match(shortcode, "")
|
||||||
|
|
||||||
|
# Parse the parameters of the shortcode
|
||||||
|
params = {}
|
||||||
|
if shortcode['params']:
|
||||||
|
for param in shortcode_params_regex.finditer(shortcode['params']):
|
||||||
|
if param['key']:
|
||||||
|
params[param['key']] = param['value']
|
||||||
|
|
||||||
|
match shortcode['name']:
|
||||||
|
case "boxes/note":
|
||||||
|
return replace_match(shortcode, "**NOTE:** ")
|
||||||
|
case "boxes/rationale":
|
||||||
|
return replace_match(shortcode, "**RATIONALE:** ")
|
||||||
|
case "boxes/warning":
|
||||||
|
return replace_match(shortcode, "**WARNING:** ")
|
||||||
|
case "added-in":
|
||||||
|
version = params['v']
|
||||||
|
if not version:
|
||||||
|
raise ValueError("Missing parameter `v` for `added-in` shortcode")
|
||||||
|
|
||||||
|
return replace_match(shortcode, f"**[Added in `v{version}`]** ")
|
||||||
|
case "changed-in":
|
||||||
|
version = params['v']
|
||||||
|
if not version:
|
||||||
|
raise ValueError("Missing parameter `v` for `changed-in` shortcode")
|
||||||
|
|
||||||
|
return replace_match(shortcode, f"**[Changed in `v{version}`]** ")
|
||||||
|
case _:
|
||||||
|
raise ValueError("Unknown shortcode", shortcode['name'])
|
||||||
|
|
||||||
|
|
||||||
|
def find_and_replace_shortcodes(text):
|
||||||
|
"""Finds Hugo shortcodes and replaces them by a Markdown fallback.
|
||||||
|
|
||||||
|
The supported shortcodes are:
|
||||||
|
|
||||||
|
* boxes/note, boxes/rationale, boxes/warning
|
||||||
|
* added-in, changed-in
|
||||||
|
"""
|
||||||
|
# We use a `while` loop with `search` instead of a `for` loop with
|
||||||
|
# `finditer`, because as soon as we start replacing text, the
|
||||||
|
# indices of the match are invalid.
|
||||||
|
while shortcode := shortcode_regex.search(text):
|
||||||
|
text = replace_shortcode(shortcode)
|
||||||
|
|
||||||
|
return text
|
||||||
|
|
||||||
|
def edit_descriptions(node, base_url):
|
||||||
|
"""Finds description nodes and apply fixes to them.
|
||||||
|
|
||||||
|
The fixes that are applied are:
|
||||||
|
|
||||||
|
* Make links absolute
|
||||||
|
* Replace Hugo shortcodes
|
||||||
|
"""
|
||||||
if isinstance(node, dict):
|
if isinstance(node, dict):
|
||||||
for key in node:
|
for key in node:
|
||||||
if isinstance(node[key], str):
|
if isinstance(node[key], str):
|
||||||
node[key] = prefix_absolute_path_references(node[key], base_url)
|
node[key] = prefix_absolute_path_references(node[key], base_url)
|
||||||
|
node[key] = find_and_replace_shortcodes(node[key])
|
||||||
else:
|
else:
|
||||||
edit_links(node[key], base_url)
|
edit_descriptions(node[key], base_url)
|
||||||
elif isinstance(node, list):
|
elif isinstance(node, list):
|
||||||
for item in node:
|
for item in node:
|
||||||
edit_links(item, base_url)
|
edit_descriptions(item, base_url)
|
||||||
|
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
"dump-openapi.py - assemble the OpenAPI specs into a single JSON file"
|
"dump-openapi.py - assemble the OpenAPI specs into a single JSON file"
|
||||||
|
|
@ -164,7 +266,7 @@ for filename in os.listdir(selected_api_dir):
|
||||||
if untagged != 0:
|
if untagged != 0:
|
||||||
print("{} untagged operations, you may want to look into fixing that.".format(untagged))
|
print("{} untagged operations, you may want to look into fixing that.".format(untagged))
|
||||||
|
|
||||||
edit_links(output, base_url)
|
edit_descriptions(output, base_url)
|
||||||
|
|
||||||
print("Generating %s" % output_file)
|
print("Generating %s" % output_file)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue