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

31 lines
1.0 KiB
Python
Raw Normal View History

from django.utils.translation import gettext_lazy as _
2014-05-08 16:59:35 +00:00
2015-04-05 10:46:24 +00:00
from orchestra.contrib.orchestration import ServiceController
2014-05-08 16:59:35 +00:00
from . import WebAppServiceMixin
2023-08-01 14:41:03 +00:00
from orchestra.settings import NEW_SERVERS
2014-05-08 16:59:35 +00:00
2016-03-08 10:16:49 +00:00
class StaticController(WebAppServiceMixin, ServiceController):
2015-04-23 19:46:23 +00:00
"""
Static web pages.
Only creates the webapp dir and leaves the web server the decision to execute CGIs or not.
"""
2014-05-08 16:59:35 +00:00
verbose_name = _("Static")
2015-03-04 21:06:16 +00:00
default_route_match = "webapp.type == 'static'"
2014-05-08 16:59:35 +00:00
def save(self, webapp):
context = self.get_context(webapp)
2023-08-01 14:41:03 +00:00
if context.get('target_server').name in NEW_SERVERS:
self.check_webapp_dir(context)
self.set_under_construction(context)
else:
self.create_webapp_dir(context)
self.set_under_construction(context)
2023-07-25 20:16:38 +00:00
2014-05-08 16:59:35 +00:00
def delete(self, webapp):
context = self.get_context(webapp)
2023-08-01 14:41:03 +00:00
if context.get('target_server').name in NEW_SERVERS:
2023-07-25 20:16:38 +00:00
webapp.sftpuser.delete()
else:
2023-07-25 20:16:38 +00:00
self.delete_webapp_dir(context)