mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-05-03 15:44:09 +02:00
Compare commits
4 commits
5ac68517ce
...
4793499da8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4793499da8 | ||
|
|
fa78688f57 | ||
|
|
a6fb075d92 | ||
|
|
064e8f1411 |
|
|
@ -0,0 +1,3 @@
|
||||||
|
The optional `submit_url` response parameter of the `/requestToken` endpoints uses the same request
|
||||||
|
and response parameters and error codes as the Identity Service API's `POST /_matrix/identity/v2/validate/email/submitToken`,
|
||||||
|
as per [MSC4183](https://github.com/matrix-org/matrix-spec-proposals/pull/4183).
|
||||||
1
changelogs/client_server/newsfragments/2291.feature
Normal file
1
changelogs/client_server/newsfragments/2291.feature
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Add `m.recent_emoji` account data event to track recently used emoji as per [MSC4356](https://github.com/matrix-org/matrix-spec-proposals/pull/4356).
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
Clarify the error codes that can be returned with a 400 HTTP status code by the `POST /_matrix/identity/v2/validate/email/submitToken`
|
||||||
|
and `POST /_matrix/identity/v2/validate/msisdn/submitToken` endpoints, introducing the `M_TOKEN_INCORRECT`
|
||||||
|
error code, as per [MSC4183](https://github.com/matrix-org/matrix-spec-proposals/pull/4183).
|
||||||
|
|
@ -3898,6 +3898,7 @@ that profile.
|
||||||
| [Guest Access](#guest-access) | Optional | Optional | Optional | Optional | Optional |
|
| [Guest Access](#guest-access) | Optional | Optional | Optional | Optional | Optional |
|
||||||
| [Moderation Policy Lists](#moderation-policy-lists) | Optional | Optional | Optional | Optional | Optional |
|
| [Moderation Policy Lists](#moderation-policy-lists) | Optional | Optional | Optional | Optional | Optional |
|
||||||
| [OpenID](#openid) | Optional | Optional | Optional | Optional | Optional |
|
| [OpenID](#openid) | Optional | Optional | Optional | Optional | Optional |
|
||||||
|
| [Recently used emoji](#recently-used-emoji) | Optional | Optional | Optional | Optional | Optional |
|
||||||
| [Reference Relations](#reference-relations) | Optional | Optional | Optional | Optional | Optional |
|
| [Reference Relations](#reference-relations) | Optional | Optional | Optional | Optional | Optional |
|
||||||
| [Reporting Content](#reporting-content) | Optional | Optional | Optional | Optional | Optional |
|
| [Reporting Content](#reporting-content) | Optional | Optional | Optional | Optional | Optional |
|
||||||
| [Rich replies](#rich-replies) | Optional | Optional | Optional | Optional | Optional |
|
| [Rich replies](#rich-replies) | Optional | Optional | Optional | Optional | Optional |
|
||||||
|
|
@ -3999,5 +4000,6 @@ systems.
|
||||||
{{% cs-module name="Spaces" filename="spaces" %}}
|
{{% cs-module name="Spaces" filename="spaces" %}}
|
||||||
{{% cs-module name="Event replacements" filename="event_replacements" %}}
|
{{% cs-module name="Event replacements" filename="event_replacements" %}}
|
||||||
{{% cs-module name="Event annotations and reactions" filename="event_annotations" %}}
|
{{% cs-module name="Event annotations and reactions" filename="event_annotations" %}}
|
||||||
|
{{% cs-module name="Recently used emoji" filename="recent_emoji" %}}
|
||||||
{{% cs-module name="Threading" filename="threading" %}}
|
{{% cs-module name="Threading" filename="threading" %}}
|
||||||
{{% cs-module name="Reference relations" filename="reference_relations" %}}
|
{{% cs-module name="Reference relations" filename="reference_relations" %}}
|
||||||
|
|
|
||||||
40
content/client-server-api/modules/recent_emoji.md
Normal file
40
content/client-server-api/modules/recent_emoji.md
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
### Recently used emoji
|
||||||
|
|
||||||
|
{{% added-in v="1.18" %}}
|
||||||
|
|
||||||
|
This module enables clients to track a user's cumulated emoji usage across different
|
||||||
|
devices. The data is stored in the [`m.recent_emoji`](#mrecent_emoji)
|
||||||
|
global [account data](#client-config) and can, among other things, be used to
|
||||||
|
generate recommendations in emoji pickers.
|
||||||
|
|
||||||
|
#### Events
|
||||||
|
|
||||||
|
{{% event event="m.recent_emoji" %}}
|
||||||
|
|
||||||
|
#### Client behaviour
|
||||||
|
|
||||||
|
What exactly constitutes trackable emoji usage is left as an implementation detail
|
||||||
|
for clients. It is RECOMMENDED to include sending emoji in both messages and
|
||||||
|
annotations.
|
||||||
|
|
||||||
|
When an emoji is used, the sending client moves (or adds) it to the beginning of
|
||||||
|
the `recent_emoji` array and increments (or initializes) its counter. This keeps
|
||||||
|
the array ordered by last usage time which facilitates evaluating the data. How
|
||||||
|
exactly the client evaluates and uses the collected data is deliberately left
|
||||||
|
unspecified.
|
||||||
|
|
||||||
|
To prevent excessive growth of the event as new emoji are being used, clients
|
||||||
|
SHOULD limit the length of the `recent_emoji` array by dropping elements from
|
||||||
|
its end. A RECOMMENDED maximum length is 100 emoji.
|
||||||
|
|
||||||
|
To enable future extension, clients MUST tolerate and preserve array elements
|
||||||
|
within `recent_emoji` regardless of whether they understand or support the
|
||||||
|
contained `emoji` value. This means ignoring entries with unrecognised values
|
||||||
|
of `emoji` when deciding what to display to the user while retaining them when
|
||||||
|
modifying the array (unless the modification is for truncation).
|
||||||
|
|
||||||
|
To prevent undefined behavior, clients SHOULD remove array elements that
|
||||||
|
don't conform to the event schema such as elements with negative counters.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
29
data/api/client-server/definitions/recent_emoji.yaml
Normal file
29
data/api/client-server/definitions/recent_emoji.yaml
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
# Copyright 2026 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: Recent Emoji
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
emoji:
|
||||||
|
type: string
|
||||||
|
description: The Unicode emoji as string.
|
||||||
|
example: 🚀
|
||||||
|
total:
|
||||||
|
type: number
|
||||||
|
description: |-
|
||||||
|
The number of times the emoji has been used.
|
||||||
|
MUST be non-negative and smaller than 2^53.
|
||||||
|
required:
|
||||||
|
- emoji
|
||||||
|
- total
|
||||||
|
|
@ -24,16 +24,22 @@ properties:
|
||||||
submit_url:
|
submit_url:
|
||||||
type: string
|
type: string
|
||||||
format: uri
|
format: uri
|
||||||
|
x-changedInMatrixVersion:
|
||||||
|
"1.18": |-
|
||||||
|
The URL has the same request and response parameters and error codes as
|
||||||
|
the Identity Service API's endpoint.
|
||||||
description: |-
|
description: |-
|
||||||
An optional field containing a URL where the client must submit the
|
An optional field containing a URL where the client must submit the
|
||||||
validation token to, with identical parameters to the Identity Service
|
validation token, with identical request and response parameters and error
|
||||||
API's `POST /validate/email/submitToken` endpoint (without the requirement
|
codes to the Identity Service API's
|
||||||
for an access token). The homeserver must send this token to the user (if
|
[`POST /_matrix/identity/v2/validate/email/submitToken`](/identity-service-api/#post_matrixidentityv2validateemailsubmittoken)
|
||||||
applicable), who should then be prompted to provide it to the client.
|
endpoint (without the requirement for an access token). The homeserver
|
||||||
|
must send this token to the user (if applicable), who should then be
|
||||||
|
prompted to provide it to the client.
|
||||||
|
|
||||||
If this field is not present, the client can assume that verification
|
If this field is not present, the client can assume that verification
|
||||||
will happen without the client's involvement provided the homeserver
|
will happen without the client's involvement provided the homeserver
|
||||||
advertises this specification version in the `/versions` response
|
advertises this specification version in the [`GET /versions`](/client-server-api/#get_matrixclientversions)
|
||||||
(ie: r0.5.0).
|
response (ie: r0.5.0).
|
||||||
example: "https://example.org/path/to/submitToken"
|
example: "https://example.org/path/to/submitToken"
|
||||||
required: ['sid']
|
required: ['sid']
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,25 @@ paths:
|
||||||
value: {
|
value: {
|
||||||
"success": true
|
"success": true
|
||||||
}
|
}
|
||||||
|
"400":
|
||||||
|
x-addedInMatrixVersion: "1.18"
|
||||||
|
description: |
|
||||||
|
An error occurred. Some possible errors are:
|
||||||
|
|
||||||
|
- `M_TOKEN_INCORRECT`: The token that the user entered to validate the session is
|
||||||
|
incorrect.
|
||||||
|
- `M_INVALID_PARAM`: One of the supplied parameters is not valid.
|
||||||
|
- `M_SESSION_EXPIRED`: The validation session in question has expired.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: ../client-server/definitions/errors/error.yaml
|
||||||
|
examples:
|
||||||
|
response:
|
||||||
|
value: {
|
||||||
|
"errcode": "M_TOKEN_INCORRECT",
|
||||||
|
"error": "The token is incorrect"
|
||||||
|
}
|
||||||
"403":
|
"403":
|
||||||
description: |
|
description: |
|
||||||
The user must do something in order to use this endpoint. One example
|
The user must do something in order to use this endpoint. One example
|
||||||
|
|
|
||||||
|
|
@ -155,6 +155,25 @@ paths:
|
||||||
value: {
|
value: {
|
||||||
"success": true
|
"success": true
|
||||||
}
|
}
|
||||||
|
"400":
|
||||||
|
x-addedInMatrixVersion: "1.18"
|
||||||
|
description: |
|
||||||
|
An error occurred. Some possible errors are:
|
||||||
|
|
||||||
|
- `M_TOKEN_INCORRECT`: The token that the user entered to validate the session is
|
||||||
|
incorrect.
|
||||||
|
- `M_INVALID_PARAM`: One of the supplied parameters is not valid.
|
||||||
|
- `M_SESSION_EXPIRED`: The validation session in question has expired.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: ../client-server/definitions/errors/error.yaml
|
||||||
|
examples:
|
||||||
|
response:
|
||||||
|
value: {
|
||||||
|
"errcode": "M_TOKEN_INCORRECT",
|
||||||
|
"error": "The token is incorrect"
|
||||||
|
}
|
||||||
"403":
|
"403":
|
||||||
description: |
|
description: |
|
||||||
The user must do something in order to use this endpoint. One example
|
The user must do something in order to use this endpoint. One example
|
||||||
|
|
|
||||||
16
data/event-schemas/examples/m.recent_emoji.yaml
Normal file
16
data/event-schemas/examples/m.recent_emoji.yaml
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"$ref": "core/event.json",
|
||||||
|
"type": "m.recent_emoji",
|
||||||
|
"content": {
|
||||||
|
"recent_emoji": [{
|
||||||
|
"emoji": "🤔",
|
||||||
|
"total": 19
|
||||||
|
}, {
|
||||||
|
"emoji": "👍",
|
||||||
|
"total": 7
|
||||||
|
}, {
|
||||||
|
"emoji": "😅",
|
||||||
|
"total": 84
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
}
|
||||||
29
data/event-schemas/schema/m.recent_emoji.yaml
Normal file
29
data/event-schemas/schema/m.recent_emoji.yaml
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
|
"type": "object",
|
||||||
|
"title": "Recent Emoji Event",
|
||||||
|
"description": "Lets clients maintain a list of recently used emoji.",
|
||||||
|
"allOf": [{
|
||||||
|
"$ref": "core-event-schema/event.yaml"
|
||||||
|
}],
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": ["m.recent_emoji"]
|
||||||
|
},
|
||||||
|
"content": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"recent_emoji": {
|
||||||
|
"description": "The list of recently used emoji. Elements in the list are ordered descendingly by last usage time.",
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "../../api/client-server/definitions/recent_emoji.yaml"
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": ["recent_emoji"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": ["type", "content"]
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue