2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2015-04-24 05:35:29 -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.
|
|
|
|
|
2015-01-08 12:07:28 -05:00
|
|
|
import logging
|
|
|
|
from distutils.version import LooseVersion
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
REQUIREMENTS = {
|
2015-09-01 11:51:10 -04:00
|
|
|
"frozendict>=0.4": ["frozendict"],
|
2016-02-23 10:11:25 -05:00
|
|
|
"unpaddedbase64>=1.1.0": ["unpaddedbase64>=1.1.0"],
|
2015-08-25 05:42:59 -04:00
|
|
|
"canonicaljson>=1.0.0": ["canonicaljson>=1.0.0"],
|
2015-08-24 11:17:38 -04:00
|
|
|
"signedjson>=1.0.0": ["signedjson>=1.0.0"],
|
2016-01-28 09:47:03 -05:00
|
|
|
"pynacl==0.3.0": ["nacl==0.3.0", "nacl.bindings"],
|
2015-01-08 12:07:28 -05:00
|
|
|
"service_identity>=1.0.0": ["service_identity>=1.0.0"],
|
2015-09-01 11:51:10 -04:00
|
|
|
"Twisted>=15.1.0": ["twisted>=15.1.0"],
|
2015-01-08 12:07:28 -05:00
|
|
|
"pyopenssl>=0.14": ["OpenSSL>=0.14"],
|
|
|
|
"pyyaml": ["yaml"],
|
|
|
|
"pyasn1": ["pyasn1"],
|
|
|
|
"daemonize": ["daemonize"],
|
|
|
|
"py-bcrypt": ["bcrypt"],
|
|
|
|
"pillow": ["PIL"],
|
2015-02-02 12:37:26 -05:00
|
|
|
"pydenticon": ["pydenticon"],
|
2015-05-29 07:17:33 -04:00
|
|
|
"ujson": ["ujson"],
|
2015-07-08 10:41:59 -04:00
|
|
|
"blist": ["blist"],
|
2016-03-09 06:54:56 -05:00
|
|
|
"pysaml2>=3.0.0,<4.0.0": ["saml2>=3.0.0,<4.0.0"],
|
2015-08-19 08:21:36 -04:00
|
|
|
"pymacaroons-pynacl": ["pymacaroons"],
|
2015-01-08 12:07:28 -05:00
|
|
|
}
|
2015-03-17 07:45:37 -04:00
|
|
|
CONDITIONAL_REQUIREMENTS = {
|
|
|
|
"web_client": {
|
2016-02-10 11:27:01 -05:00
|
|
|
"matrix_angular_sdk>=0.6.8": ["syweb>=0.6.8"],
|
2016-04-08 13:37:15 -04:00
|
|
|
},
|
|
|
|
"preview_url": {
|
|
|
|
"netaddr>=0.7.18": ["netaddr"],
|
|
|
|
},
|
2015-03-17 07:45:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def requirements(config=None, include_conditional=False):
|
|
|
|
reqs = REQUIREMENTS.copy()
|
2015-08-25 09:10:31 -04:00
|
|
|
if include_conditional:
|
|
|
|
for _, req in CONDITIONAL_REQUIREMENTS.items():
|
2015-03-17 07:45:37 -04:00
|
|
|
reqs.update(req)
|
|
|
|
return reqs
|
2015-01-08 12:07:28 -05:00
|
|
|
|
2015-02-10 11:30:48 -05:00
|
|
|
|
2015-02-02 12:22:40 -05:00
|
|
|
def github_link(project, version, egg):
|
|
|
|
return "https://github.com/%s/tarball/%s/#egg=%s" % (project, version, egg)
|
|
|
|
|
2015-08-25 10:33:23 -04:00
|
|
|
DEPENDENCY_LINKS = {
|
|
|
|
}
|
2015-02-02 12:22:40 -05:00
|
|
|
|
2015-01-08 12:07:28 -05:00
|
|
|
|
|
|
|
class MissingRequirementError(Exception):
|
2015-09-01 11:47:26 -04:00
|
|
|
def __init__(self, message, module_name, dependency):
|
|
|
|
super(MissingRequirementError, self).__init__(message)
|
|
|
|
self.module_name = module_name
|
|
|
|
self.dependency = dependency
|
2015-01-08 12:07:28 -05:00
|
|
|
|
|
|
|
|
2015-03-17 07:45:37 -04:00
|
|
|
def check_requirements(config=None):
|
2015-01-08 12:07:28 -05:00
|
|
|
"""Checks that all the modules needed by synapse have been correctly
|
|
|
|
installed and are at the correct version"""
|
2015-03-17 07:53:55 -04:00
|
|
|
for dependency, module_requirements in (
|
|
|
|
requirements(config, include_conditional=False).items()):
|
2015-01-08 12:07:28 -05:00
|
|
|
for module_requirement in module_requirements:
|
|
|
|
if ">=" in module_requirement:
|
|
|
|
module_name, required_version = module_requirement.split(">=")
|
|
|
|
version_test = ">="
|
|
|
|
elif "==" in module_requirement:
|
|
|
|
module_name, required_version = module_requirement.split("==")
|
|
|
|
version_test = "=="
|
|
|
|
else:
|
|
|
|
module_name = module_requirement
|
|
|
|
version_test = None
|
|
|
|
|
|
|
|
try:
|
|
|
|
module = __import__(module_name)
|
|
|
|
except ImportError:
|
|
|
|
logging.exception(
|
|
|
|
"Can't import %r which is part of %r",
|
|
|
|
module_name, dependency
|
|
|
|
)
|
|
|
|
raise MissingRequirementError(
|
|
|
|
"Can't import %r which is part of %r"
|
2015-09-01 11:47:26 -04:00
|
|
|
% (module_name, dependency), module_name, dependency
|
2015-01-08 12:07:28 -05:00
|
|
|
)
|
|
|
|
version = getattr(module, "__version__", None)
|
|
|
|
file_path = getattr(module, "__file__", None)
|
|
|
|
logger.info(
|
|
|
|
"Using %r version %r from %r to satisfy %r",
|
|
|
|
module_name, version, file_path, dependency
|
|
|
|
)
|
|
|
|
|
|
|
|
if version_test == ">=":
|
|
|
|
if version is None:
|
|
|
|
raise MissingRequirementError(
|
|
|
|
"Version of %r isn't set as __version__ of module %r"
|
2015-09-01 11:47:26 -04:00
|
|
|
% (dependency, module_name), module_name, dependency
|
2015-01-08 12:07:28 -05:00
|
|
|
)
|
|
|
|
if LooseVersion(version) < LooseVersion(required_version):
|
|
|
|
raise MissingRequirementError(
|
|
|
|
"Version of %r in %r is too old. %r < %r"
|
2015-09-01 11:47:26 -04:00
|
|
|
% (dependency, file_path, version, required_version),
|
|
|
|
module_name, dependency
|
2015-01-08 12:07:28 -05:00
|
|
|
)
|
|
|
|
elif version_test == "==":
|
|
|
|
if version is None:
|
|
|
|
raise MissingRequirementError(
|
|
|
|
"Version of %r isn't set as __version__ of module %r"
|
2015-09-01 11:47:26 -04:00
|
|
|
% (dependency, module_name), module_name, dependency
|
2015-01-08 12:07:28 -05:00
|
|
|
)
|
|
|
|
if LooseVersion(version) != LooseVersion(required_version):
|
|
|
|
raise MissingRequirementError(
|
|
|
|
"Unexpected version of %r in %r. %r != %r"
|
2015-09-01 11:47:26 -04:00
|
|
|
% (dependency, file_path, version, required_version),
|
|
|
|
module_name, dependency
|
2015-01-08 12:07:28 -05:00
|
|
|
)
|
2015-02-02 12:22:40 -05:00
|
|
|
|
2015-02-10 11:30:48 -05:00
|
|
|
|
2015-02-02 12:22:40 -05:00
|
|
|
def list_requirements():
|
|
|
|
result = []
|
|
|
|
linked = []
|
2015-08-25 10:33:23 -04:00
|
|
|
for link in DEPENDENCY_LINKS.values():
|
2015-02-02 12:22:40 -05:00
|
|
|
egg = link.split("#egg=")[1]
|
|
|
|
linked.append(egg.split('-')[0])
|
|
|
|
result.append(link)
|
2015-03-17 07:45:37 -04:00
|
|
|
for requirement in requirements(include_conditional=True):
|
2015-02-02 12:22:40 -05:00
|
|
|
is_linked = False
|
|
|
|
for link in linked:
|
2015-02-10 11:30:48 -05:00
|
|
|
if requirement.replace('-', '_').startswith(link):
|
2015-02-02 12:22:40 -05:00
|
|
|
is_linked = True
|
|
|
|
if not is_linked:
|
|
|
|
result.append(requirement)
|
|
|
|
return result
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
import sys
|
|
|
|
sys.stdout.writelines(req + "\n" for req in list_requirements())
|