0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-01 18:28:56 +02:00
synapse/synapse/api/constants.py

148 lines
3.8 KiB
Python
Raw Normal View History

2014-08-12 16:10:52 +02:00
# -*- coding: utf-8 -*-
2016-01-07 05:26:29 +01:00
# Copyright 2014-2016 OpenMarket Ltd
# Copyright 2017 Vector Creations Ltd
# Copyright 2018 New Vector Ltd
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
2019-06-20 11:32:02 +02:00
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
2014-08-12 16:10:52 +02:00
class Membership(object):
"""Represents the membership states of a user in a room."""
2019-06-20 11:32:02 +02:00
INVITE = "invite"
JOIN = "join"
KNOCK = "knock"
LEAVE = "leave"
BAN = "ban"
2014-09-01 17:15:34 +02:00
LIST = (INVITE, JOIN, KNOCK, LEAVE, BAN)
2014-08-12 16:10:52 +02:00
class PresenceState(object):
"""Represents the presence state of a user."""
2019-06-20 11:32:02 +02:00
OFFLINE = "offline"
UNAVAILABLE = "unavailable"
ONLINE = "online"
class JoinRules(object):
2019-06-20 11:32:02 +02:00
PUBLIC = "public"
KNOCK = "knock"
INVITE = "invite"
PRIVATE = "private"
class LoginType(object):
2019-06-20 11:32:02 +02:00
PASSWORD = "m.login.password"
EMAIL_IDENTITY = "m.login.email.identity"
MSISDN = "m.login.msisdn"
RECAPTCHA = "m.login.recaptcha"
TERMS = "m.login.terms"
DUMMY = "m.login.dummy"
# Only for C/S API v1
2019-06-20 11:32:02 +02:00
APPLICATION_SERVICE = "m.login.application_service"
SHARED_SECRET = "org.matrix.login.shared_secret"
2014-12-03 17:07:21 +01:00
class EventTypes(object):
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"
Encryption = "m.room.encryption"
RelatedGroups = "m.room.related_groups"
RoomHistoryVisibility = "m.room.history_visibility"
CanonicalAlias = "m.room.canonical_alias"
2019-05-21 18:36:50 +02:00
Encryption = "m.room.encryption"
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"
2015-01-28 17:16:53 +01:00
class RejectedReason(object):
AUTH_ERROR = "auth_error"
2015-07-13 17:48:06 +02:00
class RoomCreationPreset(object):
2015-07-14 11:20:31 +02:00
PRIVATE_CHAT = "private_chat"
PUBLIC_CHAT = "public_chat"
TRUSTED_PRIVATE_CHAT = "trusted_private_chat"
class ThirdPartyEntityKind(object):
USER = "user"
LOCATION = "location"
2018-08-22 18:00:29 +02:00
ServerNoticeMsgType = "m.server_notice"
ServerNoticeLimitReached = "m.server_notice.usage_limit_reached"
class UserTypes(object):
"""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)
class RelationTypes(object):
"""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"
class LimitBlockingTypes(object):
"""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
2019-11-01 11:30:51 +01:00
class EventContentFields(object):
"""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"