2018-05-17 06:34:28 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2018 New Vector Ltd
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
from synapse.types import UserID
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from ._base import Config
|
|
|
|
|
2018-05-17 06:34:28 -04:00
|
|
|
DEFAULT_CONFIG = """\
|
|
|
|
# Server Notices room configuration
|
|
|
|
#
|
|
|
|
# Uncomment this section to enable a room which can be used to send notices
|
|
|
|
# from the server to users. It is a special room which cannot be left; notices
|
|
|
|
# come from a special "notices" user id.
|
|
|
|
#
|
|
|
|
# If you uncomment this section, you *must* define the system_mxid_localpart
|
|
|
|
# setting, which defines the id of the user which will be used to send the
|
|
|
|
# notices.
|
|
|
|
#
|
2018-05-23 12:43:30 -04:00
|
|
|
# It's also possible to override the room name, the display name of the
|
|
|
|
# "notices" user, and the avatar for the user.
|
2018-05-17 06:34:28 -04:00
|
|
|
#
|
2019-02-19 08:54:29 -05:00
|
|
|
#server_notices:
|
|
|
|
# system_mxid_localpart: notices
|
|
|
|
# system_mxid_display_name: "Server Notices"
|
|
|
|
# system_mxid_avatar_url: "mxc://server.com/oumMVlgDnLYFaPVkExemNVVZ"
|
|
|
|
# room_name: "Server Notices"
|
2018-05-17 06:34:28 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
class ServerNoticesConfig(Config):
|
2018-05-18 06:00:55 -04:00
|
|
|
"""Configuration for the server notices room.
|
2018-05-17 06:34:28 -04:00
|
|
|
|
2018-05-18 06:00:55 -04:00
|
|
|
Attributes:
|
|
|
|
server_notices_mxid (str|None):
|
|
|
|
The MXID to use for server notices.
|
|
|
|
None if server notices are not enabled.
|
2018-05-17 06:34:28 -04:00
|
|
|
|
2018-05-18 06:00:55 -04:00
|
|
|
server_notices_mxid_display_name (str|None):
|
|
|
|
The display name to use for the server notices user.
|
|
|
|
None if server notices are not enabled.
|
2018-05-17 06:34:28 -04:00
|
|
|
|
2018-05-23 12:43:30 -04:00
|
|
|
server_notices_mxid_avatar_url (str|None):
|
|
|
|
The display name to use for the server notices user.
|
|
|
|
None if server notices are not enabled.
|
|
|
|
|
2018-05-18 06:00:55 -04:00
|
|
|
server_notices_room_name (str|None):
|
|
|
|
The name to use for the server notices room.
|
|
|
|
None if server notices are not enabled.
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2018-05-18 06:00:55 -04:00
|
|
|
def __init__(self):
|
|
|
|
super(ServerNoticesConfig, self).__init__()
|
2018-05-17 06:34:28 -04:00
|
|
|
self.server_notices_mxid = None
|
|
|
|
self.server_notices_mxid_display_name = None
|
2018-05-23 12:43:30 -04:00
|
|
|
self.server_notices_mxid_avatar_url = None
|
2018-05-17 06:34:28 -04:00
|
|
|
self.server_notices_room_name = None
|
|
|
|
|
2019-06-24 06:34:45 -04:00
|
|
|
def read_config(self, config, **kwargs):
|
2018-05-17 06:34:28 -04:00
|
|
|
c = config.get("server_notices")
|
|
|
|
if c is None:
|
|
|
|
return
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
mxid_localpart = c["system_mxid_localpart"]
|
|
|
|
self.server_notices_mxid = UserID(mxid_localpart, self.server_name).to_string()
|
|
|
|
self.server_notices_mxid_display_name = c.get("system_mxid_display_name", None)
|
|
|
|
self.server_notices_mxid_avatar_url = c.get("system_mxid_avatar_url", None)
|
2018-05-18 06:00:55 -04:00
|
|
|
# todo: i18n
|
2019-06-20 05:32:02 -04:00
|
|
|
self.server_notices_room_name = c.get("room_name", "Server Notices")
|
2018-05-17 06:34:28 -04:00
|
|
|
|
2019-06-21 19:00:20 -04:00
|
|
|
def generate_config_section(self, **kwargs):
|
2018-05-17 06:34:28 -04:00
|
|
|
return DEFAULT_CONFIG
|