django-orchestra-test/orchestra/apps/webapps/backends/__init__.py

30 lines
880 B
Python
Raw Normal View History

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
2014-05-08 16:59:35 +00:00
class WebAppServiceMixin(object):
model = 'webapps.WebApp'
directive = None
2014-05-08 16:59:35 +00:00
def create_webapp_dir(self, context):
2015-03-04 21:06:16 +00:00
self.append("mkdir -p %(app_path)s" % context)
self.append("chown %(user)s:%(group)s %(app_path)s" % context)
2014-05-08 16:59:35 +00:00
def delete_webapp_dir(self, context):
self.append("rm -fr %(app_path)s" % context)
def get_context(self, webapp):
return {
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,
2014-05-08 16:59:35 +00:00
'type': webapp.type,
2014-10-10 14:39:46 +00:00
'app_path': webapp.get_path().rstrip('/'),
2014-05-08 16:59:35 +00:00
'banner': self.get_banner(),
}
for __, module_name, __ in pkgutil.walk_packages(__path__):
# sorry for the exec(), but Import module function fails :(
2014-05-08 16:59:35 +00:00
exec('from . import %s' % module_name)