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