2014-08-31 11:06:39 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-01-06 08:21:39 -05:00
|
|
|
# Copyright 2014, 2015 OpenMarket 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.
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import os
|
2014-09-01 15:44:43 -04:00
|
|
|
import yaml
|
2015-04-29 23:24:44 -04:00
|
|
|
import sys
|
|
|
|
from textwrap import dedent
|
2014-08-31 11:06:39 -04:00
|
|
|
|
|
|
|
|
2014-09-02 05:48:05 -04:00
|
|
|
class ConfigError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2014-08-31 11:06:39 -04:00
|
|
|
class Config(object):
|
|
|
|
|
2015-02-11 10:01:15 -05:00
|
|
|
@staticmethod
|
2015-04-30 11:04:02 -04:00
|
|
|
def parse_size(value):
|
|
|
|
if isinstance(value, int) or isinstance(value, long):
|
|
|
|
return value
|
2015-02-11 10:01:15 -05:00
|
|
|
sizes = {"K": 1024, "M": 1024 * 1024}
|
|
|
|
size = 1
|
2015-04-30 11:04:02 -04:00
|
|
|
suffix = value[-1]
|
2015-02-11 10:01:15 -05:00
|
|
|
if suffix in sizes:
|
2015-04-30 11:04:02 -04:00
|
|
|
value = value[:-1]
|
2015-02-11 10:01:15 -05:00
|
|
|
size = sizes[suffix]
|
2015-04-30 11:04:02 -04:00
|
|
|
return int(value) * size
|
2015-02-11 10:01:15 -05:00
|
|
|
|
2015-04-29 23:24:44 -04:00
|
|
|
@staticmethod
|
2015-04-30 11:04:02 -04:00
|
|
|
def parse_duration(value):
|
|
|
|
if isinstance(value, int) or isinstance(value, long):
|
|
|
|
return value
|
2015-04-29 23:24:44 -04:00
|
|
|
second = 1000
|
|
|
|
hour = 60 * 60 * second
|
|
|
|
day = 24 * hour
|
|
|
|
week = 7 * day
|
|
|
|
year = 365 * day
|
|
|
|
sizes = {"s": second, "h": hour, "d": day, "w": week, "y": year}
|
|
|
|
size = 1
|
2015-04-30 11:04:02 -04:00
|
|
|
suffix = value[-1]
|
2015-04-29 23:24:44 -04:00
|
|
|
if suffix in sizes:
|
2015-04-30 11:04:02 -04:00
|
|
|
value = value[:-1]
|
2015-04-29 23:24:44 -04:00
|
|
|
size = sizes[suffix]
|
2015-04-30 11:04:02 -04:00
|
|
|
return int(value) * size
|
2015-04-29 23:24:44 -04:00
|
|
|
|
2014-09-01 10:51:15 -04:00
|
|
|
@staticmethod
|
|
|
|
def abspath(file_path):
|
|
|
|
return os.path.abspath(file_path) if file_path else file_path
|
|
|
|
|
2014-09-02 05:48:05 -04:00
|
|
|
@classmethod
|
|
|
|
def check_file(cls, file_path, config_name):
|
|
|
|
if file_path is None:
|
|
|
|
raise ConfigError(
|
|
|
|
"Missing config for %s."
|
2014-11-14 08:30:06 -05:00
|
|
|
" You must specify a path for the config file. You can "
|
|
|
|
"do this with the -c or --config-path option. "
|
|
|
|
"Adding --generate-config along with --server-name "
|
|
|
|
"<server name> will generate a config file at the given path."
|
2014-09-02 05:48:05 -04:00
|
|
|
% (config_name,)
|
|
|
|
)
|
|
|
|
if not os.path.exists(file_path):
|
|
|
|
raise ConfigError(
|
2014-12-13 13:03:01 -05:00
|
|
|
"File %s config for %s doesn't exist."
|
2014-09-02 05:48:05 -04:00
|
|
|
" Try running again with --generate-config"
|
2014-12-13 13:03:01 -05:00
|
|
|
% (file_path, config_name,)
|
2014-09-02 05:48:05 -04:00
|
|
|
)
|
|
|
|
return cls.abspath(file_path)
|
|
|
|
|
2015-02-09 13:29:36 -05:00
|
|
|
@classmethod
|
|
|
|
def ensure_directory(cls, dir_path):
|
|
|
|
dir_path = cls.abspath(dir_path)
|
2014-12-02 14:51:47 -05:00
|
|
|
if not os.path.exists(dir_path):
|
|
|
|
os.makedirs(dir_path)
|
|
|
|
if not os.path.isdir(dir_path):
|
|
|
|
raise ConfigError(
|
|
|
|
"%s is not a directory" % (dir_path,)
|
|
|
|
)
|
|
|
|
return dir_path
|
|
|
|
|
2014-09-02 05:48:05 -04:00
|
|
|
@classmethod
|
|
|
|
def read_file(cls, file_path, config_name):
|
|
|
|
cls.check_file(file_path, config_name)
|
2014-08-31 11:06:39 -04:00
|
|
|
with open(file_path) as file_stream:
|
|
|
|
return file_stream.read()
|
|
|
|
|
2014-12-02 14:51:47 -05:00
|
|
|
@staticmethod
|
|
|
|
def default_path(name):
|
|
|
|
return os.path.abspath(os.path.join(os.path.curdir, name))
|
|
|
|
|
2014-08-31 11:06:39 -04:00
|
|
|
@staticmethod
|
|
|
|
def read_config_file(file_path):
|
2014-09-01 15:44:43 -04:00
|
|
|
with open(file_path) as file_stream:
|
|
|
|
return yaml.load(file_stream)
|
2014-08-31 11:06:39 -04:00
|
|
|
|
2015-04-29 23:24:44 -04:00
|
|
|
def invoke_all(self, name, *args, **kargs):
|
|
|
|
results = []
|
|
|
|
for cls in type(self).mro():
|
|
|
|
if name in cls.__dict__:
|
|
|
|
results.append(getattr(cls, name)(self, *args, **kargs))
|
|
|
|
return results
|
2014-08-31 11:06:39 -04:00
|
|
|
|
2015-04-29 23:24:44 -04:00
|
|
|
def generate_config(self, config_dir_path, server_name):
|
|
|
|
default_config = "# vim:ft=yaml\n"
|
|
|
|
|
|
|
|
default_config += "\n\n".join(dedent(conf) for conf in self.invoke_all(
|
|
|
|
"default_config", config_dir_path, server_name
|
|
|
|
))
|
|
|
|
|
|
|
|
config = yaml.load(default_config)
|
|
|
|
|
2015-04-30 08:48:15 -04:00
|
|
|
return default_config, config
|
2014-08-31 11:06:39 -04:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def load_config(cls, description, argv, generate_section=None):
|
2015-04-30 08:48:15 -04:00
|
|
|
obj = cls()
|
2015-04-29 23:24:44 -04:00
|
|
|
|
2014-08-31 11:06:39 -04:00
|
|
|
config_parser = argparse.ArgumentParser(add_help=False)
|
|
|
|
config_parser.add_argument(
|
|
|
|
"-c", "--config-path",
|
2015-04-30 08:48:15 -04:00
|
|
|
action="append",
|
2014-08-31 11:06:39 -04:00
|
|
|
metavar="CONFIG_FILE",
|
|
|
|
help="Specify config file"
|
|
|
|
)
|
2014-09-01 10:51:15 -04:00
|
|
|
config_parser.add_argument(
|
|
|
|
"--generate-config",
|
2015-04-30 08:48:15 -04:00
|
|
|
action="store_true",
|
2015-04-29 23:24:44 -04:00
|
|
|
help="Generate a config file for the server name"
|
2014-09-01 10:51:15 -04:00
|
|
|
)
|
2015-04-30 08:48:15 -04:00
|
|
|
config_parser.add_argument(
|
|
|
|
"-H", "--server-name",
|
|
|
|
help="The server name to generate a config file for"
|
|
|
|
)
|
2014-08-31 11:06:39 -04:00
|
|
|
config_args, remaining_args = config_parser.parse_known_args(argv)
|
|
|
|
|
2015-04-29 23:24:44 -04:00
|
|
|
if not config_args.config_path:
|
|
|
|
config_parser.error(
|
|
|
|
"Must supply a config file.\nA config file can be automatically"
|
2015-04-30 08:48:15 -04:00
|
|
|
" generated using \"--generate-config -h SERVER_NAME"
|
2015-04-29 23:24:44 -04:00
|
|
|
" -c CONFIG-FILE\""
|
|
|
|
)
|
2014-08-31 11:06:39 -04:00
|
|
|
|
2015-04-30 08:48:15 -04:00
|
|
|
config_dir_path = os.path.dirname(config_args.config_path[0])
|
|
|
|
config_dir_path = os.path.abspath(config_dir_path)
|
2014-09-01 10:51:15 -04:00
|
|
|
if config_args.generate_config:
|
2015-04-30 08:48:15 -04:00
|
|
|
server_name = config_args.server_name
|
|
|
|
if not server_name:
|
|
|
|
print "Most specify a server_name to a generate config for."
|
|
|
|
sys.exit(1)
|
|
|
|
(config_path,) = config_args.config_path
|
|
|
|
if not os.path.exists(config_dir_path):
|
|
|
|
os.makedirs(config_dir_path)
|
2015-05-01 08:54:38 -04:00
|
|
|
if os.path.exists(config_path):
|
|
|
|
print "Config file %r already exists" % (config_path,)
|
|
|
|
yaml_config = cls.read_config_file(config_path)
|
|
|
|
yaml_name = yaml_config["server_name"]
|
|
|
|
if server_name != yaml_name:
|
|
|
|
print (
|
|
|
|
"Config file %r has a different server_name: "
|
|
|
|
" %r != %r" % (config_path, server_name, yaml_name)
|
|
|
|
)
|
|
|
|
sys.exit(1)
|
|
|
|
config_bytes, config = obj.generate_config(
|
|
|
|
config_dir_path, server_name
|
|
|
|
)
|
|
|
|
config.update(yaml_config)
|
|
|
|
print "Generating any missing keys for %r" % (server_name,)
|
|
|
|
obj.invoke_all("generate_files", config)
|
|
|
|
sys.exit(0)
|
2015-04-29 23:24:44 -04:00
|
|
|
with open(config_path, "wb") as config_file:
|
2015-04-30 08:48:15 -04:00
|
|
|
config_bytes, config = obj.generate_config(
|
|
|
|
config_dir_path, server_name
|
2015-04-29 23:24:44 -04:00
|
|
|
)
|
2015-04-30 11:52:57 -04:00
|
|
|
obj.invoke_all("generate_files", config)
|
2015-04-30 08:48:15 -04:00
|
|
|
config_file.write(config_bytes)
|
2015-05-01 08:54:38 -04:00
|
|
|
print (
|
|
|
|
"A config file has been generated in %s for server name"
|
|
|
|
" '%s' with corresponding SSL keys and self-signed"
|
|
|
|
" certificates. Please review this file and customise it to"
|
|
|
|
" your needs."
|
|
|
|
) % (config_path, server_name)
|
2014-10-30 07:10:17 -04:00
|
|
|
print (
|
|
|
|
"If this server name is incorrect, you will need to regenerate"
|
|
|
|
" the SSL certificates"
|
|
|
|
)
|
2014-09-01 10:51:15 -04:00
|
|
|
sys.exit(0)
|
2014-08-31 11:06:39 -04:00
|
|
|
|
2015-04-30 08:48:15 -04:00
|
|
|
specified_config = {}
|
|
|
|
for config_path in config_args.config_path:
|
|
|
|
yaml_config = cls.read_config_file(config_path)
|
|
|
|
specified_config.update(yaml_config)
|
|
|
|
|
|
|
|
server_name = specified_config["server_name"]
|
|
|
|
_, config = obj.generate_config(config_dir_path, server_name)
|
2015-04-30 11:52:57 -04:00
|
|
|
config.pop("log_config")
|
2015-04-30 08:48:15 -04:00
|
|
|
config.update(specified_config)
|
|
|
|
|
|
|
|
obj.invoke_all("read_config", config)
|
2015-04-29 23:24:44 -04:00
|
|
|
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
parents=[config_parser],
|
|
|
|
description=description,
|
|
|
|
formatter_class=argparse.RawDescriptionHelpFormatter,
|
|
|
|
)
|
|
|
|
|
2015-04-30 08:48:15 -04:00
|
|
|
obj.invoke_all("add_arguments", parser)
|
2015-04-29 23:24:44 -04:00
|
|
|
args = parser.parse_args(remaining_args)
|
|
|
|
|
2015-04-30 08:48:15 -04:00
|
|
|
obj.invoke_all("read_arguments", args)
|
2015-04-29 23:24:44 -04:00
|
|
|
|
2015-04-30 08:48:15 -04:00
|
|
|
return obj
|