2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2018-02-23 06:14:35 -05: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
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
2015-01-06 09:37:00 -05:00
|
|
|
from collections import namedtuple
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2015-01-06 09:37:00 -05:00
|
|
|
RoomsForUser = namedtuple(
|
2019-03-28 09:37:16 -04:00
|
|
|
"RoomsForUser", ("room_id", "sender", "membership", "event_id", "stream_ordering")
|
2015-01-06 09:37:00 -05:00
|
|
|
)
|
|
|
|
|
2018-03-05 07:06:19 -05:00
|
|
|
GetRoomsForUserWithStreamOrdering = namedtuple(
|
2021-03-03 07:19:19 -05:00
|
|
|
"GetRoomsForUserWithStreamOrdering", ("room_id", "event_pos")
|
2018-03-05 07:06:19 -05:00
|
|
|
)
|
|
|
|
|
2015-01-06 09:37:00 -05:00
|
|
|
|
2017-04-25 10:18:26 -04:00
|
|
|
# We store this using a namedtuple so that we save about 3x space over using a
|
|
|
|
# dict.
|
2019-03-28 09:37:16 -04:00
|
|
|
ProfileInfo = namedtuple("ProfileInfo", ("avatar_url", "display_name"))
|
2017-04-25 09:38:51 -04:00
|
|
|
|
2018-09-11 19:50:39 -04:00
|
|
|
# "members" points to a truncated list of (user_id, event_id) tuples for users of
|
|
|
|
# a given membership type, suitable for use in calculating heroes for a room.
|
|
|
|
# "count" points to the total numberr of users of a given membership type.
|
2019-03-28 09:37:16 -04:00
|
|
|
MemberSummary = namedtuple("MemberSummary", ("members", "count"))
|