2015-03-23 15:36:51 +00:00
|
|
|
import json
|
|
|
|
import re
|
|
|
|
|
|
|
|
import requests
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
|
|
from orchestra.apps.orchestration import ServiceController
|
|
|
|
|
|
|
|
from .. import settings
|
|
|
|
|
|
|
|
|
|
|
|
class PhpListSaaSBackend(ServiceController):
|
|
|
|
verbose_name = _("phpList SaaS")
|
|
|
|
model = 'saas.SaaS'
|
|
|
|
default_route_match = "saas.service == 'phplist'"
|
|
|
|
block = True
|
|
|
|
|
2015-03-29 16:10:07 +00:00
|
|
|
def _save(self, saas, server):
|
2015-03-23 15:36:51 +00:00
|
|
|
base_domain = settings.SAAS_PHPLIST_BASE_DOMAIN
|
2015-03-25 15:45:04 +00:00
|
|
|
admin_link = 'http://%s/admin/' % saas.get_site_domain()
|
2015-03-23 15:36:51 +00:00
|
|
|
admin_content = requests.get(admin_link).content
|
|
|
|
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 = {
|
2015-03-25 15:45:04 +00:00
|
|
|
'adminname': saas.name,
|
2015-03-23 15:36:51 +00:00
|
|
|
'orgname': saas.account.username,
|
|
|
|
'adminemail': saas.account.username,
|
|
|
|
'adminpassword': saas.password,
|
|
|
|
}
|
|
|
|
response = requests.post(install_link, data=post)
|
|
|
|
print response.content
|
|
|
|
if response.status_code != 200:
|
|
|
|
raise RuntimeError("Bad status code %i" % response.status_code)
|
2015-03-29 16:10:07 +00:00
|
|
|
else:
|
|
|
|
raise NotImplementedError("Change password not implemented")
|
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)
|