forked from praekelt/django-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfields.py
586 lines (474 loc) · 18.3 KB
/
fields.py
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
import datetime
import time
from decimal import Decimal, InvalidOperation
from django import forms
from django.contrib.admin.widgets import AdminDateWidget, \
AdminIntegerFieldWidget, AdminTimeWidget
from django.core import exceptions, validators
from django.core.exceptions import ValidationError
from django.utils import formats
from django.utils.safestring import mark_safe
from django.utils.translation import ugettext as _
class AdminSplitDateTime(forms.SplitDateTimeWidget):
"""
A SplitDateTime Widget that has some admin-specific styling.
"""
def __init__(self, attrs=None):
widgets = [AdminDateWidget, AdminTimeWidget, AdminDateWidget, \
AdminTimeWidget]
forms.MultiWidget.__init__(self, widgets, attrs)
def format_output(self, rendered_widgets):
return mark_safe(u'<p class="datetime">%s %s %s %s</p>\
<p class="datetime">%s %s %s %s</p>' % (
_('Start Date:'), rendered_widgets[0],
_(' Start Time:'), rendered_widgets[1],
_('End Date:'), rendered_widgets[2],
_('End Time:'), rendered_widgets[3])
)
class AdminSplitDate(forms.SplitDateTimeWidget):
"""
A SplitDate Widget that has some admin-specific styling.
"""
def __init__(self, attrs=None):
widgets = [AdminDateWidget, AdminDateWidget]
forms.MultiWidget.__init__(self, widgets, attrs)
def format_output(self, rendered_widgets):
return mark_safe(u'<p class="datetime">%s %s %s %s</p>' % (
_('Start Date:'), rendered_widgets[0],
_('End Date:'), rendered_widgets[1])
)
class AdminSplitTime(forms.SplitDateTimeWidget):
"""
A SplitDate Widget that has some admin-specific styling.
"""
def __init__(self, attrs=None):
widgets = [AdminTimeWidget, AdminTimeWidget]
forms.MultiWidget.__init__(self, widgets, attrs)
def format_output(self, rendered_widgets):
return mark_safe(u'<p class="datetime">%s %s %s %s</p>' % (
_('Start Time:'), rendered_widgets[0],
_('End Time:'), rendered_widgets[1])
)
class AdminSplitInteger(forms.SplitDateTimeWidget):
"""
A SplitInteger Widget that has some admin-specific styling.
"""
def __init__(self, attrs=None):
widgets = [AdminIntegerFieldWidget, AdminIntegerFieldWidget]
forms.MultiWidget.__init__(self, widgets, attrs)
def format_output(self, rendered_widgets):
return mark_safe(u'<p class="datetime">%s %s %s %s</p>' % \
(_('Min:'), rendered_widgets[0], _('Max:'), rendered_widgets[1]))
class BasicTextField(forms.fields.CharField):
def __init__(self, field, *args, **kwargs):
super(BasicTextField, self).__init__(
required=False,
help_text="Only objects containing the entered text in its '%s' \
field will be exported. Case is ignored." % \
field.label.lower(),
*args, **kwargs
)
def filter(self, name, value, queryset):
kwargs = {'%s__icontains' % name: value}
return queryset.filter(**kwargs)
class BooleanField(forms.fields.ChoiceField):
def __init__(self, field, *args, **kwargs):
super(BooleanField, self).__init__(
required=False,
help_text="Only objects having its '%s' field set as selected will\
be exported. Select 'Either' to ignore." % \
field.label.lower(),
choices=(
("", "Either"),
(True, "Yes"),
(False, "No"),
),
*args,
**kwargs
)
def filter(self, name, value, queryset):
if value in ('False', '0'):
value = False
elif value in ('True', '1'):
value = True
else:
value = None
kwargs = {name: bool(value)}
return queryset.filter(**kwargs)
class NullBooleanField(BooleanField):
pass
class CharField(BasicTextField):
pass
class CommaSeparatedIntegerField(BasicTextField):
pass
class DateField(forms.fields.DateField):
def __init__(self, field, *args, **kwargs):
super(DateField, self).__init__(
required=False,
widget=AdminSplitDate,
help_text="Only objects with a '%s' date within the provided range\
will be exported." % field.label.lower(),
*args, **kwargs
)
def to_python(self, value):
"""
Validates that the input can be converted to a date. Returns a
Python datetime.date object.
"""
if value in validators.EMPTY_VALUES:
return None
if isinstance(value, datetime.datetime):
return value.date()
if isinstance(value, datetime.date):
return value
if isinstance(value, list):
# Input comes from a 2 SplitDateWidgets, for example. So, it's two
# components: start date and end date.
if len(value) != 2:
raise ValidationError(self.error_messages['invalid'])
if value[0] in validators.EMPTY_VALUES and value[1] in \
validators.EMPTY_VALUES:
return None
start_value = value[0]
end_value = value[1]
start_date = None
end_date = None
for format in self.input_formats or \
formats.get_format('DATE_INPUT_FORMATS'):
try:
start_date = datetime.datetime(*time.strptime(start_value, \
format)[:6]).date()
except ValueError:
continue
for format in self.input_formats or formats.get_format(\
'DATE_INPUT_FORMATS'):
try:
end_date = datetime.datetime(*time.strptime(end_value, \
format)[:6]).date()
except ValueError:
continue
return (start_date, end_date)
def filter(self, name, value, queryset):
kwargs = {}
# Filter start date.
if value[0]:
kwargs['%s__gte' % name] = value[0]
# Filter end date.
if value[1]:
kwargs['%s__lte' % name] = value[1]
return queryset.filter(**kwargs)
class DateTimeField(forms.fields.DateTimeField):
def __init__(self, field, *args, **kwargs):
super(DateTimeField, self).__init__(
required=False,
widget=AdminSplitDateTime,
help_text="Only objects with a '%s' date within the provided \
range will be exported." % field.label.lower(),
*args, **kwargs
)
def to_python(self, value):
"""
Validates that the input can be converted to a datetime. Returns a
Python datetime.datetime object.
"""
if value in validators.EMPTY_VALUES:
return None
if isinstance(value, datetime.datetime):
return value
if isinstance(value, datetime.date):
return datetime.datetime(value.year, value.month, value.day)
if isinstance(value, list):
# Input comes from a 2 SplitDateTimeWidgets, for example. So,
# it's four components: start date and time, and end date and time.
if len(value) != 4:
raise ValidationError(self.error_messages['invalid'])
if value[0] in validators.EMPTY_VALUES and value[1] in \
validators.EMPTY_VALUES and value[2] in \
validators.EMPTY_VALUES and value[3] in \
validators.EMPTY_VALUES:
return None
start_value = '%s %s' % tuple(value[:2])
end_value = '%s %s' % tuple(value[2:])
start_datetime = None
end_datetime = None
for format in self.input_formats or formats.get_format(\
'DATETIME_INPUT_FORMATS'):
try:
start_datetime = datetime.datetime(*time.strptime(\
start_value, format)[:6])
except ValueError:
continue
for format in self.input_formats or formats.get_format(\
'DATETIME_INPUT_FORMATS'):
try:
end_datetime = datetime.datetime(*time.strptime(\
end_value, format)[:6])
except ValueError:
continue
return (start_datetime, end_datetime)
def filter(self, name, value, queryset):
kwargs = {}
# Filter start datetime.
if value[0]:
kwargs['%s__gte' % name] = value[0]
# Filter end datetime.
if value[1]:
kwargs['%s__lte' % name] = value[1]
return queryset.filter(**kwargs)
class FileField(BasicTextField):
pass
class FilePathField(BasicTextField):
pass
class IntegerField(forms.fields.IntegerField):
def __init__(self, field, *args, **kwargs):
super(IntegerField, self).__init__(
required=False,
widget=AdminSplitInteger,
help_text="Only objects with a '%s' value within the provided \
range will be exported." % field.label.lower(),
*args, **kwargs
)
def to_python(self, value):
if value in validators.EMPTY_VALUES:
return None
if isinstance(value, list):
if len(value) != 2:
raise ValidationError(self.error_messages['invalid'])
if value[0] in validators.EMPTY_VALUES and value[1] in \
validators.EMPTY_VALUES:
return None
min = None
max = None
if value[0] not in validators.EMPTY_VALUES:
try:
min = int(value[0])
except (TypeError, ValueError):
raise exceptions.ValidationError(\
self.error_messages['invalid'])
if value[1] not in validators.EMPTY_VALUES:
try:
max = int(value[1])
except (TypeError, ValueError):
raise exceptions.ValidationError(\
self.error_messages['invalid'])
return (min, max)
def filter(self, name, value, queryset):
kwargs = {}
# Filter min.
if value[0]:
kwargs['%s__gte' % name] = value[0]
# Filter max.
if value[1]:
kwargs['%s__lte' % name] = value[1]
return queryset.filter(**kwargs)
class FloatField(forms.fields.FloatField):
def __init__(self, field, *args, **kwargs):
super(FloatField, self).__init__(
required=False,
widget=AdminSplitInteger,
help_text="Only objects with a '%s' value within the provided \
range will be exported." % field.label.lower(),
*args, **kwargs
)
def to_python(self, value):
if value in validators.EMPTY_VALUES:
return None
if isinstance(value, list):
if len(value) != 2:
raise ValidationError(self.error_messages['invalid'])
if value[0] in validators.EMPTY_VALUES and value[1] in \
validators.EMPTY_VALUES:
return None
min = None
max = None
if value[0] not in validators.EMPTY_VALUES:
try:
min = float(value[0])
except (TypeError, ValueError):
raise exceptions.ValidationError(\
self.error_messages['invalid'])
if value[1] not in validators.EMPTY_VALUES:
try:
max = float(value[1])
except (TypeError, ValueError):
raise exceptions.ValidationError(\
self.error_messages['invalid'])
return (min, max)
def filter(self, name, value, queryset):
kwargs = {}
# Filter min.
if value[0]:
kwargs['%s__gte' % name] = value[0]
# Filter max.
if value[1]:
kwargs['%s__lte' % name] = value[1]
return queryset.filter(**kwargs)
class ImageField(BasicTextField):
pass
class DecimalField(forms.fields.DecimalField):
def __init__(self, field, *args, **kwargs):
super(DecimalField, self).__init__(
required=False,
widget=AdminSplitInteger,
help_text="Only objects with a '%s' value within the provided \
range will be exported." % field.label.lower(),
*args, **kwargs
)
def to_python(self, value):
if value in validators.EMPTY_VALUES:
return None
if isinstance(value, list):
if len(value) != 2:
raise ValidationError(self.error_messages['invalid'])
if value[0] in validators.EMPTY_VALUES and value[1] in \
validators.EMPTY_VALUES:
return None
min = None
max = None
if value[0] not in validators.EMPTY_VALUES:
try:
min = Decimal(value[0])
except (TypeError, ValueError, InvalidOperation):
raise exceptions.ValidationError(\
self.error_messages['invalid'])
if value[1] not in validators.EMPTY_VALUES:
try:
max = Decimal(value[1])
except (TypeError, ValueError, InvalidOperation):
raise exceptions.ValidationError(\
self.error_messages['invalid'])
return (min, max)
def validate(self, value):
if value in validators.EMPTY_VALUES:
return
return (super(DecimalField, self).validate(value[0]), \
super(DecimalField, self).validate(value[1]))
def filter(self, name, value, queryset):
kwargs = {}
# Filter min.
if value[0]:
kwargs['%s__gte' % name] = value[0]
# Filter max.
if value[1]:
kwargs['%s__lte' % name] = value[1]
return queryset.filter(**kwargs)
class AutoField(IntegerField):
pass
class BigIntegerField(IntegerField):
pass
class PositiveIntegerField(IntegerField):
pass
class PositiveSmallIntegerField(IntegerField):
pass
class SmallIntegerField(IntegerField):
pass
class EmailField(BasicTextField):
pass
class IPAddressField(BasicTextField):
pass
"""
class ModelChoiceField(forms.models.ModelChoiceField):
def __init__(self, field, queryset, *args, **kwargs):
super(ModelChoiceField, self).__init__(
queryset=queryset,
required = False,
help_text="Only objects with relationships to the selected %s \
above will be exported. Hold down 'Control', or 'Command' \
on a Mac, to select more than one." % field.label.lower(),
*args, **kwargs
)
def filter(self, name, value, queryset):
kwargs = {name: value}
return queryset.filter(**kwargs)
"""
class ModelMultipleChoiceField(forms.models.ModelMultipleChoiceField):
def __init__(self, field, queryset, *args, **kwargs):
super(ModelMultipleChoiceField, self).__init__(
queryset=queryset,
required=False,
help_text="Only objects with relationships to the selected %s \
above will be exported. Hold down 'Control', or 'Command' \
on a Mac, to select more than one." % field.label.lower(),
*args, **kwargs
)
def filter(self, name, value, queryset):
kwargs = {'%s__in' % name: value}
return queryset.filter(**kwargs)
class ModelChoiceField(ModelMultipleChoiceField):
pass
class OneToOneField(ModelMultipleChoiceField):
pass
class ForeignKey(ModelMultipleChoiceField):
pass
class ManyToManyField(ModelMultipleChoiceField):
pass
class TextField(BasicTextField):
pass
class TimeField(forms.fields.TimeField):
def __init__(self, field, *args, **kwargs):
super(TimeField, self).__init__(
required=False,
widget=AdminSplitTime,
help_text="Only objects with a '%s' time within the provided range\
will be exported." % field.label.lower(),
*args, **kwargs
)
def to_python(self, value):
"""
Validates that the input can be converted to a time. Returns a
Python datetime.time object.
"""
if value in validators.EMPTY_VALUES:
return None
if isinstance(value, datetime.datetime):
return value.time()
if isinstance(value, datetime.time):
return value
if isinstance(value, list):
# Input comes from a 2 SplitTimeWidgets, for example. So, it's two
# components: start time and end time.
if len(value) != 2:
raise ValidationError(self.error_messages['invalid'])
if value[0] in validators.EMPTY_VALUES and value[1] in \
validators.EMPTY_VALUES:
return None
start_value = value[0]
end_value = value[1]
start_time = None
end_time = None
for format in self.input_formats or formats.get_format(\
'TIME_INPUT_FORMATS'):
try:
start_time = datetime.datetime(*time.strptime(start_value, \
format)[:6]).time()
except ValueError:
if start_time:
continue
else:
raise ValidationError(self.error_messages['invalid'])
for format in self.input_formats or formats.get_format(\
'TIME_INPUT_FORMATS'):
try:
end_time = datetime.datetime(*time.strptime(end_value, \
format)[:6]).time()
except ValueError:
if end_time:
continue
else:
raise ValidationError(self.error_messages['invalid'])
return (start_time, end_time)
def filter(self, name, value, queryset):
kwargs = {}
# Filter start date.
if value[0]:
kwargs['%s__gte' % name] = value[0]
# Filter end date.
if value[1]:
kwargs['%s__lte' % name] = value[1]
return queryset.filter(**kwargs)
class SlugField(BasicTextField):
pass
class URLField(BasicTextField):
pass
class XMLField(BasicTextField):
pass