2023-07-09 07:51:51 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
|
|
from orchestra.contrib.orchestration import ServiceController
|
|
|
|
|
|
|
|
from . import WebAppServiceMixin
|
2023-07-25 14:59:58 +00:00
|
|
|
from ..settings import WEBAPP_NEW_SERVERS
|
2023-07-09 07:51:51 +00:00
|
|
|
|
|
|
|
class StaticController(WebAppServiceMixin, ServiceController):
|
|
|
|
"""
|
|
|
|
Static web pages.
|
|
|
|
Only creates the webapp dir and leaves the web server the decision to execute CGIs or not.
|
|
|
|
"""
|
|
|
|
verbose_name = _("Static")
|
|
|
|
default_route_match = "webapp.type == 'static'"
|
|
|
|
|
|
|
|
def save(self, webapp):
|
|
|
|
context = self.get_context(webapp)
|
2023-07-25 14:59:58 +00:00
|
|
|
if context.get('target_server').name in WEBAPP_NEW_SERVERS:
|
|
|
|
self.check_webapp_dir(context)
|
|
|
|
self.set_under_construction(context)
|
|
|
|
# TODO: crea el usuario sftp
|
|
|
|
# webapp.name = webapp.sftpuser.directory.replace("webapps/", "")
|
|
|
|
# webapp.save()
|
|
|
|
|
|
|
|
else:
|
|
|
|
self.create_webapp_dir(context)
|
|
|
|
self.set_under_construction(context)
|
2023-07-09 07:51:51 +00:00
|
|
|
|
|
|
|
def delete(self, webapp):
|
|
|
|
context = self.get_context(webapp)
|
2023-07-25 14:59:58 +00:00
|
|
|
if context.get('target_server').name not in WEBAPP_NEW_SERVERS:
|
|
|
|
self.delete_webapp_dir(context)
|
|
|
|
else:
|
|
|
|
# TODO: elimina el usuario sftp
|
|
|
|
pass
|