2015-02-19 09:16:53 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2015 OpenMarket 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 ._base import Config
|
|
|
|
|
2015-03-13 11:23:37 -04:00
|
|
|
from synapse.util.stringutils import random_string_with_symbols
|
|
|
|
|
2015-03-13 12:49:18 -04:00
|
|
|
import distutils.util
|
|
|
|
|
2015-02-19 09:16:53 -05:00
|
|
|
|
|
|
|
class RegistrationConfig(Config):
|
|
|
|
|
|
|
|
def __init__(self, args):
|
|
|
|
super(RegistrationConfig, self).__init__(args)
|
2015-03-13 12:49:18 -04:00
|
|
|
|
2015-03-30 12:01:09 -04:00
|
|
|
# `args.enable_registration` may either be a bool or a string depending
|
|
|
|
# on if the option was given a value (e.g. --enable-registration=true
|
|
|
|
# would set `args.enable_registration` to "true" not True.)
|
|
|
|
self.disable_registration = not bool(
|
|
|
|
distutils.util.strtobool(str(args.enable_registration))
|
2015-03-13 12:49:18 -04:00
|
|
|
)
|
2015-03-13 11:23:37 -04:00
|
|
|
self.registration_shared_secret = args.registration_shared_secret
|
2015-02-19 09:16:53 -05:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def add_arguments(cls, parser):
|
|
|
|
super(RegistrationConfig, cls).add_arguments(parser)
|
|
|
|
reg_group = parser.add_argument_group("registration")
|
2015-03-13 11:23:37 -04:00
|
|
|
|
2015-02-19 09:16:53 -05:00
|
|
|
reg_group.add_argument(
|
2015-03-30 12:01:09 -04:00
|
|
|
"--enable-registration",
|
2015-04-07 13:16:23 -04:00
|
|
|
const=True,
|
2015-03-30 12:01:09 -04:00
|
|
|
default=False,
|
2015-03-13 12:49:18 -04:00
|
|
|
nargs='?',
|
2015-03-30 12:01:09 -04:00
|
|
|
help="Enable registration for new users.",
|
2015-03-13 11:23:37 -04:00
|
|
|
)
|
|
|
|
reg_group.add_argument(
|
|
|
|
"--registration-shared-secret", type=str,
|
|
|
|
help="If set, allows registration by anyone who also has the shared"
|
|
|
|
" secret, even if registration is otherwise disabled.",
|
2015-02-19 09:16:53 -05:00
|
|
|
)
|
2015-03-13 08:59:45 -04:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def generate_config(cls, args, config_dir_path):
|
2015-03-30 12:01:09 -04:00
|
|
|
if args.enable_registration is None:
|
|
|
|
args.enable_registration = False
|
2015-03-13 11:23:37 -04:00
|
|
|
|
|
|
|
if args.registration_shared_secret is None:
|
2015-03-13 11:26:00 -04:00
|
|
|
args.registration_shared_secret = random_string_with_symbols(50)
|