2014-05-08 16:59:35 +00:00
|
|
|
import pkgutil
|
2014-10-10 14:39:46 +00:00
|
|
|
import textwrap
|
2014-05-08 16:59:35 +00:00
|
|
|
|
2015-03-10 16:57:23 +00:00
|
|
|
from .. import settings
|
|
|
|
|
2014-10-14 13:50:19 +00:00
|
|
|
|
2014-05-08 16:59:35 +00:00
|
|
|
class WebAppServiceMixin(object):
|
|
|
|
model = 'webapps.WebApp'
|
2015-04-23 14:34:04 +00:00
|
|
|
related_models = (
|
|
|
|
('webapps.WebAppOption', 'webapp'),
|
|
|
|
)
|
2014-10-24 12:12:20 +00:00
|
|
|
directive = None
|
2015-04-24 11:39:20 +00:00
|
|
|
doc_settings = (settings,
|
|
|
|
('WEBAPPS_UNDER_CONSTRUCTION_PATH', 'WEBAPPS_MOVE_ON_DELETE_PATH',)
|
|
|
|
)
|
2014-10-24 12:12:20 +00:00
|
|
|
|
2014-05-08 16:59:35 +00:00
|
|
|
def create_webapp_dir(self, context):
|
2015-05-21 17:53:59 +00:00
|
|
|
self.append(textwrap.dedent("""
|
|
|
|
# Create webapp dir
|
2015-03-11 16:32:33 +00:00
|
|
|
CREATED=0
|
|
|
|
[[ ! -e %(app_path)s ]] && CREATED=1
|
|
|
|
mkdir -p %(app_path)s
|
2015-05-21 17:53:59 +00:00
|
|
|
chown %(user)s:%(group)s %(app_path)s\
|
2015-03-11 16:32:33 +00:00
|
|
|
""") % context
|
|
|
|
)
|
2014-05-08 16:59:35 +00:00
|
|
|
|
2015-03-10 16:57:23 +00:00
|
|
|
def set_under_construction(self, context):
|
|
|
|
if context['under_construction_path']:
|
2015-05-21 17:53:59 +00:00
|
|
|
self.append(textwrap.dedent("""
|
|
|
|
# Set under construction if needed
|
2015-09-28 10:51:03 +00:00
|
|
|
if [[ $CREATED == 1 && ! $(ls -A %(app_path)s) ]]; then
|
2015-05-14 13:28:54 +00:00
|
|
|
# Async wait 2 more seconds for other backends to lock app_path or cp under construction
|
2015-05-12 12:38:40 +00:00
|
|
|
nohup bash -c '
|
2015-05-14 13:28:54 +00:00
|
|
|
sleep 2
|
2015-09-28 10:51:03 +00:00
|
|
|
if [[ ! $(ls -A %(app_path)s) ]]; then
|
2015-05-06 14:39:25 +00:00
|
|
|
cp -r %(under_construction_path)s %(app_path)s
|
|
|
|
chown -R %(user)s:%(group)s %(app_path)s
|
2015-05-12 12:38:40 +00:00
|
|
|
fi' &> /dev/null &
|
2015-03-11 16:32:33 +00:00
|
|
|
fi""") % context
|
|
|
|
)
|
2015-03-10 16:57:23 +00:00
|
|
|
|
2014-05-08 16:59:35 +00:00
|
|
|
def delete_webapp_dir(self, context):
|
2015-04-09 14:32:10 +00:00
|
|
|
if context['deleted_app_path']:
|
2015-04-26 13:53:00 +00:00
|
|
|
self.append("mv %(app_path)s %(deleted_app_path)s || exit_code=$?" % context)
|
2015-04-09 14:32:10 +00:00
|
|
|
else:
|
|
|
|
self.append("rm -fr %(app_path)s" % context)
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
def get_context(self, webapp):
|
2015-04-05 18:02:36 +00:00
|
|
|
context = {
|
2014-10-23 15:38:46 +00:00
|
|
|
'user': webapp.get_username(),
|
|
|
|
'group': webapp.get_groupname(),
|
2015-03-04 21:06:16 +00:00
|
|
|
'app_name': webapp.name,
|
2015-04-27 14:54:17 +00:00
|
|
|
'app_type': webapp.type,
|
2015-04-09 14:32:10 +00:00
|
|
|
'app_path': webapp.get_path(),
|
2014-05-08 16:59:35 +00:00
|
|
|
'banner': self.get_banner(),
|
2015-04-24 11:39:20 +00:00
|
|
|
'under_construction_path': settings.WEBAPPS_UNDER_CONSTRUCTION_PATH,
|
2015-03-27 19:50:54 +00:00
|
|
|
'is_mounted': webapp.content_set.exists(),
|
2014-05-08 16:59:35 +00:00
|
|
|
}
|
2015-04-09 14:32:10 +00:00
|
|
|
context['deleted_app_path'] = settings.WEBAPPS_MOVE_ON_DELETE_PATH % context
|
2015-05-21 13:34:12 +00:00
|
|
|
return context
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
for __, module_name, __ in pkgutil.walk_packages(__path__):
|
2014-10-14 13:50:19 +00:00
|
|
|
# sorry for the exec(), but Import module function fails :(
|
2014-05-08 16:59:35 +00:00
|
|
|
exec('from . import %s' % module_name)
|