Fixes on phplist saas service0
This commit is contained in:
parent
8cb36619e3
commit
47098ae398
|
@ -98,7 +98,7 @@ close_bills.url_name = 'close'
|
||||||
def send_bills(modeladmin, request, queryset):
|
def send_bills(modeladmin, request, queryset):
|
||||||
for bill in queryset:
|
for bill in queryset:
|
||||||
if not validate_contact(request, bill):
|
if not validate_contact(request, bill):
|
||||||
return
|
return False
|
||||||
num = 0
|
num = 0
|
||||||
for bill in queryset:
|
for bill in queryset:
|
||||||
bill.send()
|
bill.send()
|
||||||
|
@ -131,10 +131,13 @@ download_bills.url_name = 'download'
|
||||||
|
|
||||||
|
|
||||||
def close_send_download_bills(modeladmin, request, queryset):
|
def close_send_download_bills(modeladmin, request, queryset):
|
||||||
close_bills(modeladmin, request, queryset)
|
response = close_bills(modeladmin, request, queryset)
|
||||||
if request.POST.get('post') == 'generic_confirmation':
|
if request.POST.get('post') == 'generic_confirmation':
|
||||||
send_bills(modeladmin, request, queryset)
|
response = send_bills(modeladmin, request, queryset)
|
||||||
|
if response is False:
|
||||||
|
return
|
||||||
return download_bills(modeladmin, request, queryset)
|
return download_bills(modeladmin, request, queryset)
|
||||||
|
return response
|
||||||
close_send_download_bills.verbose_name = _("C.S.D.")
|
close_send_download_bills.verbose_name = _("C.S.D.")
|
||||||
close_send_download_bills.url_name = 'close-send-download'
|
close_send_download_bills.url_name = 'close-send-download'
|
||||||
close_send_download_bills.help_text = _("Close, send and download bills in one shot.")
|
close_send_download_bills.help_text = _("Close, send and download bills in one shot.")
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
import json
|
import inspect
|
||||||
import logging
|
import logging
|
||||||
import socket
|
import socket
|
||||||
import sys
|
import sys
|
||||||
import select
|
import select
|
||||||
|
import textwrap
|
||||||
|
|
||||||
from celery.datastructures import ExceptionInfo
|
from celery.datastructures import ExceptionInfo
|
||||||
|
|
||||||
|
@ -147,11 +148,14 @@ def SSH(*args, **kwargs):
|
||||||
|
|
||||||
|
|
||||||
def Python(backend, log, server, cmds, async=False):
|
def Python(backend, log, server, cmds, async=False):
|
||||||
script = [ str(cmd.func.__name__) + str(cmd.args) for cmd in cmds ]
|
script = ''
|
||||||
script = json.dumps(script, indent=4).replace('"', '')
|
for cmd in cmds:
|
||||||
|
script += '# %s\n' % (str(cmd.func.__name__) + str(cmd.args))
|
||||||
|
script += textwrap.dedent(''.join(inspect.getsourcelines(cmd.func)[0]))
|
||||||
log.state = log.STARTED
|
log.state = log.STARTED
|
||||||
log.script = '\n'.join((log.script, script))
|
log.script = '\n'.join((log.script, script))
|
||||||
log.save(update_fields=('script', 'state', 'updated_at'))
|
log.save(update_fields=('script', 'state', 'updated_at'))
|
||||||
|
stdout = ''
|
||||||
try:
|
try:
|
||||||
for cmd in cmds:
|
for cmd in cmds:
|
||||||
with CaptureStdout() as stdout:
|
with CaptureStdout() as stdout:
|
||||||
|
@ -163,6 +167,7 @@ def Python(backend, log, server, cmds, async=False):
|
||||||
except:
|
except:
|
||||||
log.exit_code = 1
|
log.exit_code = 1
|
||||||
log.state = log.FAILURE
|
log.state = log.FAILURE
|
||||||
|
log.stdout = '\n'.join(stdout)
|
||||||
log.traceback = ExceptionInfo(sys.exc_info()).traceback
|
log.traceback = ExceptionInfo(sys.exc_info()).traceback
|
||||||
logger.error('Exception while executing %s on %s' % (backend, server))
|
logger.error('Exception while executing %s on %s' % (backend, server))
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -77,7 +77,9 @@ class OrderAdmin(AccountAdminMixin, ExtendedModelAdmin):
|
||||||
red = False
|
red = False
|
||||||
human = escape(naturaldate(billed_until))
|
human = escape(naturaldate(billed_until))
|
||||||
if billed_until:
|
if billed_until:
|
||||||
if order.service.billing_period == order.service.NEVER:
|
if order.cancelled_on and order.cancelled_on <= billed_until:
|
||||||
|
pass
|
||||||
|
elif order.service.billing_period == order.service.NEVER:
|
||||||
human = _("Forever")
|
human = _("Forever")
|
||||||
elif order.service.payment_style == order.service.POSTPAY:
|
elif order.service.payment_style == order.service.POSTPAY:
|
||||||
boundary = order.service.handler.get_billing_point(order)
|
boundary = order.service.handler.get_billing_point(order)
|
||||||
|
|
|
@ -5,6 +5,8 @@ from django.utils.translation import ugettext_lazy as _
|
||||||
|
|
||||||
from orchestra.contrib.orchestration import ServiceController
|
from orchestra.contrib.orchestration import ServiceController
|
||||||
|
|
||||||
|
from .. import settings
|
||||||
|
|
||||||
|
|
||||||
class PhpListSaaSBackend(ServiceController):
|
class PhpListSaaSBackend(ServiceController):
|
||||||
"""
|
"""
|
||||||
|
@ -21,8 +23,9 @@ class PhpListSaaSBackend(ServiceController):
|
||||||
serialize = True
|
serialize = True
|
||||||
|
|
||||||
def _save(self, saas, server):
|
def _save(self, saas, server):
|
||||||
admin_link = 'http://%s/admin/' % saas.get_site_domain()
|
admin_link = 'https://%s/admin/' % saas.get_site_domain()
|
||||||
admin_content = requests.get(admin_link).content.decode('utf8')
|
print('admin_link:', admin_link)
|
||||||
|
admin_content = requests.get(admin_link, verify=settings.SAAS_PHPLIST_VERIFY_SSL).content.decode('utf8')
|
||||||
if admin_content.startswith('Cannot connect to Database'):
|
if admin_content.startswith('Cannot connect to Database'):
|
||||||
raise RuntimeError("Database is not yet configured")
|
raise RuntimeError("Database is not yet configured")
|
||||||
install = re.search(r'([^"]+firstinstall[^"]+)', admin_content)
|
install = re.search(r'([^"]+firstinstall[^"]+)', admin_content)
|
||||||
|
@ -37,7 +40,7 @@ class PhpListSaaSBackend(ServiceController):
|
||||||
'adminemail': saas.account.username,
|
'adminemail': saas.account.username,
|
||||||
'adminpassword': saas.password,
|
'adminpassword': saas.password,
|
||||||
}
|
}
|
||||||
response = requests.post(install_link, data=post)
|
response = requests.post(install_link, data=post, verify=settings.SAAS_PHPLIST_VERIFY_SSL)
|
||||||
print(response.content.decode('utf8'))
|
print(response.content.decode('utf8'))
|
||||||
if response.status_code != 200:
|
if response.status_code != 200:
|
||||||
raise RuntimeError("Bad status code %i" % response.status_code)
|
raise RuntimeError("Bad status code %i" % response.status_code)
|
||||||
|
|
|
@ -63,6 +63,11 @@ class PHPListService(SoftwareService):
|
||||||
super(PHPListService, self).validate()
|
super(PHPListService, self).validate()
|
||||||
create = not self.instance.pk
|
create = not self.instance.pk
|
||||||
if create:
|
if create:
|
||||||
|
db_user = self.get_db_user()
|
||||||
|
try:
|
||||||
|
DatabaseUser.objects.get(username=db_user)
|
||||||
|
except DatabaseUser.DoesNotExist:
|
||||||
|
raise ValidationError(_("Global database user for PHPList '%s' does not exists."))
|
||||||
account = self.get_account()
|
account = self.get_account()
|
||||||
db = Database(name=self.get_db_name(), account=account)
|
db = Database(name=self.get_db_name(), account=account)
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -80,13 +80,18 @@ SAAS_PHPLIST_DB_NAME = Setting('SAAS_PHPLIST_DB_NAME',
|
||||||
'phplist_mu',
|
'phplist_mu',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
SAAS_PHPLIST_BASE_DOMAIN = Setting('SAAS_PHPLIST_BASE_DOMAIN',
|
SAAS_PHPLIST_BASE_DOMAIN = Setting('SAAS_PHPLIST_BASE_DOMAIN',
|
||||||
'lists.{}'.format(ORCHESTRA_BASE_DOMAIN),
|
'lists.{}'.format(ORCHESTRA_BASE_DOMAIN),
|
||||||
help_text="Uses <tt>ORCHESTRA_BASE_DOMAIN</tt> by default.",
|
help_text="Uses <tt>ORCHESTRA_BASE_DOMAIN</tt> by default.",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
SAAS_PHPLIST_VERIFY_SSL = Setting('SAAS_PHPLIST_VERIFY_SSL',
|
||||||
|
True,
|
||||||
|
help_text="Verify SSL certificate on the HTTP requests performed by the backend.",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
SAAS_SEAFILE_DOMAIN = Setting('SAAS_SEAFILE_DOMAIN',
|
SAAS_SEAFILE_DOMAIN = Setting('SAAS_SEAFILE_DOMAIN',
|
||||||
'seafile.{}'.format(ORCHESTRA_BASE_DOMAIN),
|
'seafile.{}'.format(ORCHESTRA_BASE_DOMAIN),
|
||||||
help_text="Uses <tt>ORCHESTRA_BASE_DOMAIN</tt> by default.",
|
help_text="Uses <tt>ORCHESTRA_BASE_DOMAIN</tt> by default.",
|
||||||
|
|
Loading…
Reference in New Issue