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
|
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"
|
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"
|
|
|
|
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"
|
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"
|
|
|
|
|
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"
|