add url in settings and legacy

This commit is contained in:
Cayo Puigdefabregas 2024-10-11 13:46:21 +02:00
parent e0929c03c7
commit 017dc818da
4 changed files with 27 additions and 7 deletions

View File

@ -7,9 +7,9 @@ class SettingsForm(forms.Form):
)
erasure = forms.ChoiceField(
choices = [(0, 'Not erasure'),
('erasure1', 'Erasure easy'),
('erasure2', 'Erasure mediom'),
('erasure3', 'Erasure hard'),
('basic', 'Erasure Basic'),
('baseline', 'Erasure Baseline'),
('enhanced', 'Erasure Enhanced'),
],
)

View File

@ -1,3 +1,6 @@
[settings]
url = {{ url }}
token = {{ token }}
erasure = {{ erasure }}
legacy = False
erase = {{ erasure }}
legacy = false
# path = /path/to/save

View File

@ -0,0 +1,6 @@
[settings]
url = {{ url }}
token = {{ token }}
legacy = true
# erase = {{ erasure }}
# path = /path/to/save

View File

@ -1,3 +1,5 @@
from decouple import config
from django.urls import reverse
from django.http import HttpResponse
from django.shortcuts import render
from django.utils.translation import gettext_lazy as _
@ -25,8 +27,17 @@ class SettingsView(DashboardView, FormView):
form_class = SettingsForm
def form_valid(self, form):
form.devices = self.get_session_devices()
data = render(self.request, "settings.ini", form.cleaned_data)
cleaned_data = form.cleaned_data.copy()
settings_tmpl = "settings.ini"
path = reverse("api:new_snapshot")
cleaned_data['url'] = self.request.build_absolute_uri(path)
if config("LEGACY", False):
cleaned_data['token'] = config.get('TOKEN_LEGACY', '')
cleaned_data['url'] = config.get('URL_LEGACY', '')
settings_tmpl = "settings_legacy.ini"
data = render(self.request, settings_tmpl, cleaned_data)
response = HttpResponse(data.content, content_type="application/text")
response['Content-Disposition'] = 'attachment; filename={}'.format("settings.ini")
return response