2014-05-08 16:59:35 +00:00
|
|
|
import os
|
2014-10-14 13:50:19 +00:00
|
|
|
import textwrap
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
from django.template import Template, Context
|
|
|
|
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 WebAppServiceMixin
|
|
|
|
from .. import settings
|
|
|
|
|
|
|
|
|
2014-07-09 16:17:43 +00:00
|
|
|
class PHPFPMBackend(WebAppServiceMixin, ServiceController):
|
2014-10-14 13:50:19 +00:00
|
|
|
""" Per-webapp php application """
|
2014-05-08 16:59:35 +00:00
|
|
|
verbose_name = _("PHP-FPM")
|
2014-10-24 12:12:20 +00:00
|
|
|
directive = 'fpm'
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
def save(self, webapp):
|
2014-10-24 12:13:48 +00:00
|
|
|
if not self.valid_directive(webapp):
|
2014-10-24 12:12:20 +00:00
|
|
|
return
|
2014-05-08 16:59:35 +00:00
|
|
|
context = self.get_context(webapp)
|
|
|
|
self.create_webapp_dir(context)
|
2014-10-14 13:50:19 +00:00
|
|
|
self.append(textwrap.dedent("""\
|
|
|
|
{
|
|
|
|
echo -e '%(fpm_config)s' | diff -N -I'^\s*;;' %(fpm_path)s -
|
|
|
|
} || {
|
|
|
|
echo -e '%(fpm_config)s' > %(fpm_path)s
|
|
|
|
UPDATEDFPM=1
|
|
|
|
}""" % context))
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
def delete(self, webapp):
|
2014-11-10 10:04:52 +00:00
|
|
|
if not self.valid_directive(webapp):
|
|
|
|
return
|
2014-05-08 16:59:35 +00:00
|
|
|
context = self.get_context(webapp)
|
2014-10-28 09:51:27 +00:00
|
|
|
self.append("rm '%(fpm_path)s'" % context)
|
2014-05-08 16:59:35 +00:00
|
|
|
self.delete_webapp_dir(context)
|
|
|
|
|
|
|
|
def commit(self):
|
2014-11-10 10:04:52 +00:00
|
|
|
if not self.cmds:
|
|
|
|
return
|
2014-05-08 16:59:35 +00:00
|
|
|
super(PHPFPMBackend, self).commit()
|
2014-10-14 13:50:19 +00:00
|
|
|
self.append(textwrap.dedent("""
|
|
|
|
[[ $UPDATEDFPM == 1 ]] && {
|
|
|
|
service php5-fpm start
|
|
|
|
service php5-fpm reload
|
|
|
|
}"""))
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
def get_context(self, webapp):
|
2014-10-24 12:12:20 +00:00
|
|
|
if not self.valid_directive(webapp):
|
|
|
|
return
|
2014-05-08 16:59:35 +00:00
|
|
|
context = super(PHPFPMBackend, self).get_context(webapp)
|
|
|
|
context.update({
|
2014-10-14 13:50:19 +00:00
|
|
|
'init_vars': self.get_php_init_vars(webapp),
|
2014-05-08 16:59:35 +00:00
|
|
|
'fpm_port': webapp.get_fpm_port(),
|
|
|
|
})
|
|
|
|
context['fpm_listen'] = settings.WEBAPPS_FPM_LISTEN % context
|
2014-10-14 13:50:19 +00:00
|
|
|
fpm_config = Template(textwrap.dedent("""\
|
|
|
|
;; {{ banner }}
|
|
|
|
[{{ user }}]
|
|
|
|
user = {{ user }}
|
|
|
|
group = {{ group }}
|
|
|
|
|
|
|
|
listen = {{ fpm_listen | safe }}
|
|
|
|
listen.owner = {{ user }}
|
|
|
|
listen.group = {{ group }}
|
|
|
|
pm = ondemand
|
|
|
|
pm.max_children = 4
|
2014-11-10 10:24:20 +00:00
|
|
|
{% for name, value in init_vars %}
|
2014-10-14 13:50:19 +00:00
|
|
|
php_admin_value[{{ name | safe }}] = {{ value | safe }}{% endfor %}"""
|
|
|
|
))
|
2014-05-08 16:59:35 +00:00
|
|
|
context.update({
|
|
|
|
'fpm_config': fpm_config.render(Context(context)),
|
2014-10-14 13:50:19 +00:00
|
|
|
'fpm_path': settings.WEBAPPS_PHPFPM_POOL_PATH % context,
|
2014-05-08 16:59:35 +00:00
|
|
|
})
|
|
|
|
return context
|
|
|
|
|