0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-05-17 11:03:46 +02:00
synapse/synapse/api/constants.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

192 lines
4.9 KiB
Python
Raw Normal View History

2016-01-07 05:26:29 +01:00
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2017 Vector Creations Ltd
2019-11-05 11:56:39 +01:00
# Copyright 2018-2019 New Vector Ltd
# Copyright 2019 The Matrix.org Foundation C.I.C.
2014-08-12 16:10:52 +02:00
#
# 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.
2014-08-12 16:10:52 +02:00
"""Contains constants from the specification."""
# the "depth" field on events is limited to 2**63 - 1
MAX_DEPTH = 2 ** 63 - 1
# the maximum length for a room alias is 255 characters
MAX_ALIAS_LENGTH = 255
# the maximum length for a user id is 255 characters
MAX_USERID_LENGTH = 255
2021-02-17 14:41:47 +01:00
# The maximum length for a group id is 255 characters
MAX_GROUPID_LENGTH = 255
MAX_GROUP_CATEGORYID_LENGTH = 255
MAX_GROUP_ROLEID_LENGTH = 255
2014-08-12 16:10:52 +02:00
2020-09-04 12:54:56 +02:00
class Membership:
2014-08-12 16:10:52 +02:00
"""Represents the membership states of a user in a room."""
2019-06-20 11:32:02 +02:00
2014-08-12 16:10:52 +02:00
INVITE = "invite"
JOIN = "join"
KNOCK = "knock"
LEAVE = "leave"
2014-09-01 17:15:34 +02:00
BAN = "ban"
LIST = (INVITE, JOIN, KNOCK, LEAVE, BAN)
2014-08-12 16:10:52 +02:00
2020-09-04 12:54:56 +02:00
class PresenceState:
2014-08-12 16:10:52 +02:00
"""Represents the presence state of a user."""
2019-06-20 11:32:02 +02:00
OFFLINE = "offline"
UNAVAILABLE = "unavailable"
ONLINE = "online"
2021-03-18 16:34:47 +01:00
BUSY = "org.matrix.msc3026.busy"
2020-09-04 12:54:56 +02:00
class JoinRules:
PUBLIC = "public"
KNOCK = "knock"
INVITE = "invite"
PRIVATE = "private"
# As defined for MSC3083.
MSC3083_RESTRICTED = "restricted"
2020-09-04 12:54:56 +02:00
class LoginType:
PASSWORD = "m.login.password"
EMAIL_IDENTITY = "m.login.email.identity"
MSISDN = "m.login.msisdn"
2014-10-30 12:10:17 +01:00
RECAPTCHA = "m.login.recaptcha"
TERMS = "m.login.terms"
SSO = "m.login.sso"
DUMMY = "m.login.dummy"
2014-12-03 17:07:21 +01:00
# This is used in the `type` parameter for /register when called by
# an appservice to register a new user.
APP_SERVICE_REGISTRATION_TYPE = "m.login.application_service"
2020-09-04 12:54:56 +02:00
class EventTypes:
2014-12-03 17:07:21 +01:00
Member = "m.room.member"
Create = "m.room.create"
Tombstone = "m.room.tombstone"
2014-12-03 17:07:21 +01:00
JoinRules = "m.room.join_rules"
PowerLevels = "m.room.power_levels"
Aliases = "m.room.aliases"
2014-12-09 15:49:11 +01:00
Redaction = "m.room.redaction"
ThirdPartyInvite = "m.room.third_party_invite"
RelatedGroups = "m.room.related_groups"
RoomHistoryVisibility = "m.room.history_visibility"
CanonicalAlias = "m.room.canonical_alias"
Encrypted = "m.room.encrypted"
RoomAvatar = "m.room.avatar"
RoomEncryption = "m.room.encryption"
GuestAccess = "m.room.guest_access"
# These are used for validation
Message = "m.room.message"
Topic = "m.room.topic"
Name = "m.room.name"
2015-01-28 17:16:53 +01:00
ServerACL = "m.room.server_acl"
2018-08-15 16:04:30 +02:00
Pinned = "m.room.pinned_events"
Retention = "m.room.retention"
Dummy = "org.matrix.dummy_event"
MSC1772_SPACE_CHILD = "org.matrix.msc1772.space.child"
MSC1772_SPACE_PARENT = "org.matrix.msc1772.space.parent"
2015-01-28 17:16:53 +01:00
class EduTypes:
Presence = "m.presence"
RoomKeyRequest = "m.room_key_request"
2020-09-04 12:54:56 +02:00
class RejectedReason:
2015-01-28 17:16:53 +01:00
AUTH_ERROR = "auth_error"
2015-07-13 17:48:06 +02:00
2020-09-04 12:54:56 +02:00
class RoomCreationPreset:
2015-07-14 11:20:31 +02:00
PRIVATE_CHAT = "private_chat"
PUBLIC_CHAT = "public_chat"
TRUSTED_PRIVATE_CHAT = "trusted_private_chat"
2020-09-04 12:54:56 +02:00
class ThirdPartyEntityKind:
USER = "user"
LOCATION = "location"
2018-08-22 18:00:29 +02:00
ServerNoticeMsgType = "m.server_notice"
ServerNoticeLimitReached = "m.server_notice.usage_limit_reached"
2020-09-04 12:54:56 +02:00
class UserTypes:
"""Allows for user type specific behaviour. With the benefit of hindsight
'admin' and 'guest' users should also be UserTypes. Normal users are type None
"""
2019-06-20 11:32:02 +02:00
SUPPORT = "support"
2019-08-23 10:52:09 +02:00
BOT = "bot"
ALL_USER_TYPES = (SUPPORT, BOT)
2020-09-04 12:54:56 +02:00
class RelationTypes:
"""The types of relations known to this server."""
2019-06-20 11:32:02 +02:00
ANNOTATION = "m.annotation"
2019-05-20 15:31:19 +02:00
REPLACE = "m.replace"
REFERENCE = "m.reference"
2020-09-04 12:54:56 +02:00
class LimitBlockingTypes:
"""Reasons that a server may be blocked"""
MONTHLY_ACTIVE_USER = "monthly_active_user"
HS_DISABLED = "hs_disabled"
2019-10-29 19:35:49 +01:00
2020-09-04 12:54:56 +02:00
class EventContentFields:
2019-11-01 11:30:51 +01:00
"""Fields found in events' content, regardless of type."""
2019-11-01 11:39:14 +01:00
2019-11-01 11:30:51 +01:00
# Labels for the event, cf https://github.com/matrix-org/matrix-doc/pull/2326
2019-11-01 17:22:44 +01:00
LABELS = "org.matrix.labels"
# Timestamp to delete the event after
# cf https://github.com/matrix-org/matrix-doc/pull/2228
SELF_DESTRUCT_AFTER = "org.matrix.self_destruct_after"
# cf https://github.com/matrix-org/matrix-doc/pull/1772
MSC1772_ROOM_TYPE = "org.matrix.msc1772.type"
2020-09-04 12:54:56 +02:00
class RoomEncryptionAlgorithms:
MEGOLM_V1_AES_SHA2 = "m.megolm.v1.aes-sha2"
DEFAULT = MEGOLM_V1_AES_SHA2
class AccountDataTypes:
DIRECT = "m.direct"
IGNORED_USER_LIST = "m.ignored_user_list"
class HistoryVisibility:
INVITED = "invited"
JOINED = "joined"
SHARED = "shared"
WORLD_READABLE = "world_readable"