django-orchestra/orchestra/contrib/webapps/backends/php.py

259 lines
9.9 KiB
Python
Raw Normal View History

2015-03-12 14:05:23 +00:00
import os
import textwrap
2015-05-06 10:51:12 +00:00
from collections import OrderedDict
2015-03-12 14:05:23 +00:00
from django.template import Template, Context
from django.utils.translation import ugettext_lazy as _
2015-04-05 18:02:36 +00:00
from orchestra.contrib.orchestration import ServiceController, replace
2015-03-12 14:05:23 +00:00
from . import WebAppServiceMixin
from .. import settings
class PHPBackend(WebAppServiceMixin, ServiceController):
2015-04-23 19:46:23 +00:00
"""
PHP support for apache-mod-fcgid and php-fpm.
It handles switching between these two PHP process management systemes.
"""
2015-04-24 11:39:20 +00:00
MERGE = settings.WEBAPPS_MERGE_PHP_WEBAPPS
2015-04-23 19:46:23 +00:00
2015-03-12 14:05:23 +00:00
verbose_name = _("PHP FPM/FCGID")
2015-03-27 19:50:54 +00:00
default_route_match = "webapp.type.endswith('php')"
2015-04-24 11:39:20 +00:00
doc_settings = (settings, (
'WEBAPPS_MERGE_PHP_WEBAPPS',
'WEBAPPS_FPM_DEFAULT_MAX_CHILDREN',
'WEBAPPS_PHP_CGI_BINARY_PATH',
'WEBAPPS_PHP_CGI_RC_DIR',
'WEBAPPS_PHP_CGI_INI_SCAN_DIR',
'WEBAPPS_FCGID_CMD_OPTIONS_PATH',
'WEBAPPS_PHPFPM_POOL_PATH',
'WEBAPPS_PHP_MAX_REQUESTS',
))
2015-03-12 14:05:23 +00:00
def save(self, webapp):
context = self.get_context(webapp)
2015-04-09 14:32:10 +00:00
self.create_webapp_dir(context)
2015-03-12 14:05:23 +00:00
if webapp.type_instance.is_fpm:
self.save_fpm(webapp, context)
self.delete_fcgid(webapp, context)
elif webapp.type_instance.is_fcgid:
self.save_fcgid(webapp, context)
self.delete_fpm(webapp, context)
2015-05-06 14:39:25 +00:00
self.set_under_construction(context)
2015-03-12 14:05:23 +00:00
def save_fpm(self, webapp, context):
self.append(textwrap.dedent("""\
fpm_config='%(fpm_config)s'
2015-03-12 14:05:23 +00:00
{
echo -e "${fpm_config}" | diff -N -I'^\s*;;' %(fpm_path)s -
2015-03-12 14:05:23 +00:00
} || {
echo -e "${fpm_config}" > %(fpm_path)s
UPDATED_FPM=1
2015-03-27 19:50:54 +00:00
}
""") % context
2015-03-12 14:05:23 +00:00
)
def save_fcgid(self, webapp, context):
self.append("mkdir -p %(wrapper_dir)s" % context)
self.append(textwrap.dedent("""\
wrapper='%(wrapper)s'
2015-03-12 14:05:23 +00:00
{
echo -e "${wrapper}" | diff -N -I'^\s*#' %(wrapper_path)s -
2015-03-12 14:05:23 +00:00
} || {
2015-03-27 19:50:54 +00:00
echo -e "${wrapper}" > %(wrapper_path)s
if [[ %(is_mounted)i -eq 1 ]]; then
# Reload fcgid wrapper
pkill -SIGHUP -U %(user)s "^%(php_binary)s$" || true
fi
2015-03-27 19:50:54 +00:00
}
""") % context
2015-03-12 14:05:23 +00:00
)
self.append("chmod 550 %(wrapper_dir)s" % context)
self.append("chmod 550 %(wrapper_path)s" % context)
2015-03-12 14:05:23 +00:00
self.append("chown -R %(user)s:%(group)s %(wrapper_dir)s" % context)
if context['cmd_options']:
self.append(textwrap.dedent("""
cmd_options='%(cmd_options)s'
2015-03-12 14:05:23 +00:00
{
echo -e "${cmd_options}" | diff -N -I'^\s*#' %(cmd_options_path)s -
2015-03-12 14:05:23 +00:00
} || {
2015-03-27 19:50:54 +00:00
echo -e "${cmd_options}" > %(cmd_options_path)s
[[ ${UPDATED_APACHE} -eq 0 ]] && UPDATED_APACHE=%(is_mounted)i
}
""" ) % context
2015-03-12 14:05:23 +00:00
)
else:
self.append("rm -f %(cmd_options_path)s" % context)
def delete(self, webapp):
context = self.get_context(webapp)
if webapp.type_instance.is_fpm:
self.delete_fpm(webapp, context)
elif webapp.type_instance.is_fcgid:
self.delete_fcgid(webapp, context)
self.delete_webapp_dir(context)
def delete_fpm(self, webapp, context):
2015-04-10 15:03:38 +00:00
# Better not delete a pool used by other apps
if not self.MERGE:
self.append("rm -f %(fpm_path)s" % context)
2015-03-12 14:05:23 +00:00
def delete_fcgid(self, webapp, context):
2015-04-10 15:03:38 +00:00
# Better not delete a wrapper used by other apps
if not self.MERGE:
self.append("rm -f %(wrapper_path)s" % context)
self.append("rm -f %(cmd_options_path)s" % context)
def prepare(self):
super(PHPBackend, self).prepare()
# Coordinate apache restart with php backend in order not to overdo it
2015-05-06 14:39:25 +00:00
self.append(textwrap.dedent("""\
backend="PHPBackend"
echo "$backend" >> /dev/shm/restart.apache2
""")
)
2015-03-12 14:05:23 +00:00
def commit(self):
2015-04-10 15:03:38 +00:00
self.append(textwrap.dedent("""
if [[ $UPDATED_FPM -eq 1 ]]; then
2015-04-10 15:03:38 +00:00
service php5-fpm reload
fi
2015-05-06 14:39:25 +00:00
# Coordinate Apache restart with other concurrent backends (i.e. Apache2Backend)
is_last=0
2015-05-06 10:51:12 +00:00
mv /dev/shm/restart.apache2 /dev/shm/restart.apache2.locked || {
2015-05-06 14:39:25 +00:00
sleep 0.2
2015-05-06 10:51:12 +00:00
mv /dev/shm/restart.apache2 /dev/shm/restart.apache2.locked
}
2015-05-06 14:39:25 +00:00
state="$(grep -v "$backend" /dev/shm/restart.apache2.locked)" || is_last=1
if [[ $is_last -eq 1 ]]; then
if [[ $UPDATED_APACHE -eq 1 || "$state" =~ .*RESTART$ ]]; then
service apache2 status && service apache2 reload || service apache2 start
2015-03-27 19:50:54 +00:00
fi
2015-05-06 10:51:12 +00:00
rm /dev/shm/restart.apache2.locked
else
2015-05-06 14:39:25 +00:00
echo -n "$state" > /dev/shm/restart.apache2.locked
if [[ $UPDATED_APACHE -eq 1 ]]; then
echo "$backend RESTART" >> /dev/shm/restart.apache2.locked
fi
2015-05-06 10:51:12 +00:00
mv /dev/shm/restart.apache2.locked /dev/shm/restart.apache2
2015-04-10 15:03:38 +00:00
fi
2015-05-06 14:39:25 +00:00
# End of coordination
2015-04-10 15:03:38 +00:00
""")
)
super(PHPBackend, self).commit()
2015-03-12 14:05:23 +00:00
2015-04-20 14:23:10 +00:00
def get_options(self, webapp):
kwargs = {}
if self.MERGE:
kwargs = {
'webapp__account': webapp.account,
'webapp__type': webapp.type,
'webapp__data__contains': '"php_version":"%s"' % webapp.data['php_version'],
}
return webapp.get_options(**kwargs)
2015-03-12 14:05:23 +00:00
def get_fpm_config(self, webapp, context):
2015-04-20 14:23:10 +00:00
options = self.get_options(webapp)
2015-03-12 14:05:23 +00:00
context.update({
2015-03-23 15:36:51 +00:00
'init_vars': webapp.type_instance.get_php_init_vars(merge=self.MERGE),
2015-04-14 14:29:22 +00:00
'max_children': options.get('processes', settings.WEBAPPS_FPM_DEFAULT_MAX_CHILDREN),
'request_terminate_timeout': options.get('timeout', False),
2015-03-12 14:05:23 +00:00
})
context['fpm_listen'] = webapp.type_instance.FPM_LISTEN % context
fpm_config = Template(textwrap.dedent("""\
;; {{ banner }}
[{{ user }}]
user = {{ user }}
group = {{ group }}
listen = {{ fpm_listen | safe }}
listen.owner = {{ user }}
listen.group = {{ group }}
pm = ondemand
2015-04-02 16:14:55 +00:00
pm.max_requests = {{ max_requests }}
2015-04-09 14:32:10 +00:00
pm.max_children = {{ max_children }}
2015-03-12 14:05:23 +00:00
{% if request_terminate_timeout %}request_terminate_timeout = {{ request_terminate_timeout }}{% endif %}
2015-04-14 14:29:22 +00:00
{% for name, value in init_vars.items %}
2015-03-12 14:05:23 +00:00
php_admin_value[{{ name | safe }}] = {{ value | safe }}{% endfor %}
"""
))
return fpm_config.render(Context(context))
def get_fcgid_wrapper(self, webapp, context):
opt = webapp.type_instance
# Format PHP init vars
2015-03-23 15:36:51 +00:00
init_vars = opt.get_php_init_vars(merge=self.MERGE)
2015-03-12 14:05:23 +00:00
if init_vars:
2015-04-05 18:02:36 +00:00
init_vars = [ "-d %s='%s'" % (k, v.replace("'", '"')) for k,v in init_vars.items() ]
2015-04-09 14:32:10 +00:00
init_vars = ' \\\n '.join(init_vars)
2015-03-12 14:05:23 +00:00
context.update({
'php_binary_path': os.path.normpath(settings.WEBAPPS_PHP_CGI_BINARY_PATH % context),
2015-03-12 14:05:23 +00:00
'php_rc': os.path.normpath(settings.WEBAPPS_PHP_CGI_RC_DIR % context),
'php_ini_scan': os.path.normpath(settings.WEBAPPS_PHP_CGI_INI_SCAN_DIR % context),
'php_init_vars': init_vars,
})
context['php_binary'] = os.path.basename(context['php_binary_path'])
2015-03-12 14:05:23 +00:00
return textwrap.dedent("""\
#!/bin/sh
# %(banner)s
export PHPRC=%(php_rc)s
export PHP_INI_SCAN_DIR=%(php_ini_scan)s
2015-04-02 16:14:55 +00:00
export PHP_FCGI_MAX_REQUESTS=%(max_requests)s
exec %(php_binary_path)s %(php_init_vars)s""") % context
2015-03-12 14:05:23 +00:00
def get_fcgid_cmd_options(self, webapp, context):
2015-04-20 14:23:10 +00:00
options = self.get_options(webapp)
2015-05-06 10:51:12 +00:00
maps = OrderedDict(
MaxProcesses=options.get('processes', None),
IOTimeout=options.get('timeout', None),
)
2015-03-12 14:05:23 +00:00
cmd_options = []
2015-04-02 16:14:55 +00:00
for directive, value in maps.items():
2015-03-12 14:05:23 +00:00
if value:
2015-04-05 18:02:36 +00:00
cmd_options.append(
"%s %s" % (directive, value.replace("'", '"'))
)
2015-03-12 14:05:23 +00:00
if cmd_options:
2015-03-27 19:50:54 +00:00
head = (
'# %(banner)s\n'
'FcgidCmdOptions %(wrapper_path)s'
) % context
2015-03-12 14:05:23 +00:00
cmd_options.insert(0, head)
return ' \\\n '.join(cmd_options)
def update_fcgid_context(self, webapp, context):
wrapper_path = webapp.type_instance.FCGID_WRAPPER_PATH % context
context.update({
'wrapper': self.get_fcgid_wrapper(webapp, context),
'wrapper_path': wrapper_path,
'wrapper_dir': os.path.dirname(wrapper_path),
})
2015-04-05 18:02:36 +00:00
replace(context, "'", '"')
2015-03-12 14:05:23 +00:00
context.update({
'cmd_options': self.get_fcgid_cmd_options(webapp, context),
'cmd_options_path': settings.WEBAPPS_FCGID_CMD_OPTIONS_PATH % context,
})
2015-04-08 14:41:09 +00:00
return context
2015-03-12 14:05:23 +00:00
def update_fpm_context(self, webapp, context):
context.update({
'fpm_config': self.get_fpm_config(webapp, context),
'fpm_path': settings.WEBAPPS_PHPFPM_POOL_PATH % context,
})
return context
def get_context(self, webapp):
context = super(PHPBackend, self).get_context(webapp)
context.update({
'php_version': webapp.type_instance.get_php_version(),
'php_version_number': webapp.type_instance.get_php_version_number(),
2015-04-02 16:14:55 +00:00
'max_requests': settings.WEBAPPS_PHP_MAX_REQUESTS,
2015-03-12 14:05:23 +00:00
})
self.update_fpm_context(webapp, context)
2015-04-05 18:02:36 +00:00
# Fcgid context do contain special charactes
replace(context, "'", '"')
self.update_fcgid_context(webapp, context)
2015-03-12 14:05:23 +00:00
return context