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