2012-04-25 22:29:19 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
openslides.main
|
|
|
|
~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Main script to start and set up OpenSlides.
|
|
|
|
|
|
|
|
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
|
|
"""
|
|
|
|
|
2012-07-10 14:00:51 +02:00
|
|
|
# for python 2.5 support
|
2012-04-15 16:04:08 +02:00
|
|
|
from __future__ import with_statement
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import optparse
|
|
|
|
import socket
|
|
|
|
import time
|
|
|
|
import threading
|
2012-08-04 20:59:27 +02:00
|
|
|
import base64
|
2012-04-15 16:04:08 +02:00
|
|
|
import webbrowser
|
|
|
|
|
|
|
|
import django.conf
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
|
2012-08-23 23:34:30 +02:00
|
|
|
CONFIG_TEMPLATE = """#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2012-08-24 14:23:12 +02:00
|
|
|
from openslides.openslides_global_settings import *
|
2012-04-15 16:04:08 +02:00
|
|
|
|
2012-08-05 09:52:00 +02:00
|
|
|
# Use 'DEBUG = True' to get more details for server errors
|
|
|
|
# (Default for relaeses: 'False')
|
2012-08-04 20:59:27 +02:00
|
|
|
DEBUG = False
|
|
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
|
|
|
|
DBPATH = %(dbpath)r
|
|
|
|
|
|
|
|
DATABASES = {
|
|
|
|
'default': {
|
|
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
|
|
'NAME': DBPATH,
|
|
|
|
'USER': '',
|
|
|
|
'PASSWORD': '',
|
|
|
|
'HOST': '',
|
|
|
|
'PORT': '',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Set timezone
|
|
|
|
TIME_ZONE = 'Europe/Berlin'
|
|
|
|
|
|
|
|
# Make this unique, and don't share it with anybody.
|
|
|
|
SECRET_KEY = %(default_key)r
|
|
|
|
|
|
|
|
# Add OpenSlides plugins to this list (see example entry in comment)
|
|
|
|
INSTALLED_PLUGINS = (
|
|
|
|
# 'pluginname',
|
|
|
|
)
|
|
|
|
|
|
|
|
INSTALLED_APPS += INSTALLED_PLUGINS
|
|
|
|
"""
|
|
|
|
|
|
|
|
KEY_LENGTH = 30
|
|
|
|
|
2012-08-14 14:19:59 +02:00
|
|
|
|
2012-08-23 23:34:30 +02:00
|
|
|
_fs_encoding = sys.getfilesystemencoding() or sys.getdefaultencoding()
|
|
|
|
def _fs2unicode(s):
|
|
|
|
if isinstance(s, unicode):
|
|
|
|
return s
|
|
|
|
return s.decode(_fs_encoding)
|
|
|
|
|
|
|
|
|
2012-08-28 19:07:40 +02:00
|
|
|
def main(argv=None, opt_defaults=None):
|
2012-04-15 16:04:08 +02:00
|
|
|
if argv is None:
|
|
|
|
argv = sys.argv[1:]
|
|
|
|
|
2012-08-04 20:59:27 +02:00
|
|
|
parser = optparse.OptionParser(
|
|
|
|
description="Run openslides using django's builtin webserver")
|
|
|
|
parser.add_option("-a", "--address", help="IP Address to listen on")
|
|
|
|
parser.add_option("-p", "--port", type="int", help="Port to listen on")
|
2012-08-14 14:19:59 +02:00
|
|
|
parser.add_option(
|
|
|
|
"--syncdb", action="store_true",
|
2012-08-04 20:59:27 +02:00
|
|
|
help="Update/create database before starting the server")
|
2012-08-14 14:19:59 +02:00
|
|
|
parser.add_option(
|
|
|
|
"--reset-admin", action="store_true",
|
2012-08-04 20:59:27 +02:00
|
|
|
help="Make sure the user 'admin' exists and uses 'admin' as password")
|
2012-08-14 14:19:59 +02:00
|
|
|
parser.add_option("-s", "--settings", help="Path to the setting.")
|
|
|
|
parser.add_option(
|
|
|
|
"--no-reload", action="store_true", help="Do not reload the development server")
|
2012-04-15 16:04:08 +02:00
|
|
|
|
2012-08-27 21:48:46 +02:00
|
|
|
if not opt_defaults is None:
|
|
|
|
parser.set_defaults(**opt_defaults)
|
|
|
|
|
2012-04-15 16:04:08 +02:00
|
|
|
opts, args = parser.parse_args(argv)
|
2012-08-14 14:19:59 +02:00
|
|
|
if args:
|
|
|
|
sys.stderr.write("This command does not take arguments!\n\n")
|
|
|
|
parser.print_help()
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
# Find the path to the settings
|
|
|
|
settings = opts.settings or \
|
2012-08-24 14:23:12 +02:00
|
|
|
os.path.join(os.path.expanduser('~'),'.openslides','openslides_personal_settings.py')
|
2012-08-14 14:19:59 +02:00
|
|
|
|
|
|
|
# Create settings if necessary
|
|
|
|
if not os.path.exists(settings):
|
|
|
|
create_settings(settings)
|
2012-04-15 16:04:08 +02:00
|
|
|
|
2012-08-14 14:19:59 +02:00
|
|
|
# Set the django environment to the settings
|
|
|
|
setup_django_environment(settings)
|
2012-08-04 20:59:27 +02:00
|
|
|
|
2012-08-14 14:19:59 +02:00
|
|
|
# Find url to openslides
|
2012-05-31 00:27:47 +02:00
|
|
|
addr, port = detect_listen_opts(opts.address, opts.port)
|
|
|
|
if port == 80:
|
2012-08-14 14:19:59 +02:00
|
|
|
url = "http://%s" % addr
|
2012-05-31 00:27:47 +02:00
|
|
|
else:
|
|
|
|
url = "http://%s:%d" % (addr, port)
|
|
|
|
|
2012-08-14 14:19:59 +02:00
|
|
|
# Create Database if necessary
|
|
|
|
if not database_exists() or opts.syncdb:
|
|
|
|
run_syncdb()
|
|
|
|
set_system_url(url)
|
|
|
|
create_or_reset_admin_user()
|
|
|
|
|
|
|
|
# Reset Admin
|
|
|
|
elif opts.reset_admin:
|
|
|
|
create_or_reset_admin_user()
|
|
|
|
|
|
|
|
# Start OpenSlides
|
|
|
|
if opts.no_reload:
|
|
|
|
extra_args = ['--noreload']
|
|
|
|
else:
|
|
|
|
extra_args = []
|
|
|
|
start_openslides(addr, port, start_browser_url=url, extra_args=extra_args)
|
2012-04-15 16:04:08 +02:00
|
|
|
|
|
|
|
|
2012-08-14 14:19:59 +02:00
|
|
|
def create_settings(settings):
|
|
|
|
path_to_dir = os.path.dirname(settings)
|
2012-04-15 16:04:08 +02:00
|
|
|
|
2012-08-14 14:19:59 +02:00
|
|
|
setting_content = CONFIG_TEMPLATE % dict(
|
|
|
|
default_key=base64.b64encode(os.urandom(KEY_LENGTH)),
|
2012-08-23 23:34:30 +02:00
|
|
|
dbpath=_fs2unicode((os.path.join(path_to_dir, 'database.db'))))
|
2012-08-14 14:19:59 +02:00
|
|
|
|
|
|
|
if not os.path.exists(path_to_dir):
|
|
|
|
os.makedirs(path_to_dir)
|
2012-04-15 16:04:08 +02:00
|
|
|
|
2012-08-14 14:19:59 +02:00
|
|
|
with open(settings, 'w') as settings_file:
|
|
|
|
settings_file.write(setting_content)
|
2012-08-04 20:59:27 +02:00
|
|
|
|
|
|
|
|
2012-08-14 14:19:59 +02:00
|
|
|
def setup_django_environment(settings):
|
|
|
|
sys.path.append(os.path.dirname(settings))
|
|
|
|
setting_module = os.path.basename(settings)[:-3]
|
|
|
|
os.environ[django.conf.ENVIRONMENT_VARIABLE] = setting_module
|
2012-04-15 16:04:08 +02:00
|
|
|
|
2012-07-10 14:00:51 +02:00
|
|
|
|
2012-04-15 16:04:08 +02:00
|
|
|
def detect_listen_opts(address, port):
|
|
|
|
if address is None:
|
2012-04-27 22:54:20 +02:00
|
|
|
try:
|
|
|
|
address = socket.gethostbyname(socket.gethostname())
|
|
|
|
except socket.error:
|
|
|
|
address = "127.0.0.1"
|
2012-04-15 16:04:08 +02:00
|
|
|
|
|
|
|
if port is None:
|
|
|
|
# test if we can use port 80
|
|
|
|
s = socket.socket()
|
|
|
|
port = 80
|
|
|
|
try:
|
|
|
|
s.bind((address, port))
|
|
|
|
s.listen(-1)
|
|
|
|
except socket.error:
|
|
|
|
port = 8000
|
|
|
|
finally:
|
|
|
|
s.close()
|
|
|
|
|
|
|
|
return address, port
|
|
|
|
|
2012-07-10 14:00:51 +02:00
|
|
|
|
2012-08-14 14:19:59 +02:00
|
|
|
def database_exists():
|
|
|
|
"""Detect if database exists"""
|
2012-04-27 01:09:12 +02:00
|
|
|
# can't be imported in global scope as they already require
|
|
|
|
# the settings module during import
|
|
|
|
from django.db import DatabaseError
|
2012-08-14 14:19:59 +02:00
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
|
|
|
from openslides.participant.models import User
|
2012-04-25 19:37:51 +02:00
|
|
|
|
|
|
|
try:
|
|
|
|
User.objects.count()
|
|
|
|
except DatabaseError:
|
2012-08-05 09:52:00 +02:00
|
|
|
return False
|
2012-08-14 14:19:59 +02:00
|
|
|
except ImproperlyConfigured:
|
|
|
|
print "Your settings file seems broken"
|
|
|
|
sys.exit(0)
|
2012-08-05 09:52:00 +02:00
|
|
|
else:
|
2012-04-25 19:37:51 +02:00
|
|
|
return True
|
|
|
|
|
2012-07-10 14:00:51 +02:00
|
|
|
|
2012-08-14 14:19:59 +02:00
|
|
|
def run_syncdb():
|
|
|
|
# now initialize the database
|
|
|
|
argv = ["", "syncdb", "--noinput"]
|
|
|
|
execute_from_command_line(argv)
|
2012-04-15 16:04:08 +02:00
|
|
|
|
2012-07-10 14:00:51 +02:00
|
|
|
|
2012-05-31 00:27:47 +02:00
|
|
|
def set_system_url(url):
|
|
|
|
# can't be imported in global scope as it already requires
|
|
|
|
# the settings module during import
|
|
|
|
from openslides.config.models import config
|
|
|
|
|
|
|
|
key = "participant_pdf_system_url"
|
2012-07-07 14:48:21 +02:00
|
|
|
if key in config:
|
|
|
|
return
|
2012-05-31 00:27:47 +02:00
|
|
|
config[key] = url
|
|
|
|
|
2012-04-15 16:04:08 +02:00
|
|
|
|
2012-08-14 14:19:59 +02:00
|
|
|
def create_or_reset_admin_user():
|
|
|
|
# can't be imported in global scope as it already requires
|
|
|
|
# the settings module during import
|
|
|
|
from openslides.participant.models import User
|
|
|
|
try:
|
|
|
|
admin = User.objects.get(username="admin")
|
|
|
|
print("Password for user admin was reset to 'admin'")
|
|
|
|
except User.DoesNotExist:
|
|
|
|
admin = User()
|
|
|
|
admin.username = 'admin'
|
|
|
|
admin.last_name = 'Admin User'
|
|
|
|
print("Created default admin user")
|
|
|
|
|
|
|
|
admin.is_superuser = True
|
|
|
|
admin.default_password = 'admin'
|
|
|
|
admin.set_password(admin.default_password)
|
|
|
|
admin.save()
|
|
|
|
|
|
|
|
|
|
|
|
def start_openslides(addr, port, start_browser_url=None, extra_args=[]):
|
|
|
|
argv = ["", "runserver", '--noreload'] + extra_args
|
|
|
|
|
|
|
|
argv.append("%s:%d" % (addr, port))
|
|
|
|
|
|
|
|
if start_browser_url:
|
|
|
|
start_browser(start_browser_url)
|
|
|
|
execute_from_command_line(argv)
|
|
|
|
|
|
|
|
|
|
|
|
def start_browser(url):
|
|
|
|
browser = webbrowser.get()
|
|
|
|
|
|
|
|
def f():
|
|
|
|
time.sleep(1)
|
|
|
|
browser.open(url)
|
|
|
|
|
|
|
|
t = threading.Thread(target=f)
|
|
|
|
t.start()
|
|
|
|
|
2012-08-27 21:48:46 +02:00
|
|
|
def win32_portable_main(argv=None):
|
|
|
|
"""special entry point for the win32 portable version"""
|
|
|
|
import tempfile
|
|
|
|
|
|
|
|
# NOTE: sys.executable will be the path to openslides.exe
|
|
|
|
# since it is essentially a small wrapper that embeds the
|
|
|
|
# python interpreter
|
|
|
|
portable_dir = os.path.dirname(os.path.abspath(sys.executable))
|
|
|
|
try:
|
2012-08-28 19:07:40 +02:00
|
|
|
fd, test_file = tempfile.mkstemp(dir=portable_dir)
|
2012-08-27 21:48:46 +02:00
|
|
|
except OSError:
|
|
|
|
portable_dir_writeable = False
|
|
|
|
else:
|
|
|
|
portable_dir_writeable = True
|
|
|
|
os.close(fd)
|
|
|
|
os.unlink(test_file)
|
|
|
|
|
|
|
|
if portable_dir_writeable:
|
|
|
|
default_settings = os.path.join(portable_dir, "openslides",
|
|
|
|
"openslides_personal_settings.py")
|
|
|
|
else:
|
|
|
|
import ctypes
|
|
|
|
|
|
|
|
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:
|
|
|
|
raise Exception("Could not deterime APPDATA path")
|
|
|
|
default_settings = os.path.join(buf.value, "openslides",
|
|
|
|
"openslides_personal_settings.py")
|
|
|
|
|
2012-08-28 19:07:40 +02:00
|
|
|
main(argv, opt_defaults={ "settings": default_settings })
|
2012-08-27 21:48:46 +02:00
|
|
|
|
2012-08-14 14:19:59 +02:00
|
|
|
|
2012-04-15 16:04:08 +02:00
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|