2014-08-31 11:06:39 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2018-05-10 19:17:11 -04:00
|
|
|
# Copyright 2018 New Vector Ltd
|
2014-08-31 11:06:39 -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.
|
2016-02-23 08:22:07 -05:00
|
|
|
from .api import ApiConfig
|
2015-03-31 04:22:31 -04:00
|
|
|
from .appservice import AppServiceConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
from .captcha import CaptchaConfig
|
2015-10-07 09:45:57 -04:00
|
|
|
from .cas import CasConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
from .consent_config import ConsentConfig
|
|
|
|
from .database import DatabaseConfig
|
|
|
|
from .emailconfig import EmailConfig
|
|
|
|
from .groups import GroupsConfig
|
2018-09-07 09:20:54 -04:00
|
|
|
from .jwt_config import JWTConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
from .key import KeyConfig
|
|
|
|
from .logger import LoggingConfig
|
|
|
|
from .metrics import MetricsConfig
|
|
|
|
from .password import PasswordConfig
|
2016-10-03 05:27:10 -04:00
|
|
|
from .password_auth_providers import PasswordAuthProviderConfig
|
2017-06-23 09:15:18 -04:00
|
|
|
from .push import PushConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
from .ratelimiting import RatelimitConfig
|
|
|
|
from .registration import RegistrationConfig
|
|
|
|
from .repository import ContentRepositoryConfig
|
2018-10-17 11:14:04 -04:00
|
|
|
from .room_directory import RoomDirectoryConfig
|
2018-12-07 07:11:11 -05:00
|
|
|
from .saml2_config import SAML2Config
|
2018-07-09 02:09:20 -04:00
|
|
|
from .server import ServerConfig
|
|
|
|
from .server_notices_config import ServerNoticesConfig
|
2017-09-26 14:20:23 -04:00
|
|
|
from .spam_checker import SpamCheckerConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
from .tls import TlsConfig
|
2017-11-29 11:46:45 -05:00
|
|
|
from .user_directory import UserDirectoryConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
from .voip import VoipConfig
|
|
|
|
from .workers import WorkerConfig
|
2014-08-31 11:06:39 -04:00
|
|
|
|
2015-07-08 06:35:46 -04:00
|
|
|
|
2014-09-02 12:57:04 -04:00
|
|
|
class HomeServerConfig(TlsConfig, ServerConfig, DatabaseConfig, LoggingConfig,
|
2014-09-16 07:36:39 -04:00
|
|
|
RatelimitConfig, ContentRepositoryConfig, CaptchaConfig,
|
2016-02-23 08:22:07 -05:00
|
|
|
VoipConfig, RegistrationConfig, MetricsConfig, ApiConfig,
|
2018-12-07 07:11:11 -05:00
|
|
|
AppServiceConfig, KeyConfig, SAML2Config, CasConfig,
|
2016-10-03 05:27:10 -04:00
|
|
|
JWTConfig, PasswordConfig, EmailConfig,
|
2017-09-26 14:20:23 -04:00
|
|
|
WorkerConfig, PasswordAuthProviderConfig, PushConfig,
|
2018-05-10 19:17:11 -04:00
|
|
|
SpamCheckerConfig, GroupsConfig, UserDirectoryConfig,
|
2018-05-17 06:34:28 -04:00
|
|
|
ConsentConfig,
|
2018-10-17 11:14:04 -04:00
|
|
|
ServerNoticesConfig, RoomDirectoryConfig,
|
2018-05-17 06:34:28 -04:00
|
|
|
):
|
2014-08-31 11:06:39 -04:00
|
|
|
pass
|
|
|
|
|
2014-09-16 07:36:39 -04:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2014-08-31 11:06:39 -04:00
|
|
|
import sys
|
2015-04-29 23:24:44 -04:00
|
|
|
sys.stdout.write(
|
2018-05-10 19:17:11 -04:00
|
|
|
HomeServerConfig().generate_config(sys.argv[1], sys.argv[2], True)[0]
|
2015-04-29 23:24:44 -04:00
|
|
|
)
|