forms.py
2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import re
from django import forms
from django.core.exceptions import ValidationError
from django.utils.translation import gettext_lazy as _
from .models import Evento
class EventoForms(forms.ModelForm):
class Meta:
model = Evento
fields = (
'titulo',
'categoria',
'fecha_inicio',
'hora_inicio',
'fecha_final',
'hora_fin',
'fechas',
'descripcion',
'direccion',
'url',
'organismo',
'dependencia',
'imagen',
)
def clean_direccion(self):
clean = super().clean()
direccion = clean.get('direccion')
maps_regex = re.compile(
r'^(https?://)?(www\.)?(google\.com/maps|goo\.gl|maps\.app\.goo\.gl)/\S+$',
re.IGNORECASE
)
if direccion:
if not maps_regex.match(direccion):
raise ValidationError(
_('La dirección no es un enlace válido de Google Maps.')
)
return direccion
def clean_fecha_final(self):
fecha_inicio = self.cleaned_data.get('fecha_inicio')
fecha_final = self.cleaned_data.get('fecha_final')
if fecha_inicio and fecha_final:
if fecha_final < fecha_inicio:
raise ValidationError(
_('La fecha final no puede ser anterior a la fecha de inicio.'
)
)
return fecha_final
def clean_hora_fin(self):
clean = super().clean()
fecha_inicio = clean.get('fecha_inicio')
hora_inicio = clean.get('hora_inicio')
fecha_final = clean.get('fecha_final')
hora_fin = clean.get('hora_fin')
if fecha_final == fecha_inicio:
if hora_fin <= hora_inicio:
raise ValidationError(
_('La hora de finalización debe ser posterior a la hora de inicio.'
)
)
return hora_fin