2021-09-28 10:44:53 -04:00
|
|
|
from django import forms
|
2022-12-08 18:17:13 -05:00
|
|
|
from django.utils import timezone
|
2022-11-03 11:58:26 -07:00
|
|
|
from django.utils.translation import gettext as _
|
2021-09-28 10:44:53 -04:00
|
|
|
|
2022-09-18 15:06:28 +02:00
|
|
|
from utilities.forms import BootstrapMixin, DateTimePicker
|
2021-09-28 10:44:53 -04:00
|
|
|
|
|
|
|
__all__ = (
|
|
|
|
'ScriptForm',
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class ScriptForm(BootstrapMixin, forms.Form):
|
|
|
|
_commit = forms.BooleanField(
|
|
|
|
required=False,
|
|
|
|
initial=True,
|
2022-11-03 11:58:26 -07:00
|
|
|
label=_("Commit changes"),
|
|
|
|
help_text=_("Commit changes to the database (uncheck for a dry-run)")
|
2021-09-28 10:44:53 -04:00
|
|
|
)
|
2022-09-18 15:06:28 +02:00
|
|
|
_schedule_at = forms.DateTimeField(
|
|
|
|
required=False,
|
|
|
|
widget=DateTimePicker(),
|
2022-11-03 11:58:26 -07:00
|
|
|
label=_("Schedule at"),
|
|
|
|
help_text=_("Schedule execution of script to a set time"),
|
2022-09-18 15:06:28 +02:00
|
|
|
)
|
2022-12-08 18:17:13 -05:00
|
|
|
_interval = forms.IntegerField(
|
|
|
|
required=False,
|
|
|
|
min_value=1,
|
|
|
|
label=_("Recurs every"),
|
|
|
|
help_text=_("Interval at which this script is re-run (in minutes)")
|
|
|
|
)
|
2021-09-28 10:44:53 -04:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
2022-09-18 15:06:28 +02:00
|
|
|
# Move _commit and _schedule_at to the end of the form
|
|
|
|
schedule_at = self.fields.pop('_schedule_at')
|
2022-12-08 18:17:13 -05:00
|
|
|
interval = self.fields.pop('_interval')
|
2021-09-28 10:44:53 -04:00
|
|
|
commit = self.fields.pop('_commit')
|
2022-09-18 15:06:28 +02:00
|
|
|
self.fields['_schedule_at'] = schedule_at
|
2022-12-08 18:17:13 -05:00
|
|
|
self.fields['_interval'] = interval
|
2021-09-28 10:44:53 -04:00
|
|
|
self.fields['_commit'] = commit
|
|
|
|
|
2022-12-08 18:17:13 -05:00
|
|
|
def clean__schedule_at(self):
|
|
|
|
scheduled_time = self.cleaned_data['_schedule_at']
|
|
|
|
if scheduled_time and scheduled_time < timezone.now():
|
|
|
|
raise forms.ValidationError({
|
|
|
|
'_schedule_at': _('Scheduled time must be in the future.')
|
|
|
|
})
|
|
|
|
|
|
|
|
return scheduled_time
|
|
|
|
|
2021-09-28 10:44:53 -04:00
|
|
|
@property
|
|
|
|
def requires_input(self):
|
|
|
|
"""
|
2022-12-08 18:17:13 -05:00
|
|
|
A boolean indicating whether the form requires user input (ignore the built-in fields).
|
2021-09-28 10:44:53 -04:00
|
|
|
"""
|
2022-12-08 18:17:13 -05:00
|
|
|
return bool(len(self.fields) > 3)
|