2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2017-03-13 13:27:51 -04:00
|
|
|
# Copyright 2017 Vector Creations Ltd
|
2019-04-11 12:08:13 -04:00
|
|
|
# Copyright 2018 New Vector Ltd
|
2014-08-12 10:10:52 -04: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 22:14:34 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
"""Contains constants from the specification."""
|
|
|
|
|
2018-05-01 11:19:39 -04:00
|
|
|
# the "depth" field on events is limited to 2**63 - 1
|
2019-06-20 05:32:02 -04:00
|
|
|
MAX_DEPTH = 2 ** 63 - 1
|
2018-05-01 11:19:39 -04:00
|
|
|
|
2019-05-08 12:01:30 -04:00
|
|
|
# the maximum length for a room alias is 255 characters
|
|
|
|
MAX_ALIAS_LENGTH = 255
|
|
|
|
|
2019-05-20 06:20:08 -04:00
|
|
|
# the maximum length for a user id is 255 characters
|
|
|
|
MAX_USERID_LENGTH = 255
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
class Membership(object):
|
|
|
|
|
|
|
|
"""Represents the membership states of a user in a room."""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
|
|
|
INVITE = "invite"
|
|
|
|
JOIN = "join"
|
|
|
|
KNOCK = "knock"
|
|
|
|
LEAVE = "leave"
|
|
|
|
BAN = "ban"
|
2014-09-01 11:15:34 -04:00
|
|
|
LIST = (INVITE, JOIN, KNOCK, LEAVE, BAN)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
class PresenceState(object):
|
|
|
|
"""Represents the presence state of a user."""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
|
|
|
OFFLINE = "offline"
|
|
|
|
UNAVAILABLE = "unavailable"
|
|
|
|
ONLINE = "online"
|
2014-08-28 05:59:15 -04:00
|
|
|
|
|
|
|
|
|
|
|
class JoinRules(object):
|
2019-06-20 05:32:02 -04:00
|
|
|
PUBLIC = "public"
|
|
|
|
KNOCK = "knock"
|
|
|
|
INVITE = "invite"
|
|
|
|
PRIVATE = "private"
|
2014-09-15 05:23:20 -04:00
|
|
|
|
|
|
|
|
|
|
|
class LoginType(object):
|
2019-06-20 05:32:02 -04: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"
|
2015-04-02 12:01:29 -04:00
|
|
|
|
|
|
|
# Only for C/S API v1
|
2019-06-20 05:32:02 -04:00
|
|
|
APPLICATION_SERVICE = "m.login.application_service"
|
|
|
|
SHARED_SECRET = "org.matrix.login.shared_secret"
|
2014-12-03 11:07:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
class EventTypes(object):
|
|
|
|
Member = "m.room.member"
|
|
|
|
Create = "m.room.create"
|
2018-08-22 05:57:54 -04:00
|
|
|
Tombstone = "m.room.tombstone"
|
2014-12-03 11:07:21 -05:00
|
|
|
JoinRules = "m.room.join_rules"
|
|
|
|
PowerLevels = "m.room.power_levels"
|
|
|
|
Aliases = "m.room.aliases"
|
2014-12-09 09:49:11 -05:00
|
|
|
Redaction = "m.room.redaction"
|
2015-10-01 12:49:52 -04:00
|
|
|
ThirdPartyInvite = "m.room.third_party_invite"
|
2019-01-21 04:42:59 -05:00
|
|
|
Encryption = "m.room.encryption"
|
2019-04-02 12:15:24 -04:00
|
|
|
RelatedGroups = "m.room.related_groups"
|
2014-12-12 05:56:14 -05:00
|
|
|
|
2015-07-02 11:20:10 -04:00
|
|
|
RoomHistoryVisibility = "m.room.history_visibility"
|
2015-08-19 07:03:09 -04:00
|
|
|
CanonicalAlias = "m.room.canonical_alias"
|
2019-05-21 12:36:50 -04:00
|
|
|
Encryption = "m.room.encryption"
|
2015-08-20 09:35:40 -04:00
|
|
|
RoomAvatar = "m.room.avatar"
|
2019-01-30 11:26:13 -05:00
|
|
|
RoomEncryption = "m.room.encryption"
|
2015-11-10 11:57:13 -05:00
|
|
|
GuestAccess = "m.room.guest_access"
|
2015-07-02 11:20:10 -04:00
|
|
|
|
2014-12-12 05:56:14 -05:00
|
|
|
# These are used for validation
|
|
|
|
Message = "m.room.message"
|
|
|
|
Topic = "m.room.topic"
|
|
|
|
Name = "m.room.name"
|
2015-01-28 11:16:53 -05:00
|
|
|
|
2018-07-04 10:31:00 -04:00
|
|
|
ServerACL = "m.room.server_acl"
|
2018-08-15 10:04:30 -04:00
|
|
|
Pinned = "m.room.pinned_events"
|
2018-07-04 10:31:00 -04:00
|
|
|
|
2015-01-28 11:16:53 -05:00
|
|
|
|
|
|
|
class RejectedReason(object):
|
|
|
|
AUTH_ERROR = "auth_error"
|
|
|
|
REPLACED = "replaced"
|
|
|
|
NOT_ANCESTOR = "not_ancestor"
|
2015-07-13 11:48:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
class RoomCreationPreset(object):
|
2015-07-14 05:20:31 -04:00
|
|
|
PRIVATE_CHAT = "private_chat"
|
|
|
|
PUBLIC_CHAT = "public_chat"
|
2015-10-02 06:22:56 -04:00
|
|
|
TRUSTED_PRIVATE_CHAT = "trusted_private_chat"
|
2016-08-25 13:34:47 -04:00
|
|
|
|
|
|
|
|
|
|
|
class ThirdPartyEntityKind(object):
|
|
|
|
USER = "user"
|
|
|
|
LOCATION = "location"
|
2018-07-25 17:10:39 -04:00
|
|
|
|
|
|
|
|
2018-08-22 12:00:29 -04:00
|
|
|
ServerNoticeMsgType = "m.server_notice"
|
|
|
|
ServerNoticeLimitReached = "m.server_notice.usage_limit_reached"
|
2018-12-14 13:20:59 -05:00
|
|
|
|
|
|
|
|
|
|
|
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 05:32:02 -04:00
|
|
|
|
2018-12-14 13:20:59 -05:00
|
|
|
SUPPORT = "support"
|
2019-08-23 04:52:09 -04:00
|
|
|
BOT = "bot"
|
|
|
|
ALL_USER_TYPES = (SUPPORT, BOT)
|
2019-05-14 11:59:21 -04:00
|
|
|
|
|
|
|
|
|
|
|
class RelationTypes(object):
|
|
|
|
"""The types of relations known to this server.
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2019-05-14 11:59:21 -04:00
|
|
|
ANNOTATION = "m.annotation"
|
2019-05-20 09:31:19 -04:00
|
|
|
REPLACE = "m.replace"
|
|
|
|
REFERENCE = "m.reference"
|