2014-08-12 16:10:52 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-07 05:26:29 +01:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2017-03-13 18:27:51 +01:00
|
|
|
# Copyright 2017 Vector Creations Ltd
|
2018-07-25 23:10:39 +02:00
|
|
|
# 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-13 04:14:34 +02:00
|
|
|
|
2014-08-12 16:10:52 +02:00
|
|
|
"""Contains constants from the specification."""
|
|
|
|
|
2018-05-01 17:19:39 +02:00
|
|
|
# the "depth" field on events is limited to 2**63 - 1
|
|
|
|
MAX_DEPTH = 2**63 - 1
|
|
|
|
|
2014-08-12 16:10:52 +02: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 17:15:34 +02:00
|
|
|
BAN = u"ban"
|
|
|
|
LIST = (INVITE, JOIN, KNOCK, LEAVE, BAN)
|
2014-08-12 16:10:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
class PresenceState(object):
|
|
|
|
"""Represents the presence state of a user."""
|
2014-08-13 15:31:48 +02:00
|
|
|
OFFLINE = u"offline"
|
|
|
|
UNAVAILABLE = u"unavailable"
|
|
|
|
ONLINE = u"online"
|
2014-08-28 11:59:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
class JoinRules(object):
|
|
|
|
PUBLIC = u"public"
|
|
|
|
KNOCK = u"knock"
|
|
|
|
INVITE = u"invite"
|
|
|
|
PRIVATE = u"private"
|
2014-09-15 11:23:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
class LoginType(object):
|
|
|
|
PASSWORD = u"m.login.password"
|
|
|
|
EMAIL_IDENTITY = u"m.login.email.identity"
|
2017-03-13 18:27:51 +01:00
|
|
|
MSISDN = u"m.login.msisdn"
|
2014-10-30 12:10:17 +01:00
|
|
|
RECAPTCHA = u"m.login.recaptcha"
|
2015-04-15 18:14:25 +02:00
|
|
|
DUMMY = u"m.login.dummy"
|
2015-04-02 18:01:29 +02:00
|
|
|
|
|
|
|
# Only for C/S API v1
|
2015-04-02 18:51:19 +02:00
|
|
|
APPLICATION_SERVICE = u"m.login.application_service"
|
2015-03-13 16:23:37 +01:00
|
|
|
SHARED_SECRET = u"org.matrix.login.shared_secret"
|
2014-12-03 17:07:21 +01:00
|
|
|
|
|
|
|
|
|
|
|
class EventTypes(object):
|
|
|
|
Member = "m.room.member"
|
|
|
|
Create = "m.room.create"
|
|
|
|
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"
|
2015-10-01 18:49:52 +02:00
|
|
|
ThirdPartyInvite = "m.room.third_party_invite"
|
2014-12-12 11:56:14 +01:00
|
|
|
|
2015-07-02 17:20:10 +02:00
|
|
|
RoomHistoryVisibility = "m.room.history_visibility"
|
2015-08-19 13:03:09 +02:00
|
|
|
CanonicalAlias = "m.room.canonical_alias"
|
2015-08-20 15:35:40 +02:00
|
|
|
RoomAvatar = "m.room.avatar"
|
2015-11-10 17:57:13 +01:00
|
|
|
GuestAccess = "m.room.guest_access"
|
2015-07-02 17:20:10 +02:00
|
|
|
|
2014-12-12 11:56:14 +01:00
|
|
|
# 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
|
|
|
|
2018-07-04 16:31:00 +02:00
|
|
|
ServerACL = "m.room.server_acl"
|
2018-08-15 16:04:30 +02:00
|
|
|
Pinned = "m.room.pinned_events"
|
2018-07-04 16:31:00 +02:00
|
|
|
|
2018-08-14 12:20:41 +02:00
|
|
|
ServerNoticeLimitReached = "m.server_notice.usage_limit_reached"
|
|
|
|
|
2015-01-28 17:16:53 +01:00
|
|
|
|
|
|
|
class RejectedReason(object):
|
|
|
|
AUTH_ERROR = "auth_error"
|
|
|
|
REPLACED = "replaced"
|
|
|
|
NOT_ANCESTOR = "not_ancestor"
|
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"
|
2015-10-02 12:22:56 +02:00
|
|
|
TRUSTED_PRIVATE_CHAT = "trusted_private_chat"
|
2016-08-25 19:34:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
class ThirdPartyEntityKind(object):
|
|
|
|
USER = "user"
|
|
|
|
LOCATION = "location"
|
2018-07-25 23:10:39 +02:00
|
|
|
|
|
|
|
|
2018-08-07 13:51:57 +02:00
|
|
|
# the version we will give rooms which are created on this server
|
|
|
|
DEFAULT_ROOM_VERSION = "1"
|
|
|
|
|
2018-07-25 23:10:39 +02:00
|
|
|
# vdh-test-version is a placeholder to get room versioning support working and tested
|
|
|
|
# until we have a working v2.
|
|
|
|
KNOWN_ROOM_VERSIONS = {"1", "vdh-test-version"}
|