2017-07-10 10:44:15 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2017 Vector Creations Ltd
|
2018-03-28 09:03:37 -04:00
|
|
|
# Copyright 2018 New Vector Ltd
|
2019-10-10 08:03:44 -04:00
|
|
|
# Copyright 2019 Michael Telatynski <7t3chguy@gmail.com>
|
2017-07-10 10:44:15 -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.
|
|
|
|
|
2017-10-20 18:37:22 -04:00
|
|
|
import logging
|
2021-02-17 08:41:47 -05:00
|
|
|
from typing import TYPE_CHECKING, Optional
|
2017-07-10 10:44:15 -04:00
|
|
|
|
2019-10-10 08:03:44 -04:00
|
|
|
from synapse.api.errors import Codes, SynapseError
|
2021-02-17 08:41:47 -05:00
|
|
|
from synapse.handlers.groups_local import GroupsLocalHandler
|
2021-02-08 13:59:54 -05:00
|
|
|
from synapse.handlers.profile import MAX_AVATAR_URL_LEN, MAX_DISPLAYNAME_LEN
|
2021-02-17 08:41:47 -05:00
|
|
|
from synapse.types import GroupID, JsonDict, RoomID, UserID, get_domain_from_id
|
2019-04-03 11:00:44 -04:00
|
|
|
from synapse.util.async_helpers import concurrently_execute
|
2018-04-15 15:43:35 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
if TYPE_CHECKING:
|
2021-03-23 07:12:48 -04:00
|
|
|
from synapse.server import HomeServer
|
2021-02-17 08:41:47 -05:00
|
|
|
|
2017-07-10 10:44:15 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2019-10-10 08:03:44 -04:00
|
|
|
# TODO: Allow users to "knock" or simply join depending on rules
|
2017-07-10 10:44:15 -04:00
|
|
|
# TODO: Federation admin APIs
|
2019-10-10 08:03:44 -04:00
|
|
|
# TODO: is_privileged flag to users and is_public to users and rooms
|
2017-07-10 10:44:15 -04:00
|
|
|
# TODO: Audit log for admins (profile updates, membership changes, users who tried
|
|
|
|
# to join but were rejected, etc)
|
|
|
|
# TODO: Flairs
|
|
|
|
|
|
|
|
|
2021-02-08 13:59:54 -05:00
|
|
|
# Note that the maximum lengths are somewhat arbitrary.
|
|
|
|
MAX_SHORT_DESC_LEN = 1000
|
|
|
|
MAX_LONG_DESC_LEN = 10000
|
|
|
|
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class GroupsServerWorkerHandler:
|
2021-02-17 08:41:47 -05:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2017-07-10 10:44:15 -04:00
|
|
|
self.hs = hs
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.room_list_handler = hs.get_room_list_handler()
|
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.clock = hs.get_clock()
|
|
|
|
self.keyring = hs.get_keyring()
|
|
|
|
self.is_mine_id = hs.is_mine_id
|
2020-07-08 12:51:56 -04:00
|
|
|
self.signing_key = hs.signing_key
|
2017-07-10 10:44:15 -04:00
|
|
|
self.server_name = hs.hostname
|
|
|
|
self.attestations = hs.get_groups_attestation_signing()
|
|
|
|
self.transport_client = hs.get_federation_transport_client()
|
2017-08-25 11:23:58 -04:00
|
|
|
self.profile_handler = hs.get_profile_handler()
|
2017-07-10 10:44:15 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
async def check_group_is_ours(
|
2021-02-17 08:41:47 -05:00
|
|
|
self,
|
|
|
|
group_id: str,
|
|
|
|
requester_user_id: str,
|
|
|
|
and_exists: bool = False,
|
|
|
|
and_is_admin: Optional[str] = None,
|
|
|
|
) -> Optional[dict]:
|
2017-07-11 04:58:59 -04:00
|
|
|
"""Check that the group is ours, and optionally if it exists.
|
|
|
|
|
|
|
|
If group does exist then return group.
|
2017-07-12 09:11:59 -04:00
|
|
|
|
|
|
|
Args:
|
2021-02-17 08:41:47 -05:00
|
|
|
group_id: The group ID to check.
|
|
|
|
requester_user_id: The user ID of the requester.
|
|
|
|
and_exists: whether to also check if group exists
|
|
|
|
and_is_admin: whether to also check if given str is a user_id
|
2017-07-12 09:11:59 -04:00
|
|
|
that is an admin
|
2017-07-11 04:58:59 -04:00
|
|
|
"""
|
|
|
|
if not self.is_mine_id(group_id):
|
|
|
|
raise SynapseError(400, "Group not on this server")
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
group = await self.store.get_group(group_id)
|
2017-07-11 04:58:59 -04:00
|
|
|
if and_exists and not group:
|
|
|
|
raise SynapseError(404, "Unknown group")
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
is_user_in_group = await self.store.is_user_in_group(
|
2017-10-26 11:51:32 -04:00
|
|
|
requester_user_id, group_id
|
|
|
|
)
|
2017-10-27 06:08:19 -04:00
|
|
|
if group and not is_user_in_group and not group["is_public"]:
|
2017-10-26 11:51:32 -04:00
|
|
|
raise SynapseError(404, "Unknown group")
|
|
|
|
|
2017-07-12 06:43:39 -04:00
|
|
|
if and_is_admin:
|
2020-06-01 07:28:43 -04:00
|
|
|
is_admin = await self.store.is_user_admin_in_group(group_id, and_is_admin)
|
2017-07-12 06:43:39 -04:00
|
|
|
if not is_admin:
|
|
|
|
raise SynapseError(403, "User is not admin in group")
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return group
|
2017-07-11 04:58:59 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def get_group_summary(
|
|
|
|
self, group_id: str, requester_user_id: str
|
|
|
|
) -> JsonDict:
|
2017-07-12 09:11:59 -04:00
|
|
|
"""Get the summary for a group as seen by requester_user_id.
|
|
|
|
|
|
|
|
The group summary consists of the profile of the room, and a curated
|
|
|
|
list of users and rooms. These list *may* be organised by role/category.
|
|
|
|
The roles/categories are ordered, and so are the users/rooms within them.
|
|
|
|
|
|
|
|
A user/room may appear in multiple roles/categories.
|
|
|
|
"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(group_id, requester_user_id, and_exists=True)
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
is_user_in_group = await self.store.is_user_in_group(
|
2017-07-10 10:44:40 -04:00
|
|
|
requester_user_id, group_id
|
|
|
|
)
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
profile = await self.get_group_profile(group_id, requester_user_id)
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
users, roles = await self.store.get_users_for_summary_by_role(
|
2017-07-10 10:44:40 -04:00
|
|
|
group_id, include_private=is_user_in_group
|
|
|
|
)
|
|
|
|
|
|
|
|
# TODO: Add profiles to users
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
rooms, categories = await self.store.get_rooms_for_summary_by_category(
|
2017-07-10 10:44:40 -04:00
|
|
|
group_id, include_private=is_user_in_group
|
|
|
|
)
|
|
|
|
|
|
|
|
for room_entry in rooms:
|
|
|
|
room_id = room_entry["room_id"]
|
2020-06-01 07:28:43 -04:00
|
|
|
joined_users = await self.store.get_users_in_room(room_id)
|
|
|
|
entry = await self.room_list_handler.generate_room_entry(
|
2019-02-22 07:11:43 -05:00
|
|
|
room_id, len(joined_users), with_alias=False, allow_private=True
|
2017-07-10 10:44:40 -04:00
|
|
|
)
|
2021-02-17 08:41:47 -05:00
|
|
|
if entry is None:
|
|
|
|
continue
|
2020-10-23 12:38:40 -04:00
|
|
|
entry = dict(entry) # so we don't change what's cached
|
2017-09-21 10:57:22 -04:00
|
|
|
entry.pop("room_id", None)
|
2017-07-10 10:44:40 -04:00
|
|
|
|
|
|
|
room_entry["profile"] = entry
|
|
|
|
|
|
|
|
rooms.sort(key=lambda e: e.get("order", 0))
|
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
for user in users:
|
|
|
|
user_id = user["user_id"]
|
2017-07-10 10:44:40 -04:00
|
|
|
|
|
|
|
if not self.is_mine_id(requester_user_id):
|
2020-06-01 07:28:43 -04:00
|
|
|
attestation = await self.store.get_remote_attestation(group_id, user_id)
|
2017-07-10 10:44:40 -04:00
|
|
|
if not attestation:
|
|
|
|
continue
|
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
user["attestation"] = attestation
|
2017-07-10 10:44:40 -04:00
|
|
|
else:
|
2021-02-17 08:41:47 -05:00
|
|
|
user["attestation"] = self.attestations.create_attestation(
|
2017-07-10 10:44:40 -04:00
|
|
|
group_id, user_id
|
|
|
|
)
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
user_profile = await self.profile_handler.get_profile_from_cache(user_id)
|
2021-02-17 08:41:47 -05:00
|
|
|
user.update(user_profile)
|
2017-08-25 11:23:58 -04:00
|
|
|
|
2017-07-10 10:44:40 -04:00
|
|
|
users.sort(key=lambda e: e.get("order", 0))
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
membership_info = await self.store.get_users_membership_info_in_group(
|
2017-07-24 08:55:39 -04:00
|
|
|
group_id, requester_user_id
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {
|
|
|
|
"profile": profile,
|
|
|
|
"users_section": {
|
|
|
|
"users": users,
|
|
|
|
"roles": roles,
|
|
|
|
"total_user_count_estimate": 0, # TODO
|
|
|
|
},
|
|
|
|
"rooms_section": {
|
|
|
|
"rooms": rooms,
|
|
|
|
"categories": categories,
|
|
|
|
"total_room_count_estimate": 0, # TODO
|
|
|
|
},
|
|
|
|
"user": membership_info,
|
|
|
|
}
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def get_group_categories(
|
|
|
|
self, group_id: str, requester_user_id: str
|
|
|
|
) -> JsonDict:
|
2020-02-07 06:14:19 -05:00
|
|
|
"""Get all categories in a group (as seen by user)"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(group_id, requester_user_id, and_exists=True)
|
2020-02-07 06:14:19 -05:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
categories = await self.store.get_group_categories(group_id=group_id)
|
2020-02-07 06:14:19 -05:00
|
|
|
return {"categories": categories}
|
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def get_group_category(
|
|
|
|
self, group_id: str, requester_user_id: str, category_id: str
|
|
|
|
) -> JsonDict:
|
2020-02-07 06:14:19 -05:00
|
|
|
"""Get a specific category in a group (as seen by user)"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(group_id, requester_user_id, and_exists=True)
|
2020-02-07 06:14:19 -05:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
return await self.store.get_group_category(
|
2020-02-07 06:14:19 -05:00
|
|
|
group_id=group_id, category_id=category_id
|
|
|
|
)
|
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def get_group_roles(self, group_id: str, requester_user_id: str) -> JsonDict:
|
2020-02-07 06:14:19 -05:00
|
|
|
"""Get all roles in a group (as seen by user)"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(group_id, requester_user_id, and_exists=True)
|
2020-02-07 06:14:19 -05:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
roles = await self.store.get_group_roles(group_id=group_id)
|
2020-02-07 06:14:19 -05:00
|
|
|
return {"roles": roles}
|
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def get_group_role(
|
|
|
|
self, group_id: str, requester_user_id: str, role_id: str
|
|
|
|
) -> JsonDict:
|
2020-02-07 06:14:19 -05:00
|
|
|
"""Get a specific role in a group (as seen by user)"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(group_id, requester_user_id, and_exists=True)
|
2020-02-07 06:14:19 -05:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
return await self.store.get_group_role(group_id=group_id, role_id=role_id)
|
2020-02-07 06:14:19 -05:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def get_group_profile(
|
|
|
|
self, group_id: str, requester_user_id: str
|
|
|
|
) -> JsonDict:
|
2020-02-07 06:14:19 -05:00
|
|
|
"""Get the group profile as seen by requester_user_id"""
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(group_id, requester_user_id)
|
2020-02-07 06:14:19 -05:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
group = await self.store.get_group(group_id)
|
2020-02-07 06:14:19 -05:00
|
|
|
|
|
|
|
if group:
|
|
|
|
cols = [
|
|
|
|
"name",
|
|
|
|
"short_description",
|
|
|
|
"long_description",
|
|
|
|
"avatar_url",
|
|
|
|
"is_public",
|
|
|
|
]
|
|
|
|
group_description = {key: group[key] for key in cols}
|
|
|
|
group_description["is_openly_joinable"] = group["join_policy"] == "open"
|
|
|
|
|
|
|
|
return group_description
|
|
|
|
else:
|
|
|
|
raise SynapseError(404, "Unknown group")
|
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def get_users_in_group(
|
|
|
|
self, group_id: str, requester_user_id: str
|
|
|
|
) -> JsonDict:
|
2020-02-07 06:14:19 -05:00
|
|
|
"""Get the users in group as seen by requester_user_id.
|
|
|
|
|
|
|
|
The ordering is arbitrary at the moment
|
|
|
|
"""
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(group_id, requester_user_id, and_exists=True)
|
2020-02-07 06:14:19 -05:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
is_user_in_group = await self.store.is_user_in_group(
|
2020-02-07 06:14:19 -05:00
|
|
|
requester_user_id, group_id
|
|
|
|
)
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
user_results = await self.store.get_users_in_group(
|
2020-02-07 06:14:19 -05:00
|
|
|
group_id, include_private=is_user_in_group
|
|
|
|
)
|
|
|
|
|
|
|
|
chunk = []
|
|
|
|
for user_result in user_results:
|
|
|
|
g_user_id = user_result["user_id"]
|
|
|
|
is_public = user_result["is_public"]
|
|
|
|
is_privileged = user_result["is_admin"]
|
|
|
|
|
|
|
|
entry = {"user_id": g_user_id}
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
profile = await self.profile_handler.get_profile_from_cache(g_user_id)
|
2020-02-07 06:14:19 -05:00
|
|
|
entry.update(profile)
|
|
|
|
|
|
|
|
entry["is_public"] = bool(is_public)
|
|
|
|
entry["is_privileged"] = bool(is_privileged)
|
|
|
|
|
|
|
|
if not self.is_mine_id(g_user_id):
|
2020-06-01 07:28:43 -04:00
|
|
|
attestation = await self.store.get_remote_attestation(
|
2020-02-07 06:14:19 -05:00
|
|
|
group_id, g_user_id
|
|
|
|
)
|
|
|
|
if not attestation:
|
|
|
|
continue
|
|
|
|
|
|
|
|
entry["attestation"] = attestation
|
|
|
|
else:
|
|
|
|
entry["attestation"] = self.attestations.create_attestation(
|
|
|
|
group_id, g_user_id
|
|
|
|
)
|
|
|
|
|
|
|
|
chunk.append(entry)
|
|
|
|
|
|
|
|
# TODO: If admin add lists of users whose attestations have timed out
|
|
|
|
|
|
|
|
return {"chunk": chunk, "total_user_count_estimate": len(user_results)}
|
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def get_invited_users_in_group(
|
|
|
|
self, group_id: str, requester_user_id: str
|
|
|
|
) -> JsonDict:
|
2020-02-07 06:14:19 -05:00
|
|
|
"""Get the users that have been invited to a group as seen by requester_user_id.
|
|
|
|
|
|
|
|
The ordering is arbitrary at the moment
|
|
|
|
"""
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(group_id, requester_user_id, and_exists=True)
|
2020-02-07 06:14:19 -05:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
is_user_in_group = await self.store.is_user_in_group(
|
2020-02-07 06:14:19 -05:00
|
|
|
requester_user_id, group_id
|
|
|
|
)
|
|
|
|
|
|
|
|
if not is_user_in_group:
|
|
|
|
raise SynapseError(403, "User not in group")
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
invited_users = await self.store.get_invited_users_in_group(group_id)
|
2020-02-07 06:14:19 -05:00
|
|
|
|
|
|
|
user_profiles = []
|
|
|
|
|
|
|
|
for user_id in invited_users:
|
|
|
|
user_profile = {"user_id": user_id}
|
|
|
|
try:
|
2020-06-01 07:28:43 -04:00
|
|
|
profile = await self.profile_handler.get_profile_from_cache(user_id)
|
2020-02-07 06:14:19 -05:00
|
|
|
user_profile.update(profile)
|
|
|
|
except Exception as e:
|
|
|
|
logger.warning("Error getting profile for %s: %s", user_id, e)
|
|
|
|
user_profiles.append(user_profile)
|
|
|
|
|
|
|
|
return {"chunk": user_profiles, "total_user_count_estimate": len(invited_users)}
|
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def get_rooms_in_group(
|
|
|
|
self, group_id: str, requester_user_id: str
|
|
|
|
) -> JsonDict:
|
2020-02-07 06:14:19 -05:00
|
|
|
"""Get the rooms in group as seen by requester_user_id
|
|
|
|
|
|
|
|
This returns rooms in order of decreasing number of joined users
|
|
|
|
"""
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(group_id, requester_user_id, and_exists=True)
|
2020-02-07 06:14:19 -05:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
is_user_in_group = await self.store.is_user_in_group(
|
2020-02-07 06:14:19 -05:00
|
|
|
requester_user_id, group_id
|
|
|
|
)
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
room_results = await self.store.get_rooms_in_group(
|
2020-02-07 06:14:19 -05:00
|
|
|
group_id, include_private=is_user_in_group
|
|
|
|
)
|
|
|
|
|
|
|
|
chunk = []
|
|
|
|
for room_result in room_results:
|
|
|
|
room_id = room_result["room_id"]
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
joined_users = await self.store.get_users_in_room(room_id)
|
|
|
|
entry = await self.room_list_handler.generate_room_entry(
|
2020-02-07 06:14:19 -05:00
|
|
|
room_id, len(joined_users), with_alias=False, allow_private=True
|
|
|
|
)
|
|
|
|
|
|
|
|
if not entry:
|
|
|
|
continue
|
|
|
|
|
|
|
|
entry["is_public"] = bool(room_result["is_public"])
|
|
|
|
|
|
|
|
chunk.append(entry)
|
|
|
|
|
|
|
|
chunk.sort(key=lambda e: -e["num_joined_members"])
|
|
|
|
|
|
|
|
return {"chunk": chunk, "total_room_count_estimate": len(room_results)}
|
|
|
|
|
|
|
|
|
|
|
|
class GroupsServerHandler(GroupsServerWorkerHandler):
|
2021-02-17 08:41:47 -05:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(hs)
|
2020-02-07 06:14:19 -05:00
|
|
|
|
|
|
|
# Ensure attestations get renewed
|
|
|
|
hs.get_groups_attestation_renewer()
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
async def update_group_summary_room(
|
2021-02-17 08:41:47 -05:00
|
|
|
self,
|
|
|
|
group_id: str,
|
|
|
|
requester_user_id: str,
|
|
|
|
room_id: str,
|
|
|
|
category_id: str,
|
|
|
|
content: JsonDict,
|
|
|
|
) -> JsonDict:
|
2017-07-12 09:11:59 -04:00
|
|
|
"""Add/update a room to the group summary"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(
|
2017-10-26 12:20:24 -04:00
|
|
|
group_id, requester_user_id, and_exists=True, and_is_admin=requester_user_id
|
|
|
|
)
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2017-10-11 08:15:44 -04:00
|
|
|
RoomID.from_string(room_id) # Ensure valid room id
|
|
|
|
|
2017-07-10 10:44:40 -04:00
|
|
|
order = content.get("order", None)
|
|
|
|
|
|
|
|
is_public = _parse_visibility_from_contents(content)
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.add_room_to_summary(
|
2017-07-10 10:44:40 -04:00
|
|
|
group_id=group_id,
|
|
|
|
room_id=room_id,
|
|
|
|
category_id=category_id,
|
|
|
|
order=order,
|
|
|
|
is_public=is_public,
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {}
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
async def delete_group_summary_room(
|
2021-02-17 08:41:47 -05:00
|
|
|
self, group_id: str, requester_user_id: str, room_id: str, category_id: str
|
|
|
|
) -> JsonDict:
|
2017-07-12 09:11:59 -04:00
|
|
|
"""Remove a room from the summary"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(
|
2017-10-26 12:20:24 -04:00
|
|
|
group_id, requester_user_id, and_exists=True, and_is_admin=requester_user_id
|
|
|
|
)
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.remove_room_from_summary(
|
2017-07-10 10:44:40 -04:00
|
|
|
group_id=group_id, room_id=room_id, category_id=category_id
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {}
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def set_group_join_policy(
|
|
|
|
self, group_id: str, requester_user_id: str, content: JsonDict
|
|
|
|
) -> JsonDict:
|
2018-04-03 10:40:43 -04:00
|
|
|
"""Sets the group join policy.
|
|
|
|
|
|
|
|
Currently supported policies are:
|
|
|
|
- "invite": an invite must be received and accepted in order to join.
|
|
|
|
- "open": anyone can join.
|
2018-03-28 09:03:37 -04:00
|
|
|
"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(
|
2018-03-28 09:03:37 -04:00
|
|
|
group_id, requester_user_id, and_exists=True, and_is_admin=requester_user_id
|
|
|
|
)
|
|
|
|
|
2018-04-03 10:40:43 -04:00
|
|
|
join_policy = _parse_join_policy_from_contents(content)
|
|
|
|
if join_policy is None:
|
|
|
|
raise SynapseError(400, "No value specified for 'm.join_policy'")
|
2018-03-28 09:03:37 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.set_group_join_policy(group_id, join_policy=join_policy)
|
2018-03-28 09:03:37 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {}
|
2018-03-28 09:03:37 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
async def update_group_category(
|
2021-02-17 08:41:47 -05:00
|
|
|
self, group_id: str, requester_user_id: str, category_id: str, content: JsonDict
|
|
|
|
) -> JsonDict:
|
2017-07-12 09:11:59 -04:00
|
|
|
"""Add/Update a group category"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(
|
2017-10-26 12:20:24 -04:00
|
|
|
group_id, requester_user_id, and_exists=True, and_is_admin=requester_user_id
|
|
|
|
)
|
2017-07-10 10:44:40 -04:00
|
|
|
|
|
|
|
is_public = _parse_visibility_from_contents(content)
|
|
|
|
profile = content.get("profile")
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.upsert_group_category(
|
2017-07-10 10:44:40 -04:00
|
|
|
group_id=group_id,
|
|
|
|
category_id=category_id,
|
|
|
|
is_public=is_public,
|
|
|
|
profile=profile,
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {}
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def delete_group_category(
|
|
|
|
self, group_id: str, requester_user_id: str, category_id: str
|
|
|
|
) -> JsonDict:
|
2017-07-12 09:11:59 -04:00
|
|
|
"""Delete a group category"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(
|
2017-10-26 12:20:24 -04:00
|
|
|
group_id, requester_user_id, and_exists=True, and_is_admin=requester_user_id
|
|
|
|
)
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.remove_group_category(
|
2017-07-10 10:44:40 -04:00
|
|
|
group_id=group_id, category_id=category_id
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {}
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def update_group_role(
|
|
|
|
self, group_id: str, requester_user_id: str, role_id: str, content: JsonDict
|
|
|
|
) -> JsonDict:
|
2017-07-12 09:11:59 -04:00
|
|
|
"""Add/update a role in a group"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(
|
2017-10-26 12:20:24 -04:00
|
|
|
group_id, requester_user_id, and_exists=True, and_is_admin=requester_user_id
|
|
|
|
)
|
2017-07-10 10:44:40 -04:00
|
|
|
|
|
|
|
is_public = _parse_visibility_from_contents(content)
|
|
|
|
|
|
|
|
profile = content.get("profile")
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.upsert_group_role(
|
2017-07-10 10:44:40 -04:00
|
|
|
group_id=group_id, role_id=role_id, is_public=is_public, profile=profile
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {}
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def delete_group_role(
|
|
|
|
self, group_id: str, requester_user_id: str, role_id: str
|
|
|
|
) -> JsonDict:
|
2017-07-12 09:11:59 -04:00
|
|
|
"""Remove role from group"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(
|
2017-10-26 12:20:24 -04:00
|
|
|
group_id, requester_user_id, and_exists=True, and_is_admin=requester_user_id
|
|
|
|
)
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.remove_group_role(group_id=group_id, role_id=role_id)
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {}
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
async def update_group_summary_user(
|
2021-02-17 08:41:47 -05:00
|
|
|
self,
|
|
|
|
group_id: str,
|
|
|
|
requester_user_id: str,
|
|
|
|
user_id: str,
|
|
|
|
role_id: str,
|
|
|
|
content: JsonDict,
|
|
|
|
) -> JsonDict:
|
2017-07-12 09:11:59 -04:00
|
|
|
"""Add/update a users entry in the group summary"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(
|
2017-10-26 11:51:32 -04:00
|
|
|
group_id, requester_user_id, and_exists=True, and_is_admin=requester_user_id
|
2017-07-18 11:51:25 -04:00
|
|
|
)
|
2017-07-10 10:44:40 -04:00
|
|
|
|
|
|
|
order = content.get("order", None)
|
|
|
|
|
|
|
|
is_public = _parse_visibility_from_contents(content)
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.add_user_to_summary(
|
2017-07-10 10:44:40 -04:00
|
|
|
group_id=group_id,
|
|
|
|
user_id=user_id,
|
|
|
|
role_id=role_id,
|
|
|
|
order=order,
|
|
|
|
is_public=is_public,
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {}
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
async def delete_group_summary_user(
|
2021-02-17 08:41:47 -05:00
|
|
|
self, group_id: str, requester_user_id: str, user_id: str, role_id: str
|
|
|
|
) -> JsonDict:
|
2017-07-12 09:11:59 -04:00
|
|
|
"""Remove a user from the group summary"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(
|
2017-10-26 11:51:32 -04:00
|
|
|
group_id, requester_user_id, and_exists=True, and_is_admin=requester_user_id
|
2017-07-18 11:51:25 -04:00
|
|
|
)
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.remove_user_from_summary(
|
2017-07-10 10:44:40 -04:00
|
|
|
group_id=group_id, user_id=user_id, role_id=role_id
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {}
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def update_group_profile(
|
|
|
|
self, group_id: str, requester_user_id: str, content: JsonDict
|
|
|
|
) -> None:
|
2017-07-20 04:46:33 -04:00
|
|
|
"""Update the group profile"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(
|
2017-10-26 11:51:32 -04:00
|
|
|
group_id, requester_user_id, and_exists=True, and_is_admin=requester_user_id
|
2017-07-20 04:46:33 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
profile = {}
|
2021-02-08 13:59:54 -05:00
|
|
|
for keyname, max_length in (
|
|
|
|
("name", MAX_DISPLAYNAME_LEN),
|
|
|
|
("avatar_url", MAX_AVATAR_URL_LEN),
|
|
|
|
("short_description", MAX_SHORT_DESC_LEN),
|
|
|
|
("long_description", MAX_LONG_DESC_LEN),
|
|
|
|
):
|
2017-07-20 04:46:33 -04:00
|
|
|
if keyname in content:
|
2017-07-20 11:24:18 -04:00
|
|
|
value = content[keyname]
|
2020-06-16 08:51:47 -04:00
|
|
|
if not isinstance(value, str):
|
2021-02-08 13:59:54 -05:00
|
|
|
raise SynapseError(
|
|
|
|
400,
|
|
|
|
"%r value is not a string" % (keyname,),
|
|
|
|
errcode=Codes.INVALID_PARAM,
|
|
|
|
)
|
|
|
|
if len(value) > max_length:
|
|
|
|
raise SynapseError(
|
|
|
|
400,
|
|
|
|
"Invalid %s parameter" % (keyname,),
|
|
|
|
errcode=Codes.INVALID_PARAM,
|
|
|
|
)
|
2017-07-20 11:24:18 -04:00
|
|
|
profile[keyname] = value
|
2017-07-20 04:46:33 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.update_group_profile(group_id, profile)
|
2017-07-20 04:46:33 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def add_room_to_group(
|
|
|
|
self, group_id: str, requester_user_id: str, room_id: str, content: JsonDict
|
|
|
|
) -> JsonDict:
|
2017-11-08 10:43:34 -05:00
|
|
|
"""Add room to group"""
|
2017-10-11 08:15:44 -04:00
|
|
|
RoomID.from_string(room_id) # Ensure valid room id
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(
|
2017-10-26 11:51:32 -04:00
|
|
|
group_id, requester_user_id, and_exists=True, and_is_admin=requester_user_id
|
2017-07-12 06:43:39 -04:00
|
|
|
)
|
2017-07-10 10:44:15 -04:00
|
|
|
|
2017-07-11 06:44:08 -04:00
|
|
|
is_public = _parse_visibility_from_contents(content)
|
2017-07-10 10:44:15 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.add_room_to_group(group_id, room_id, is_public=is_public)
|
2017-07-10 10:44:15 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {}
|
2017-07-10 10:44:15 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
async def update_room_in_group(
|
2021-02-17 08:41:47 -05:00
|
|
|
self,
|
|
|
|
group_id: str,
|
|
|
|
requester_user_id: str,
|
|
|
|
room_id: str,
|
|
|
|
config_key: str,
|
|
|
|
content: JsonDict,
|
|
|
|
) -> JsonDict:
|
2017-11-08 11:13:27 -05:00
|
|
|
"""Update room in group"""
|
|
|
|
RoomID.from_string(room_id) # Ensure valid room id
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(
|
2017-11-08 11:13:27 -05:00
|
|
|
group_id, requester_user_id, and_exists=True, and_is_admin=requester_user_id
|
|
|
|
)
|
|
|
|
|
2017-11-09 10:27:18 -05:00
|
|
|
if config_key == "m.visibility":
|
|
|
|
is_public = _parse_visibility_dict(content)
|
2017-11-08 11:13:27 -05:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.update_room_in_group_visibility(
|
2017-11-08 11:13:27 -05:00
|
|
|
group_id, room_id, is_public=is_public
|
|
|
|
)
|
|
|
|
else:
|
2020-10-23 12:38:40 -04:00
|
|
|
raise SynapseError(400, "Unknown config option")
|
2017-11-08 11:13:27 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {}
|
2017-11-08 11:13:27 -05:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def remove_room_from_group(
|
|
|
|
self, group_id: str, requester_user_id: str, room_id: str
|
|
|
|
) -> JsonDict:
|
2017-09-26 10:52:41 -04:00
|
|
|
"""Remove room from group"""
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(
|
2017-10-26 11:51:32 -04:00
|
|
|
group_id, requester_user_id, and_exists=True, and_is_admin=requester_user_id
|
2017-09-26 10:52:41 -04:00
|
|
|
)
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.remove_room_from_group(group_id, room_id)
|
2017-09-26 10:52:41 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {}
|
2017-09-26 10:52:41 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def invite_to_group(
|
|
|
|
self, group_id: str, user_id: str, requester_user_id: str, content: JsonDict
|
|
|
|
) -> JsonDict:
|
2017-07-11 04:58:59 -04:00
|
|
|
"""Invite user to group"""
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
group = await self.check_group_is_ours(
|
2017-10-26 11:51:32 -04:00
|
|
|
group_id, requester_user_id, and_exists=True, and_is_admin=requester_user_id
|
2017-07-10 10:44:15 -04:00
|
|
|
)
|
2021-02-17 08:41:47 -05:00
|
|
|
if not group:
|
|
|
|
raise SynapseError(400, "Group does not exist", errcode=Codes.BAD_STATE)
|
2017-07-10 10:44:15 -04:00
|
|
|
|
|
|
|
# TODO: Check if user knocked
|
2019-10-10 08:03:44 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
invited_users = await self.store.get_invited_users_in_group(group_id)
|
2019-10-10 08:03:44 -04:00
|
|
|
if user_id in invited_users:
|
|
|
|
raise SynapseError(
|
|
|
|
400, "User already invited to group", errcode=Codes.BAD_STATE
|
|
|
|
)
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
user_results = await self.store.get_users_in_group(
|
2019-10-10 08:03:44 -04:00
|
|
|
group_id, include_private=True
|
|
|
|
)
|
2020-02-21 07:15:07 -05:00
|
|
|
if user_id in (user_result["user_id"] for user_result in user_results):
|
2019-10-10 08:03:44 -04:00
|
|
|
raise SynapseError(400, "User already in group")
|
2017-07-10 10:44:15 -04:00
|
|
|
|
|
|
|
content = {
|
|
|
|
"profile": {"name": group["name"], "avatar_url": group["avatar_url"]},
|
|
|
|
"inviter": requester_user_id,
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.hs.is_mine_id(user_id):
|
2017-07-10 09:52:27 -04:00
|
|
|
groups_local = self.hs.get_groups_local_handler()
|
2021-02-17 08:41:47 -05:00
|
|
|
assert isinstance(
|
|
|
|
groups_local, GroupsLocalHandler
|
|
|
|
), "Workers cannot invites users to groups."
|
2020-06-01 07:28:43 -04:00
|
|
|
res = await groups_local.on_invite(group_id, user_id, content)
|
2017-07-10 09:52:27 -04:00
|
|
|
local_attestation = None
|
2017-07-10 10:44:15 -04:00
|
|
|
else:
|
|
|
|
local_attestation = self.attestations.create_attestation(group_id, user_id)
|
|
|
|
content.update({"attestation": local_attestation})
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
res = await self.transport_client.invite_to_group_notification(
|
2017-07-10 10:44:15 -04:00
|
|
|
get_domain_from_id(user_id), group_id, user_id, content
|
|
|
|
)
|
|
|
|
|
2017-08-25 06:21:34 -04:00
|
|
|
user_profile = res.get("user_profile", {})
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.add_remote_profile_cache(
|
2017-08-25 06:21:34 -04:00
|
|
|
user_id,
|
|
|
|
displayname=user_profile.get("displayname"),
|
|
|
|
avatar_url=user_profile.get("avatar_url"),
|
|
|
|
)
|
|
|
|
|
2017-07-10 10:44:15 -04:00
|
|
|
if res["state"] == "join":
|
|
|
|
if not self.hs.is_mine_id(user_id):
|
|
|
|
remote_attestation = res["attestation"]
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.attestations.verify_attestation(
|
2017-07-10 10:44:15 -04:00
|
|
|
remote_attestation, user_id=user_id, group_id=group_id
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
remote_attestation = None
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.add_user_to_group(
|
2017-07-10 10:44:15 -04:00
|
|
|
group_id,
|
|
|
|
user_id,
|
|
|
|
is_admin=False,
|
|
|
|
is_public=False, # TODO
|
|
|
|
local_attestation=local_attestation,
|
|
|
|
remote_attestation=remote_attestation,
|
|
|
|
)
|
2021-02-17 08:41:47 -05:00
|
|
|
return {"state": "join"}
|
2017-07-10 10:44:15 -04:00
|
|
|
elif res["state"] == "invite":
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.add_group_invite(group_id, user_id)
|
2019-07-23 09:00:55 -04:00
|
|
|
return {"state": "invite"}
|
2017-07-10 10:44:15 -04:00
|
|
|
elif res["state"] == "reject":
|
2019-07-23 09:00:55 -04:00
|
|
|
return {"state": "reject"}
|
2017-07-10 10:44:15 -04:00
|
|
|
else:
|
|
|
|
raise SynapseError(502, "Unknown state returned by HS")
|
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def _add_user(
|
|
|
|
self, group_id: str, user_id: str, content: JsonDict
|
|
|
|
) -> Optional[JsonDict]:
|
2018-04-03 06:48:17 -04:00
|
|
|
"""Add a user to a group based on a content dict.
|
2017-07-11 04:58:59 -04:00
|
|
|
|
2018-04-03 06:48:17 -04:00
|
|
|
See accept_invite, join_group.
|
2017-07-11 04:58:59 -04:00
|
|
|
"""
|
2018-04-03 06:48:17 -04:00
|
|
|
if not self.hs.is_mine_id(user_id):
|
2021-02-17 08:41:47 -05:00
|
|
|
local_attestation = self.attestations.create_attestation(
|
|
|
|
group_id, user_id
|
|
|
|
) # type: Optional[JsonDict]
|
2018-04-03 06:48:17 -04:00
|
|
|
|
2017-07-10 10:44:15 -04:00
|
|
|
remote_attestation = content["attestation"]
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.attestations.verify_attestation(
|
2017-07-10 10:44:15 -04:00
|
|
|
remote_attestation, user_id=user_id, group_id=group_id
|
|
|
|
)
|
|
|
|
else:
|
2017-10-27 04:44:34 -04:00
|
|
|
local_attestation = None
|
2017-07-10 10:44:15 -04:00
|
|
|
remote_attestation = None
|
|
|
|
|
2017-07-11 06:44:08 -04:00
|
|
|
is_public = _parse_visibility_from_contents(content)
|
2017-07-10 10:44:15 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.store.add_user_to_group(
|
2018-04-03 06:48:17 -04:00
|
|
|
group_id,
|
|
|
|
user_id,
|
2017-07-10 10:44:15 -04:00
|
|
|
is_admin=False,
|
|
|
|
is_public=is_public,
|
|
|
|
local_attestation=local_attestation,
|
|
|
|
remote_attestation=remote_attestation,
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return local_attestation
|
2018-04-03 06:48:17 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def accept_invite(
|
|
|
|
self, group_id: str, requester_user_id: str, content: JsonDict
|
|
|
|
) -> JsonDict:
|
2018-04-03 06:48:17 -04:00
|
|
|
"""User tries to accept an invite to the group.
|
|
|
|
|
|
|
|
This is different from them asking to join, and so should error if no
|
|
|
|
invite exists (and they're not a member of the group)
|
|
|
|
"""
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
await self.check_group_is_ours(group_id, requester_user_id, and_exists=True)
|
2018-04-03 06:48:17 -04:00
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
is_invited = await self.store.is_user_invited_to_local_group(
|
2018-04-03 06:48:17 -04:00
|
|
|
group_id, requester_user_id
|
|
|
|
)
|
|
|
|
if not is_invited:
|
|
|
|
raise SynapseError(403, "User not invited to group")
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
local_attestation = await self._add_user(group_id, requester_user_id, content)
|
2018-04-03 06:48:17 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {"state": "join", "attestation": local_attestation}
|
2017-07-10 10:44:15 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def join_group(
|
|
|
|
self, group_id: str, requester_user_id: str, content: JsonDict
|
|
|
|
) -> JsonDict:
|
2018-03-28 12:18:02 -04:00
|
|
|
"""User tries to join the group.
|
|
|
|
|
|
|
|
This will error if the group requires an invite/knock to join
|
|
|
|
"""
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
group_info = await self.check_group_is_ours(
|
2018-04-05 12:32:20 -04:00
|
|
|
group_id, requester_user_id, and_exists=True
|
|
|
|
)
|
2021-02-17 08:41:47 -05:00
|
|
|
if not group_info:
|
|
|
|
raise SynapseError(404, "Group does not exist", errcode=Codes.NOT_FOUND)
|
2018-04-05 11:31:57 -04:00
|
|
|
if group_info["join_policy"] != "open":
|
2018-03-28 12:18:02 -04:00
|
|
|
raise SynapseError(403, "Group is not publicly joinable")
|
|
|
|
|
2020-06-01 07:28:43 -04:00
|
|
|
local_attestation = await self._add_user(group_id, requester_user_id, content)
|
2018-03-28 12:18:02 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {"state": "join", "attestation": local_attestation}
|
2018-03-28 12:18:02 -04:00
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
async def remove_user_from_group(
|
2021-02-17 08:41:47 -05:00
|
|
|
self, group_id: str, user_id: str, requester_user_id: str, content: JsonDict
|
|
|
|
) -> JsonDict:
|
2017-10-26 11:51:32 -04:00
|
|
|
"""Remove a user from the group; either a user is leaving or an admin
|
|
|
|
kicked them.
|
2017-07-11 04:58:59 -04:00
|
|
|
"""
|
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.check_group_is_ours(group_id, requester_user_id, and_exists=True)
|
2017-07-11 04:58:59 -04:00
|
|
|
|
2017-07-10 10:44:15 -04:00
|
|
|
is_kick = False
|
|
|
|
if requester_user_id != user_id:
|
2020-05-01 10:15:36 -04:00
|
|
|
is_admin = await self.store.is_user_admin_in_group(
|
2017-07-10 10:44:15 -04:00
|
|
|
group_id, requester_user_id
|
|
|
|
)
|
|
|
|
if not is_admin:
|
|
|
|
raise SynapseError(403, "User is not admin in group")
|
|
|
|
|
|
|
|
is_kick = True
|
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.store.remove_user_from_group(group_id, user_id)
|
2017-07-10 10:44:15 -04:00
|
|
|
|
|
|
|
if is_kick:
|
|
|
|
if self.hs.is_mine_id(user_id):
|
2017-07-10 09:52:27 -04:00
|
|
|
groups_local = self.hs.get_groups_local_handler()
|
2021-02-17 08:41:47 -05:00
|
|
|
assert isinstance(
|
|
|
|
groups_local, GroupsLocalHandler
|
|
|
|
), "Workers cannot remove users from groups."
|
2020-05-01 10:15:36 -04:00
|
|
|
await groups_local.user_removed_from_group(group_id, user_id, {})
|
2017-07-10 10:44:15 -04:00
|
|
|
else:
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.transport_client.remove_user_from_group_notification(
|
2017-07-10 10:44:15 -04:00
|
|
|
get_domain_from_id(user_id), group_id, user_id, {}
|
|
|
|
)
|
|
|
|
|
2017-08-25 06:21:34 -04:00
|
|
|
if not self.hs.is_mine_id(user_id):
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.store.maybe_delete_remote_profile_cache(user_id)
|
2017-08-25 06:21:34 -04:00
|
|
|
|
2019-12-16 07:12:40 -05:00
|
|
|
# Delete group if the last user has left
|
2020-05-01 10:15:36 -04:00
|
|
|
users = await self.store.get_users_in_group(group_id, include_private=True)
|
2019-12-16 07:12:40 -05:00
|
|
|
if not users:
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.store.delete_group(group_id)
|
2019-12-16 07:12:40 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {}
|
2017-07-10 10:44:15 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def create_group(
|
|
|
|
self, group_id: str, requester_user_id: str, content: JsonDict
|
|
|
|
) -> JsonDict:
|
2017-07-10 10:44:15 -04:00
|
|
|
logger.info("Attempting to create group with ID: %r", group_id)
|
2017-10-20 18:51:07 -04:00
|
|
|
|
|
|
|
# parsing the id into a GroupID validates it.
|
|
|
|
group_id_obj = GroupID.from_string(group_id)
|
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
group = await self.check_group_is_ours(group_id, requester_user_id)
|
2017-07-10 10:44:15 -04:00
|
|
|
if group:
|
|
|
|
raise SynapseError(400, "Group already exists")
|
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
is_admin = await self.auth.is_server_admin(
|
2017-10-26 11:51:32 -04:00
|
|
|
UserID.from_string(requester_user_id)
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2017-07-11 06:45:32 -04:00
|
|
|
if not is_admin:
|
2017-10-19 07:13:44 -04:00
|
|
|
if not self.hs.config.enable_group_creation:
|
2017-10-19 08:36:06 -04:00
|
|
|
raise SynapseError(
|
2017-10-30 11:17:23 -04:00
|
|
|
403, "Only a server admin can create groups on this server"
|
2017-10-19 08:36:06 -04:00
|
|
|
)
|
2017-10-20 18:51:07 -04:00
|
|
|
localpart = group_id_obj.localpart
|
2017-10-19 07:13:44 -04:00
|
|
|
if not localpart.startswith(self.hs.config.group_creation_prefix):
|
|
|
|
raise SynapseError(
|
|
|
|
400,
|
|
|
|
"Can only create groups with prefix %r on this server"
|
|
|
|
% (self.hs.config.group_creation_prefix,),
|
2017-10-19 08:36:06 -04:00
|
|
|
)
|
2017-07-10 10:44:15 -04:00
|
|
|
|
|
|
|
profile = content.get("profile", {})
|
|
|
|
name = profile.get("name")
|
|
|
|
avatar_url = profile.get("avatar_url")
|
|
|
|
short_description = profile.get("short_description")
|
|
|
|
long_description = profile.get("long_description")
|
2017-08-25 06:21:34 -04:00
|
|
|
user_profile = content.get("user_profile", {})
|
2017-07-10 10:44:15 -04:00
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.store.create_group(
|
2017-07-10 10:44:15 -04:00
|
|
|
group_id,
|
2017-10-26 11:51:32 -04:00
|
|
|
requester_user_id,
|
2017-07-10 10:44:15 -04:00
|
|
|
name=name,
|
|
|
|
avatar_url=avatar_url,
|
|
|
|
short_description=short_description,
|
|
|
|
long_description=long_description,
|
|
|
|
)
|
|
|
|
|
2017-10-26 11:51:32 -04:00
|
|
|
if not self.hs.is_mine_id(requester_user_id):
|
2017-07-10 10:44:15 -04:00
|
|
|
remote_attestation = content["attestation"]
|
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.attestations.verify_attestation(
|
2017-10-26 11:51:32 -04:00
|
|
|
remote_attestation, user_id=requester_user_id, group_id=group_id
|
2017-07-10 10:44:15 -04:00
|
|
|
)
|
|
|
|
|
2017-10-26 12:20:24 -04:00
|
|
|
local_attestation = self.attestations.create_attestation(
|
|
|
|
group_id, requester_user_id
|
2021-02-17 08:41:47 -05:00
|
|
|
) # type: Optional[JsonDict]
|
2017-07-10 10:44:15 -04:00
|
|
|
else:
|
|
|
|
local_attestation = None
|
|
|
|
remote_attestation = None
|
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.store.add_user_to_group(
|
2017-10-26 11:51:32 -04:00
|
|
|
group_id,
|
|
|
|
requester_user_id,
|
2017-07-10 10:44:15 -04:00
|
|
|
is_admin=True,
|
|
|
|
is_public=True, # TODO
|
|
|
|
local_attestation=local_attestation,
|
|
|
|
remote_attestation=remote_attestation,
|
|
|
|
)
|
|
|
|
|
2017-10-26 11:51:32 -04:00
|
|
|
if not self.hs.is_mine_id(requester_user_id):
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.store.add_remote_profile_cache(
|
2017-10-26 11:51:32 -04:00
|
|
|
requester_user_id,
|
2017-08-25 06:21:34 -04:00
|
|
|
displayname=user_profile.get("displayname"),
|
|
|
|
avatar_url=user_profile.get("avatar_url"),
|
|
|
|
)
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {"group_id": group_id}
|
2017-07-11 06:44:08 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
async def delete_group(self, group_id: str, requester_user_id: str) -> None:
|
2019-04-03 11:00:44 -04:00
|
|
|
"""Deletes a group, kicking out all current members.
|
|
|
|
|
|
|
|
Only group admins or server admins can call this request
|
|
|
|
|
|
|
|
Args:
|
2021-02-17 08:41:47 -05:00
|
|
|
group_id: The group ID to delete.
|
|
|
|
requester_user_id: The user requesting to delete the group.
|
2019-04-03 11:00:44 -04:00
|
|
|
"""
|
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.check_group_is_ours(group_id, requester_user_id, and_exists=True)
|
2019-04-03 11:00:44 -04:00
|
|
|
|
|
|
|
# Only server admins or group admins can delete groups.
|
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
is_admin = await self.store.is_user_admin_in_group(group_id, requester_user_id)
|
2019-04-03 11:00:44 -04:00
|
|
|
|
|
|
|
if not is_admin:
|
2020-05-01 10:15:36 -04:00
|
|
|
is_admin = await self.auth.is_server_admin(
|
2019-04-03 11:00:44 -04:00
|
|
|
UserID.from_string(requester_user_id)
|
|
|
|
)
|
|
|
|
|
|
|
|
if not is_admin:
|
|
|
|
raise SynapseError(403, "User is not an admin")
|
|
|
|
|
|
|
|
# Before deleting the group lets kick everyone out of it
|
2020-05-01 10:15:36 -04:00
|
|
|
users = await self.store.get_users_in_group(group_id, include_private=True)
|
2019-04-03 11:00:44 -04:00
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
async def _kick_user_from_group(user_id):
|
2019-04-03 11:00:44 -04:00
|
|
|
if self.hs.is_mine_id(user_id):
|
|
|
|
groups_local = self.hs.get_groups_local_handler()
|
2021-02-17 08:41:47 -05:00
|
|
|
assert isinstance(
|
|
|
|
groups_local, GroupsLocalHandler
|
|
|
|
), "Workers cannot kick users from groups."
|
2020-05-01 10:15:36 -04:00
|
|
|
await groups_local.user_removed_from_group(group_id, user_id, {})
|
2019-04-03 11:00:44 -04:00
|
|
|
else:
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.transport_client.remove_user_from_group_notification(
|
2019-04-03 11:00:44 -04:00
|
|
|
get_domain_from_id(user_id), group_id, user_id, {}
|
|
|
|
)
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.store.maybe_delete_remote_profile_cache(user_id)
|
2019-04-03 11:00:44 -04:00
|
|
|
|
|
|
|
# We kick users out in the order of:
|
|
|
|
# 1. Non-admins
|
|
|
|
# 2. Other admins
|
|
|
|
# 3. The requester
|
|
|
|
#
|
|
|
|
# This is so that if the deletion fails for some reason other admins or
|
|
|
|
# the requester still has auth to retry.
|
|
|
|
non_admins = []
|
|
|
|
admins = []
|
|
|
|
for u in users:
|
|
|
|
if u["user_id"] == requester_user_id:
|
|
|
|
continue
|
|
|
|
if u["is_admin"]:
|
|
|
|
admins.append(u["user_id"])
|
|
|
|
else:
|
|
|
|
non_admins.append(u["user_id"])
|
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
await concurrently_execute(_kick_user_from_group, non_admins, 10)
|
|
|
|
await concurrently_execute(_kick_user_from_group, admins, 10)
|
|
|
|
await _kick_user_from_group(requester_user_id)
|
2019-04-03 11:00:44 -04:00
|
|
|
|
2020-05-01 10:15:36 -04:00
|
|
|
await self.store.delete_group(group_id)
|
2019-04-03 11:00:44 -04:00
|
|
|
|
2017-07-11 06:44:08 -04:00
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
def _parse_join_policy_from_contents(content: JsonDict) -> Optional[str]:
|
2018-04-03 10:40:43 -04:00
|
|
|
"""Given a content for a request, return the specified join policy or None"""
|
|
|
|
|
|
|
|
join_policy_dict = content.get("m.join_policy")
|
|
|
|
if join_policy_dict:
|
|
|
|
return _parse_join_policy_dict(join_policy_dict)
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
def _parse_join_policy_dict(join_policy_dict: JsonDict) -> str:
|
2018-04-03 10:40:43 -04:00
|
|
|
"""Given a dict for the "m.join_policy" config return the join policy specified"""
|
|
|
|
join_policy_type = join_policy_dict.get("type")
|
|
|
|
if not join_policy_type:
|
2018-04-06 06:44:18 -04:00
|
|
|
return "invite"
|
2018-04-03 10:40:43 -04:00
|
|
|
|
|
|
|
if join_policy_type not in ("invite", "open"):
|
|
|
|
raise SynapseError(400, "Synapse only supports 'invite'/'open' join rule")
|
|
|
|
return join_policy_type
|
|
|
|
|
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
def _parse_visibility_from_contents(content: JsonDict) -> bool:
|
2017-07-11 06:44:08 -04:00
|
|
|
"""Given a content for a request parse out whether the entity should be
|
|
|
|
public or not
|
|
|
|
"""
|
|
|
|
|
2017-11-09 10:27:18 -05:00
|
|
|
visibility = content.get("m.visibility")
|
2017-07-11 06:44:08 -04:00
|
|
|
if visibility:
|
2017-11-09 10:27:18 -05:00
|
|
|
return _parse_visibility_dict(visibility)
|
2017-07-11 06:44:08 -04:00
|
|
|
else:
|
|
|
|
is_public = True
|
|
|
|
|
|
|
|
return is_public
|
2017-11-09 10:27:18 -05:00
|
|
|
|
|
|
|
|
2021-02-17 08:41:47 -05:00
|
|
|
def _parse_visibility_dict(visibility: JsonDict) -> bool:
|
2017-11-09 10:27:18 -05:00
|
|
|
"""Given a dict for the "m.visibility" config return if the entity should
|
|
|
|
be public or not
|
|
|
|
"""
|
|
|
|
vis_type = visibility.get("type")
|
|
|
|
if not vis_type:
|
|
|
|
return True
|
|
|
|
|
|
|
|
if vis_type not in ("public", "private"):
|
|
|
|
raise SynapseError(400, "Synapse only supports 'public'/'private' visibility")
|
|
|
|
return vis_type == "public"
|