2015-06-16 10:37:23 +02:00
|
|
|
import argparse
|
2013-10-13 17:17:56 +02:00
|
|
|
import ctypes
|
2013-09-08 14:30:26 +02:00
|
|
|
import os
|
|
|
|
import sys
|
2013-10-12 21:30:34 +02:00
|
|
|
import tempfile
|
2013-10-28 16:34:53 +01:00
|
|
|
import threading
|
|
|
|
import time
|
|
|
|
import webbrowser
|
|
|
|
|
|
|
|
from django.conf import ENVIRONMENT_VARIABLE
|
2015-06-16 10:37:23 +02:00
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
2014-08-16 09:25:18 +02:00
|
|
|
from django.utils.crypto import get_random_string
|
2014-01-31 01:54:41 +01:00
|
|
|
from django.utils.translation import ugettext as _
|
2015-06-16 10:37:23 +02:00
|
|
|
from django.utils.translation import activate, check_for_language, get_language
|
2013-09-08 14:30:26 +02:00
|
|
|
|
2015-01-16 14:18:34 +01:00
|
|
|
DEVELOPMENT_VERSION = 'Development Version'
|
2013-09-08 14:30:26 +02:00
|
|
|
UNIX_VERSION = 'Unix Version'
|
|
|
|
WINDOWS_VERSION = 'Windows Version'
|
|
|
|
WINDOWS_PORTABLE_VERSION = 'Windows Portable Version'
|
|
|
|
|
2013-10-13 17:17:56 +02:00
|
|
|
|
2013-10-12 21:30:34 +02:00
|
|
|
class PortableDirNotWritable(Exception):
|
|
|
|
pass
|
2013-09-08 14:30:26 +02:00
|
|
|
|
2013-10-13 17:17:56 +02:00
|
|
|
|
2013-11-06 17:49:41 +01:00
|
|
|
class PortIsBlockedError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2013-10-28 16:34:53 +01:00
|
|
|
class DatabaseInSettingsError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2015-01-16 14:18:34 +01:00
|
|
|
class UnknownCommand(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class ExceptionArgumentParser(argparse.ArgumentParser):
|
|
|
|
def error(self, message):
|
|
|
|
raise UnknownCommand(message)
|
|
|
|
|
|
|
|
|
2013-09-08 14:30:26 +02:00
|
|
|
def detect_openslides_type():
|
|
|
|
"""
|
2013-10-13 17:17:56 +02:00
|
|
|
Returns the type of this OpenSlides version.
|
2013-09-08 14:30:26 +02:00
|
|
|
"""
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
if os.path.basename(sys.executable).lower() == 'openslides.exe':
|
|
|
|
# Note: sys.executable is the path of the *interpreter*
|
|
|
|
# the portable version embeds python so it *is* the interpreter.
|
|
|
|
# The wrappers generated by pip and co. will spawn the usual
|
|
|
|
# python(w).exe, so there is no danger of mistaking them
|
|
|
|
# for the portable even though they may also be called
|
|
|
|
# openslides.exe
|
|
|
|
openslides_type = WINDOWS_PORTABLE_VERSION
|
|
|
|
else:
|
|
|
|
openslides_type = WINDOWS_VERSION
|
|
|
|
else:
|
|
|
|
openslides_type = UNIX_VERSION
|
|
|
|
return openslides_type
|
|
|
|
|
|
|
|
|
2015-01-16 14:18:34 +01:00
|
|
|
def get_default_settings_path(openslides_type=None):
|
2013-10-28 16:34:53 +01:00
|
|
|
"""
|
|
|
|
Returns the default settings path according to the OpenSlides type.
|
|
|
|
|
|
|
|
The argument 'openslides_type' has to be one of the three types mentioned in
|
|
|
|
openslides.utils.main.
|
|
|
|
"""
|
2015-01-16 14:18:34 +01:00
|
|
|
if openslides_type is None:
|
|
|
|
openslides_type = detect_openslides_type()
|
|
|
|
|
2013-10-28 16:34:53 +01:00
|
|
|
if openslides_type == UNIX_VERSION:
|
2014-08-16 09:25:18 +02:00
|
|
|
parent_directory = os.environ.get(
|
2015-01-16 14:18:34 +01:00
|
|
|
'XDG_CONFIG_HOME', os.path.expanduser('~/.config'))
|
2013-10-28 16:34:53 +01:00
|
|
|
elif openslides_type == WINDOWS_VERSION:
|
|
|
|
parent_directory = get_win32_app_data_path()
|
|
|
|
elif openslides_type == WINDOWS_PORTABLE_VERSION:
|
|
|
|
parent_directory = get_win32_portable_path()
|
|
|
|
else:
|
|
|
|
raise TypeError('%s is not a valid OpenSlides type.' % openslides_type)
|
|
|
|
return os.path.join(parent_directory, 'openslides', 'settings.py')
|
|
|
|
|
|
|
|
|
2015-01-16 14:18:34 +01:00
|
|
|
def get_development_settings_path():
|
|
|
|
"""
|
|
|
|
Returns the path to a local development settings.
|
|
|
|
|
2015-03-06 01:56:41 +01:00
|
|
|
On Unix systems: 'development/var/settings.py'
|
2015-01-16 14:18:34 +01:00
|
|
|
"""
|
2015-03-06 01:56:41 +01:00
|
|
|
return os.path.join('development', 'var', 'settings.py')
|
2015-01-16 14:18:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
def setup_django_settings_module(settings_path=None, development=None):
|
2013-10-28 16:34:53 +01:00
|
|
|
"""
|
|
|
|
Sets the environment variable ENVIRONMENT_VARIABLE, that means
|
|
|
|
'DJANGO_SETTINGS_MODULE', to the given settings.
|
2015-01-16 14:18:34 +01:00
|
|
|
|
|
|
|
If no settings_path is given and the environment variable is already set,
|
|
|
|
then this function does nothing.
|
|
|
|
|
|
|
|
If the argument settings_path is set, then the environment variable is
|
|
|
|
always overwritten.
|
2013-10-28 16:34:53 +01:00
|
|
|
"""
|
2015-01-16 14:18:34 +01:00
|
|
|
if settings_path is None and os.environ.get(ENVIRONMENT_VARIABLE, None):
|
|
|
|
return
|
|
|
|
|
|
|
|
if settings_path is None:
|
|
|
|
if development:
|
|
|
|
settings_path = get_development_settings_path()
|
|
|
|
else:
|
|
|
|
settings_path = get_default_settings_path()
|
|
|
|
|
2013-10-28 16:34:53 +01:00
|
|
|
settings_file = os.path.basename(settings_path)
|
|
|
|
settings_module_name = ".".join(settings_file.split('.')[:-1])
|
|
|
|
if '.' in settings_module_name:
|
|
|
|
raise ImproperlyConfigured("'.' is not an allowed character in the settings-file")
|
|
|
|
|
2015-01-16 14:18:34 +01:00
|
|
|
# Change the python path. Also set the environment variable python path, so
|
|
|
|
# change of the python path also works after a reload
|
|
|
|
settings_module_dir = os.path.abspath(os.path.dirname(settings_path))
|
|
|
|
sys.path.insert(0, settings_module_dir)
|
|
|
|
try:
|
|
|
|
os.environ['PYTHONPATH'] = os.pathsep.join((settings_module_dir, os.environ['PYTHONPATH']))
|
|
|
|
except KeyError:
|
|
|
|
# The environment variable is empty
|
|
|
|
os.environ['PYTHONPATH'] = settings_module_dir
|
2013-10-28 16:34:53 +01:00
|
|
|
|
2015-01-16 14:18:34 +01:00
|
|
|
# Set the environment variable to the settings module
|
|
|
|
os.environ[ENVIRONMENT_VARIABLE] = settings_module_name
|
2013-10-28 16:34:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
def get_default_settings_context(user_data_path=None):
|
|
|
|
"""
|
2014-01-11 15:47:15 +01:00
|
|
|
Returns the default context values for the settings template:
|
|
|
|
'openslides_user_data_path', 'import_function' and 'debug'.
|
2013-10-28 16:34:53 +01:00
|
|
|
|
|
|
|
The argument 'user_data_path' is a given path for user specific data or None.
|
|
|
|
"""
|
|
|
|
# Setup path for user specific data (SQLite3 database, media, search index, ...):
|
|
|
|
# Take it either from command line or get default path
|
2014-01-11 15:47:15 +01:00
|
|
|
default_context = {}
|
2013-10-28 16:34:53 +01:00
|
|
|
if user_data_path:
|
2014-01-11 15:47:15 +01:00
|
|
|
default_context['openslides_user_data_path'] = repr(user_data_path)
|
|
|
|
default_context['import_function'] = ''
|
2013-10-28 16:34:53 +01:00
|
|
|
else:
|
|
|
|
openslides_type = detect_openslides_type()
|
2014-01-11 15:47:15 +01:00
|
|
|
if openslides_type == WINDOWS_PORTABLE_VERSION:
|
2014-05-03 13:39:47 +02:00
|
|
|
default_context['openslides_user_data_path'] = 'get_win32_portable_user_data_path()'
|
|
|
|
default_context['import_function'] = 'from openslides.utils.main import get_win32_portable_user_data_path'
|
2014-01-11 15:47:15 +01:00
|
|
|
else:
|
|
|
|
path = get_default_user_data_path(openslides_type)
|
|
|
|
default_context['openslides_user_data_path'] = repr(os.path.join(path, 'openslides'))
|
|
|
|
default_context['import_function'] = ''
|
2013-10-28 16:34:53 +01:00
|
|
|
default_context['debug'] = 'False'
|
|
|
|
return default_context
|
|
|
|
|
|
|
|
|
2013-10-13 17:17:56 +02:00
|
|
|
def get_default_user_data_path(openslides_type):
|
2013-09-08 14:30:26 +02:00
|
|
|
"""
|
2013-10-13 17:17:56 +02:00
|
|
|
Returns the default path for user specific data according to the OpenSlides
|
|
|
|
type.
|
|
|
|
|
|
|
|
The argument 'openslides_type' has to be one of the three types mentioned
|
|
|
|
in openslides.utils.main.
|
2013-09-08 14:30:26 +02:00
|
|
|
"""
|
2013-10-13 17:17:56 +02:00
|
|
|
if openslides_type == UNIX_VERSION:
|
2014-08-16 09:25:18 +02:00
|
|
|
default_user_data_path = os.environ.get(
|
2015-01-16 14:18:34 +01:00
|
|
|
'XDG_DATA_HOME', os.path.expanduser('~/.local/share'))
|
2013-10-13 17:17:56 +02:00
|
|
|
elif openslides_type == WINDOWS_VERSION:
|
|
|
|
default_user_data_path = get_win32_app_data_path()
|
|
|
|
elif openslides_type == WINDOWS_PORTABLE_VERSION:
|
|
|
|
default_user_data_path = get_win32_portable_path()
|
|
|
|
else:
|
|
|
|
raise TypeError('%s is not a valid OpenSlides type.' % openslides_type)
|
|
|
|
return default_user_data_path
|
2013-09-08 14:30:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
def get_win32_app_data_path():
|
|
|
|
"""
|
|
|
|
Returns the path to Windows' AppData directory.
|
|
|
|
"""
|
|
|
|
shell32 = ctypes.WinDLL("shell32.dll")
|
|
|
|
SHGetFolderPath = shell32.SHGetFolderPathW
|
|
|
|
SHGetFolderPath.argtypes = (
|
|
|
|
ctypes.c_void_p, ctypes.c_int, ctypes.c_void_p, ctypes.c_uint32,
|
|
|
|
ctypes.c_wchar_p)
|
|
|
|
SHGetFolderPath.restype = ctypes.c_uint32
|
|
|
|
|
|
|
|
CSIDL_LOCAL_APPDATA = 0x001c
|
|
|
|
MAX_PATH = 260
|
|
|
|
|
|
|
|
buf = ctypes.create_unicode_buffer(MAX_PATH)
|
|
|
|
res = SHGetFolderPath(0, CSIDL_LOCAL_APPDATA, 0, 0, buf)
|
|
|
|
if res != 0:
|
2014-08-16 09:25:18 +02:00
|
|
|
# TODO: Write other exception
|
2013-10-13 17:17:56 +02:00
|
|
|
raise Exception("Could not determine Windows' APPDATA path")
|
2013-09-08 14:30:26 +02:00
|
|
|
|
|
|
|
return buf.value
|
|
|
|
|
|
|
|
|
|
|
|
def get_win32_portable_path():
|
|
|
|
"""
|
|
|
|
Returns the path to the Windows portable version.
|
|
|
|
"""
|
|
|
|
# NOTE: sys.executable will be the path to openslides.exe
|
|
|
|
# since it is essentially a small wrapper that embeds the
|
|
|
|
# python interpreter
|
2014-08-16 09:25:18 +02:00
|
|
|
portable_path = os.path.dirname(os.path.abspath(sys.executable))
|
2013-09-08 14:30:26 +02:00
|
|
|
try:
|
|
|
|
fd, test_file = tempfile.mkstemp(dir=portable_path)
|
|
|
|
except OSError:
|
2013-10-12 21:30:34 +02:00
|
|
|
raise PortableDirNotWritable(
|
|
|
|
'Portable directory is not writeable. '
|
2013-10-13 17:17:56 +02:00
|
|
|
'Please choose another directory for settings and data files.')
|
2013-10-12 21:30:34 +02:00
|
|
|
else:
|
2013-09-08 14:30:26 +02:00
|
|
|
os.close(fd)
|
|
|
|
os.unlink(test_file)
|
|
|
|
return portable_path
|
|
|
|
|
|
|
|
|
2014-05-03 13:39:47 +02:00
|
|
|
def get_win32_portable_user_data_path():
|
|
|
|
"""
|
|
|
|
Returns the user data path to the Windows portable version.
|
|
|
|
"""
|
|
|
|
return os.path.join(get_win32_portable_path(), 'openslides')
|
|
|
|
|
|
|
|
|
2015-01-16 14:18:34 +01:00
|
|
|
def write_settings(settings_path=None, template=None, **context):
|
2013-10-28 16:34:53 +01:00
|
|
|
"""
|
|
|
|
Creates the settings file at the given path using the given values for the
|
|
|
|
file template.
|
2015-01-16 14:18:34 +01:00
|
|
|
|
|
|
|
Retuns the path to the created settings.
|
2013-10-28 16:34:53 +01:00
|
|
|
"""
|
2015-01-16 14:18:34 +01:00
|
|
|
if settings_path is None:
|
|
|
|
settings_path = get_default_settings_path()
|
|
|
|
|
2013-10-28 16:34:53 +01:00
|
|
|
if template is None:
|
|
|
|
with open(os.path.join(os.path.dirname(__file__), 'settings.py.tpl')) as template_file:
|
|
|
|
template = template_file.read()
|
2014-08-16 09:25:18 +02:00
|
|
|
|
|
|
|
# Create a random SECRET_KEY to put it in the settings.
|
|
|
|
# from django.core.management.commands.startproject
|
|
|
|
chars = 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)'
|
|
|
|
context.setdefault('secret_key', get_random_string(50, chars))
|
2015-01-16 14:18:34 +01:00
|
|
|
for key, value in get_default_settings_context().items():
|
|
|
|
context.setdefault(key, value)
|
|
|
|
|
2013-10-28 16:34:53 +01:00
|
|
|
content = template % context
|
|
|
|
settings_module = os.path.realpath(os.path.dirname(settings_path))
|
|
|
|
if not os.path.exists(settings_module):
|
|
|
|
os.makedirs(settings_module)
|
|
|
|
with open(settings_path, 'w') as settings_file:
|
|
|
|
settings_file.write(content)
|
2015-01-16 14:18:34 +01:00
|
|
|
return os.path.realpath(settings_path)
|
2013-10-28 16:34:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
def start_browser(browser_url):
|
|
|
|
"""
|
|
|
|
Launches the default web browser at the given url and opens the
|
|
|
|
webinterface.
|
|
|
|
"""
|
|
|
|
browser = webbrowser.get()
|
|
|
|
|
|
|
|
def function():
|
|
|
|
# TODO: Use a nonblocking sleep event here. Tornado has such features.
|
|
|
|
time.sleep(1)
|
|
|
|
browser.open(browser_url)
|
|
|
|
|
|
|
|
thread = threading.Thread(target=function)
|
|
|
|
thread.start()
|
|
|
|
|
|
|
|
|
|
|
|
def get_database_path_from_settings():
|
|
|
|
"""
|
|
|
|
Retrieves the database path out of the settings file. Returns None,
|
|
|
|
if it is not a SQLite3 database.
|
2015-01-16 14:18:34 +01:00
|
|
|
|
|
|
|
Needed for the backupdb command.
|
2013-10-28 16:34:53 +01:00
|
|
|
"""
|
|
|
|
from django.conf import settings as django_settings
|
|
|
|
from django.db import DEFAULT_DB_ALIAS
|
|
|
|
|
|
|
|
db_settings = django_settings.DATABASES
|
|
|
|
default = db_settings.get(DEFAULT_DB_ALIAS)
|
|
|
|
if not default:
|
|
|
|
raise DatabaseInSettingsError("Default databases is not configured")
|
|
|
|
database_path = default.get('NAME')
|
|
|
|
if not database_path:
|
2014-01-11 08:50:52 +01:00
|
|
|
raise DatabaseInSettingsError('No path or name specified for default database.')
|
2013-10-28 16:34:53 +01:00
|
|
|
if default.get('ENGINE') != 'django.db.backends.sqlite3':
|
|
|
|
database_path = None
|
|
|
|
return database_path
|
2014-01-31 01:54:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
def translate_customizable_strings(language_code):
|
|
|
|
"""
|
|
|
|
Translates all translatable config values and saves them into database.
|
|
|
|
"""
|
|
|
|
if check_for_language(language_code):
|
2015-06-29 12:08:15 +02:00
|
|
|
from openslides.core.config import config
|
2014-01-31 01:54:41 +01:00
|
|
|
current_language = get_language()
|
|
|
|
activate(language_code)
|
|
|
|
for name in config.get_all_translatable():
|
|
|
|
config[name] = _(config[name])
|
|
|
|
activate(current_language)
|
2015-01-16 14:18:34 +01:00
|
|
|
|
|
|
|
|
|
|
|
def is_development():
|
|
|
|
"""
|
|
|
|
Returns True if the command is called for development.
|
|
|
|
|
|
|
|
This is the case if manage.py is used, or when the --development flag is set.
|
|
|
|
"""
|
|
|
|
return True if '--development' in sys.argv or 'manage.py' in sys.argv[0] else False
|