2014-05-08 16:59:35 +00:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
2014-07-09 16:17:43 +00:00
|
|
|
from orchestra.apps.orchestration import ServiceController
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
from . import WebAppServiceMixin
|
|
|
|
|
|
|
|
|
2014-07-09 16:17:43 +00:00
|
|
|
class StaticBackend(WebAppServiceMixin, ServiceController):
|
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)
|
|
|
|
self.create_webapp_dir(context)
|
2015-03-10 16:57:23 +00:00
|
|
|
self.set_under_construction(context)
|
2014-05-08 16:59:35 +00:00
|
|
|
|
|
|
|
def delete(self, webapp):
|
|
|
|
context = self.get_context(webapp)
|
|
|
|
self.delete_webapp_dir(context)
|