django-orchestra/orchestra/contrib/saas/backends/phplist.py

77 lines
3.1 KiB
Python
Raw Normal View History

import hashlib
2015-03-23 15:36:51 +00:00
import re
import textwrap
2015-03-23 15:36:51 +00:00
import requests
from django.utils.translation import ugettext_lazy as _
2015-04-05 10:46:24 +00:00
from orchestra.contrib.orchestration import ServiceController
from orchestra.utils.sys import sshrun
2015-03-23 15:36:51 +00:00
2015-07-09 13:04:26 +00:00
from .. import settings
2015-03-23 15:36:51 +00:00
class PhpListSaaSBackend(ServiceController):
2015-04-24 11:39:20 +00:00
"""
Creates a new phplist instance on a phpList multisite installation.
The site is created by means of creating a new database per phpList site, but all sites share the same code.
<tt>// config/config.php
$site = array_shift((explode(".",$_SERVER['HTTP_HOST'])));
$database_name = "phplist_mu_{$site}";</tt>
"""
2015-03-23 15:36:51 +00:00
verbose_name = _("phpList SaaS")
model = 'saas.SaaS'
default_route_match = "saas.service == 'phplist'"
serialize = True
2015-03-23 15:36:51 +00:00
2015-03-29 16:10:07 +00:00
def _save(self, saas, server):
2015-07-09 13:04:26 +00:00
admin_link = 'https://%s/admin/' % saas.get_site_domain()
print('admin_link:', admin_link)
admin_content = requests.get(admin_link, verify=settings.SAAS_PHPLIST_VERIFY_SSL).content.decode('utf8')
2015-03-23 15:36:51 +00:00
if admin_content.startswith('Cannot connect to Database'):
raise RuntimeError("Database is not yet configured")
install = re.search(r'([^"]+firstinstall[^"]+)', admin_content)
if install:
2015-03-27 19:50:54 +00:00
if not hasattr(saas, 'password'):
2015-03-23 15:36:51 +00:00
raise RuntimeError("Password is missing")
2015-03-29 16:10:07 +00:00
install_path = install.groups()[0]
install_link = admin_link + install_path[1:]
2015-03-23 15:36:51 +00:00
post = {
'adminname': saas.name,
2015-03-23 15:36:51 +00:00
'orgname': saas.account.username,
'adminemail': saas.account.username,
'adminpassword': saas.password,
}
2015-07-09 13:04:26 +00:00
response = requests.post(install_link, data=post, verify=settings.SAAS_PHPLIST_VERIFY_SSL)
2015-04-20 14:23:10 +00:00
print(response.content.decode('utf8'))
2015-03-23 15:36:51 +00:00
if response.status_code != 200:
raise RuntimeError("Bad status code %i" % response.status_code)
2015-03-29 16:10:07 +00:00
else:
md5_password = hashlib.md5()
md5_password.update(saas.password.encode('ascii'))
context = {
'name': saas.name,
'site_name': saas.name,
'db_user': settings.SAAS_PHPLIST_DB_USER,
'db_pass': settings.SAAS_PHPLIST_DB_PASS,
'db_name': settings.SAAS_PHPLIST_DB_NAME,
'db_host': settings.SAAS_PHPLIST_DB_HOST,
'digest': md5_password.hexdigest(),
}
context['db_name'] = context['db_name'] % context
cmd = textwrap.dedent("""\
mysql \\
--host=%(db_host)s \\
--user=%(db_user)s \\
--password=%(db_pass)s \\
--execute='UPDATE phplist_admin SET password="%(digest)s" where ID=1; \\
UPDATE phplist_user_user SET password="%(digest)s" where ID=1;' \\
%(db_name)s""") % context
print(cmd)
sshrun(server.get_address(), cmd)
2015-03-23 15:36:51 +00:00
def save(self, saas):
2015-03-29 16:10:07 +00:00
if hasattr(saas, 'password'):
self.append(self._save, saas)