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
|
2018-07-25 17:10:39 -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
|
|
|
|
MAX_DEPTH = 2**63 - 1
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
class Membership(object):
|
|
|
|
|
|
|
|
"""Represents the membership states of a user in a room."""
|
|
|
|
INVITE = u"invite"
|
|
|
|
JOIN = u"join"
|
|
|
|
KNOCK = u"knock"
|
|
|
|
LEAVE = u"leave"
|
2014-09-01 11:15:34 -04:00
|
|
|
BAN = u"ban"
|
|
|
|
LIST = (INVITE, JOIN, KNOCK, LEAVE, BAN)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
class PresenceState(object):
|
|
|
|
"""Represents the presence state of a user."""
|
2014-08-13 09:31:48 -04:00
|
|
|
OFFLINE = u"offline"
|
|
|
|
UNAVAILABLE = u"unavailable"
|
|
|
|
ONLINE = u"online"
|
2014-08-28 05:59:15 -04:00
|
|
|
|
|
|
|
|
|
|
|
class JoinRules(object):
|
|
|
|
PUBLIC = u"public"
|
|
|
|
KNOCK = u"knock"
|
|
|
|
INVITE = u"invite"
|
|
|
|
PRIVATE = u"private"
|
2014-09-15 05:23:20 -04:00
|
|
|
|
|
|
|
|
|
|
|
class LoginType(object):
|
|
|
|
PASSWORD = u"m.login.password"
|
|
|
|
EMAIL_IDENTITY = u"m.login.email.identity"
|
2017-03-13 13:27:51 -04:00
|
|
|
MSISDN = u"m.login.msisdn"
|
2014-10-30 07:10:17 -04:00
|
|
|
RECAPTCHA = u"m.login.recaptcha"
|
2018-09-27 16:53:58 -04:00
|
|
|
TERMS = u"m.login.terms"
|
2015-04-15 12:14:25 -04:00
|
|
|
DUMMY = u"m.login.dummy"
|
2015-04-02 12:01:29 -04:00
|
|
|
|
|
|
|
# Only for C/S API v1
|
2015-04-02 12:51:19 -04:00
|
|
|
APPLICATION_SERVICE = u"m.login.application_service"
|
2015-03-13 11:23:37 -04:00
|
|
|
SHARED_SECRET = u"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"
|
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"
|
2015-08-20 09:35:40 -04:00
|
|
|
RoomAvatar = "m.room.avatar"
|
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-07 10:27:19 -04:00
|
|
|
class RoomVersions(object):
|
|
|
|
V1 = "1"
|
2018-12-18 13:10:37 -05:00
|
|
|
V2 = "2"
|
2019-01-25 06:04:11 -05:00
|
|
|
V3 = "3"
|
2018-08-07 10:27:19 -04:00
|
|
|
VDH_TEST = "vdh-test-version"
|
2018-11-01 07:43:46 -04:00
|
|
|
STATE_V2_TEST = "state-v2-test"
|
2018-08-07 10:27:19 -04:00
|
|
|
|
|
|
|
|
2018-08-07 07:51:57 -04:00
|
|
|
# the version we will give rooms which are created on this server
|
2018-08-07 10:27:19 -04:00
|
|
|
DEFAULT_ROOM_VERSION = RoomVersions.V1
|
2018-08-07 07:51:57 -04:00
|
|
|
|
2018-07-25 17:10:39 -04:00
|
|
|
# vdh-test-version is a placeholder to get room versioning support working and tested
|
|
|
|
# until we have a working v2.
|
2018-11-01 07:43:46 -04:00
|
|
|
KNOWN_ROOM_VERSIONS = {
|
|
|
|
RoomVersions.V1,
|
2018-12-18 13:10:37 -05:00
|
|
|
RoomVersions.V2,
|
2018-11-01 07:43:46 -04:00
|
|
|
RoomVersions.VDH_TEST,
|
|
|
|
RoomVersions.STATE_V2_TEST,
|
|
|
|
}
|
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
|
|
|
|
"""
|
|
|
|
SUPPORT = "support"
|
2019-01-15 09:38:15 -05:00
|
|
|
ALL_USER_TYPES = (SUPPORT,)
|