2014-05-08 16:59:35 +00:00
|
|
|
import os
|
2014-11-27 19:17:26 +00:00
|
|
|
import textwrap
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
2014-07-09 16:17:43 +00:00
|
|
|
from orchestra.apps.orchestration import ServiceController
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
from .. import settings
|
|
|
|
|
|
|
|
|
2014-11-27 19:17:26 +00:00
|
|
|
class DrupalMuBackend(ServiceController):
|
2014-05-08 16:59:35 +00:00
|
|
|
verbose_name = _("Drupal multisite")
|
2014-11-27 19:17:26 +00:00
|
|
|
model = 'webapps.WebApp'
|
|
|
|
|
2014-05-08 16:59:35 +00:00
|
|
|
def save(self, webapp):
|
|
|
|
context = self.get_context(webapp)
|
2014-11-27 19:17:26 +00:00
|
|
|
self.append(textwrap.dedent("""\
|
|
|
|
mkdir %(drupal_path)s
|
|
|
|
chown -R www-data %(drupal_path)s
|
|
|
|
|
|
|
|
# the following assumes settings.php to be previously configured
|
|
|
|
REGEX='^\s*$databases\[.default.\]\[.default.\]\[.prefix.\]'
|
|
|
|
CONFIG='$databases[\'default\'][\'default\'][\'prefix\'] = \'%(app_name)s_\';'
|
|
|
|
if [[ ! $(grep $REGEX %(drupal_settings)s) ]]; then
|
|
|
|
echo $CONFIG >> %(drupal_settings)s
|
|
|
|
fi""") % context
|
2014-05-08 16:59:35 +00:00
|
|
|
)
|
|
|
|
|
2014-11-27 19:17:26 +00:00
|
|
|
def delete(self, webapp):
|
2014-05-08 16:59:35 +00:00
|
|
|
context = self.get_context(webapp)
|
|
|
|
self.append("rm -fr %(app_path)s" % context)
|
|
|
|
|
|
|
|
def get_context(self, webapp):
|
|
|
|
context = super(DrupalMuBackend, self).get_context(webapp)
|
|
|
|
context['drupal_path'] = settings.WEBAPPS_DRUPAL_SITES_PATH % context
|
|
|
|
context['drupal_settings'] = os.path.join(context['drupal_path'], 'settings.php')
|
|
|
|
return context
|