32 lines
1.0 KiB
Python
32 lines
1.0 KiB
Python
import os
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from orchestra.apps.orchestration import ServiceController
|
|
|
|
from . import SaaSServiceMixin
|
|
from .. import settings
|
|
|
|
|
|
class DokuWikiMuBackend(SaaSServiceMixin, ServiceController):
|
|
verbose_name = _("DokuWiki multisite")
|
|
|
|
def save(self, webapp):
|
|
context = self.get_context(webapp)
|
|
self.append("mkdir %(app_path)" % context)
|
|
self.append("tar xfz %(template)s -C %(app_path)s" % context)
|
|
self.append("chown -R www-data %(app_path)s" % context)
|
|
# TODO move dokuwiki to user directory
|
|
|
|
def delete(self, webapp):
|
|
context = self.get_context(webapp)
|
|
self.append("rm -fr %(app_path)s" % context)
|
|
|
|
def get_context(self, webapp):
|
|
context = super(DokuWikiMuBackend, self).get_context(webapp)
|
|
context.update({
|
|
'template': settings.WEBAPPS_DOKUWIKIMU_TEMPLATE_PATH,
|
|
'app_path': os.path.join(settings.WEBAPPS_DOKUWIKIMU_FARM_PATH, webapp.name)
|
|
})
|
|
return context
|