-
Notifications
You must be signed in to change notification settings - Fork 255
/
Copy pathdb_fields.py
1273 lines (1012 loc) · 43.9 KB
/
db_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
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""Responsible for mongoengine fields extension, if WTFForms integration used."""
__all__ = [
"WtfFieldMixin",
"BinaryField",
"BooleanField",
"CachedReferenceField",
"ComplexDateTimeField",
"DateField",
"DateTimeField",
"DecimalField",
"DictField",
"DynamicField",
"EmailField",
"EmbeddedDocumentField",
"EmbeddedDocumentListField",
"EnumField",
"FileField",
"FloatField",
"GenericEmbeddedDocumentField",
"GenericLazyReferenceField",
"GenericReferenceField",
"GeoJsonBaseField",
"GeoPointField",
"ImageField",
"IntField",
"LazyReferenceField",
"LineStringField",
"ListField",
"LongField",
"MapField",
"MultiLineStringField",
"MultiPointField",
"MultiPolygonField",
"ObjectIdField",
"PointField",
"PolygonField",
"ReferenceField",
"SequenceField",
"SortedListField",
"StringField",
"URLField",
"UUIDField",
]
import decimal
import warnings
from typing import Callable, List, Optional, Type, Union
from bson import ObjectId
from mongoengine import fields
from flask_mongoengine.decorators import wtf_required
try:
from wtforms import fields as wtf_fields
from wtforms import validators as wtf_validators_
from flask_mongoengine.wtf import fields as custom_fields
except ImportError: # pragma: no cover
custom_fields = None
wtf_fields = None
wtf_validators_ = None
@wtf_required
def _setup_strings_common_validators(options: dict, obj: fields.StringField) -> dict:
"""
Extend :attr:`base_options` with common validators for string types.
:param options: dict, usually from :class:`WtfFieldMixin.wtf_generated_options`
:param obj: Any :class:`mongoengine.fields.StringField` subclass instance.
"""
assert isinstance(obj, fields.StringField), "Improperly configured"
if obj.min_length or obj.max_length:
options["validators"].insert(
0,
wtf_validators_.Length(
min=obj.min_length or -1,
max=obj.max_length or -1,
),
)
if obj.regex:
options["validators"].insert(0, wtf_validators_.Regexp(regex=obj.regex))
return options
@wtf_required
def _setup_numbers_common_validators(
options: dict, obj: Union[fields.IntField, fields.DecimalField, fields.FloatField]
) -> dict:
"""
Extend :attr:`base_options` with common validators for number types.
:param options: dict, usually from :class:`WtfFieldMixin.wtf_generated_options`
:param obj: Any :class:`mongoengine.fields.IntField` or
:class:`mongoengine.fields.DecimalField` or
:class:`mongoengine.fields.FloatField` subclasses instance.
"""
assert isinstance(
obj, (fields.IntField, fields.DecimalField, fields.FloatField)
), "Improperly configured"
if obj.min_value or obj.max_value:
options["validators"].insert(
0, wtf_validators_.NumberRange(min=obj.min_value, max=obj.max_value)
)
return options
class WtfFieldMixin:
"""
Extension wrapper class for mongoengine BaseField.
This enables flask-mongoengine wtf to extend the number of field parameters, and
settings on behalf of document model form generator for WTForm.
**Class variables:**
:cvar DEFAULT_WTF_CHOICES_FIELD: Default WTForms Field used for db fields when
**choices** option specified.
:cvar DEFAULT_WTF_FIELD: Default WTForms Field used for db field.
"""
DEFAULT_WTF_FIELD = None
DEFAULT_WTF_CHOICES_FIELD = wtf_fields.SelectField if wtf_fields else None
DEFAULT_WTF_CHOICES_COERCE = str
def __init__(
self,
*,
validators: Optional[Union[List, Callable]] = None,
filters: Optional[Union[List, Callable]] = None,
wtf_field_class: Optional[Type] = None,
wtf_filters: Optional[Union[List, Callable]] = None,
wtf_validators: Optional[Union[List, Callable]] = None,
wtf_choices_coerce: Optional[Callable] = None,
wtf_options: Optional[dict] = None,
**kwargs,
):
"""
Extended :func:`__init__` method for mongoengine db field with WTForms options.
:param filters: DEPRECATED: wtf form field filters.
:param validators: DEPRECATED: wtf form field validators.
:param wtf_field_class: Any subclass of :class:`wtforms.forms.core.Field` that
can be used for form field generation. Takes precedence over
:attr:`DEFAULT_WTF_FIELD` and :attr:`DEFAULT_WTF_CHOICES_FIELD`
:param wtf_filters: wtf form field filters.
:param wtf_validators: wtf form field validators.
:param wtf_choices_coerce: Callable function to replace
:attr:`DEFAULT_WTF_CHOICES_COERCE` for choices fields.
:param wtf_options: Dictionary with WTForm Field settings.
Applied last, takes precedence over any generated field options.
:param kwargs: keyword arguments silently bypassed to normal mongoengine fields
"""
if validators is not None:
warnings.warn(
(
"Passing 'validators' keyword argument to field definition is "
"deprecated and will be removed in version 3.0.0. "
"Please rename 'validators' to 'wtf_validators'. "
"If both values set, 'wtf_validators' is used."
),
DeprecationWarning,
stacklevel=2,
)
if filters is not None:
warnings.warn(
(
"Passing 'filters' keyword argument to field definition is "
"deprecated and will be removed in version 3.0.0. "
"Please rename 'filters' to 'wtf_filters'. "
"If both values set, 'wtf_filters' is used."
),
DeprecationWarning,
stacklevel=2,
)
self.wtf_validators = self._ensure_callable_or_list(
wtf_validators or validators, "wtf_validators"
)
self.wtf_filters = self._ensure_callable_or_list(
wtf_filters or filters, "wtf_filters"
)
self.wtf_options = wtf_options
self.wtf_choices_coerce = wtf_choices_coerce or self.DEFAULT_WTF_CHOICES_COERCE
# Some attributes that will be updated by super()
self.required = False
self.default = None
self.name = ""
self.choices = None
# Internals
self._wtf_field_class = wtf_field_class
super().__init__(**kwargs)
@property
def wtf_field_class(self) -> Type:
"""Final WTForm Field class, that will be used for field generation."""
if self._wtf_field_class:
return self._wtf_field_class
if self.choices and self.DEFAULT_WTF_CHOICES_FIELD:
return self.DEFAULT_WTF_CHOICES_FIELD
return self.DEFAULT_WTF_FIELD
@property
@wtf_required
def wtf_generated_options(self) -> dict:
"""
WTForm Field options generated by class, not updated by user provided :attr:`wtf_options`.
"""
wtf_field_kwargs: dict = {
"label": getattr(self, "verbose_name", self.name),
"description": getattr(self, "help_text", None) or "",
"default": self.default,
# Create a copy of the lists with list() call, since we will be modifying it
"validators": list(self.wtf_validators) or [],
"filters": list(self.wtf_filters) or [],
}
if self.required:
wtf_field_kwargs["validators"].append(wtf_validators_.InputRequired())
else:
wtf_field_kwargs["validators"].append(wtf_validators_.Optional())
if self.choices:
wtf_field_kwargs["choices"] = self.choices
wtf_field_kwargs["coerce"] = self.wtf_choices_coerce
return wtf_field_kwargs
@property
@wtf_required
def wtf_field_options(self) -> dict:
"""
Final WTForm Field options that will be applied as :attr:`wtf_field_class` kwargs.
Can be overwritten by :func:`to_wtf_field` if
:func:`~flask_mongoengine.documents.WtfFormMixin.to_wtf_form` called with related
field name in :attr:`fields_kwargs`.
It is not recommended to overwrite this property, for logic update overwrite
:attr:`wtf_generated_options`
"""
wtf_field_kwargs = self.wtf_generated_options
if self.wtf_options is not None:
wtf_field_kwargs.update(self.wtf_options)
return wtf_field_kwargs
@staticmethod
def _ensure_callable_or_list(argument, msg_flag: str) -> Optional[List]:
"""
Ensure submitted argument value is a callable object or valid list value.
:param argument: Argument input to make verification on.
:param msg_flag: Argument string name for error message.
"""
if argument is None:
return []
if callable(argument):
return [argument]
elif not isinstance(argument, list):
raise TypeError(f"Argument '{msg_flag}' must be a list value")
return argument
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Default WTFFormField generator for most of the fields.
:param model:
Document of model from :mod:`~flask_mongoengine.documents`, passed by
:func:`~flask_mongoengine.documents.WtfFormMixin.to_wtf_form` for field
types with other Document type dependency signature compatibility.
:param field_kwargs:
Final field generation adjustments, passed for custom Forms generation from
:func:`~flask_mongoengine.documents.WtfFormMixin.to_wtf_form`
:attr:`fields_kwargs` parameter.
"""
field_kwargs = field_kwargs or {}
wtf_field_kwargs = self.wtf_field_options
wtf_field_class = (
field_kwargs.pop("wtf_field_class", None) or self.wtf_field_class
)
if field_kwargs:
wtf_field_kwargs.update(field_kwargs)
return wtf_field_class(**wtf_field_kwargs)
class BinaryField(WtfFieldMixin, fields.BinaryField):
"""
Extends :class:`mongoengine.fields.BinaryField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
DEFAULT_WTF_FIELD = custom_fields.BinaryField if custom_fields else None
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class BooleanField(WtfFieldMixin, fields.BooleanField):
"""
Extends :class:`mongoengine.fields.BooleanField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
DEFAULT_WTF_FIELD = custom_fields.MongoBooleanField if custom_fields else None
class CachedReferenceField(WtfFieldMixin, fields.CachedReferenceField):
"""
Extends :class:`mongoengine.fields.CachedReferenceField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class ComplexDateTimeField(WtfFieldMixin, fields.ComplexDateTimeField):
"""
Extends :class:`mongoengine.fields.ComplexDateTimeField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
.. important::
During WTForm generation this field uses :class:`wtforms.fields.DateTimeLocalField`
with milliseconds accuracy. Direct microseconds not supported by browsers for
this type of field. If exact microseconds support required, please use
:class:`wtforms.fields.DateTimeField` with extended text format set. Examples
available in example app.
This does not affect on in database accuracy.
"""
DEFAULT_WTF_FIELD = wtf_fields.DateTimeLocalField if wtf_fields else None
@property
@wtf_required
def wtf_generated_options(self) -> dict:
"""Extend form date time field with milliseconds support."""
options = super().wtf_generated_options
options["format"] = [
"%Y-%m-%d %H:%M:%S",
"%Y-%m-%dT%H:%M:%S",
"%Y-%m-%d %H:%M:%S.%f",
"%Y-%m-%dT%H:%M:%S.%f",
]
options["render_kw"] = {"step": "0.000001"}
return options
class DateField(WtfFieldMixin, fields.DateField):
"""
Extends :class:`mongoengine.fields.DateField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
DEFAULT_WTF_FIELD = wtf_fields.DateField if wtf_fields else None
class DateTimeField(WtfFieldMixin, fields.DateTimeField):
"""
Extends :class:`mongoengine.fields.DateTimeField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
DEFAULT_WTF_FIELD = wtf_fields.DateTimeLocalField if wtf_fields else None
@property
@wtf_required
def wtf_generated_options(self) -> dict:
"""Extend form date time field with milliseconds support."""
options = super().wtf_generated_options
options["format"] = [
"%Y-%m-%d %H:%M:%S",
"%Y-%m-%dT%H:%M:%S",
"%Y-%m-%d %H:%M:%S.%f",
"%Y-%m-%dT%H:%M:%S.%f",
]
options["render_kw"] = {"step": "1"}
return options
class DecimalField(WtfFieldMixin, fields.DecimalField):
"""
Extends :class:`mongoengine.fields.DecimalField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
DEFAULT_WTF_FIELD = wtf_fields.DecimalField if wtf_fields else None
DEFAULT_WTF_CHOICES_COERCE = decimal.Decimal
@property
@wtf_required
def wtf_generated_options(self) -> dict:
"""
Extend form validators with :class:`wtforms.validators.NumberRange`.
"""
options = super().wtf_generated_options
options = _setup_numbers_common_validators(options, self)
return options
class DictField(WtfFieldMixin, fields.DictField):
"""
Extends :class:`mongoengine.fields.DictField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
DEFAULT_WTF_FIELD = custom_fields.MongoDictField if custom_fields else None
@property
def wtf_generated_options(self) -> dict:
"""Extends default field options with `null` bypass."""
options = super().wtf_generated_options
options["null"] = self.null
return options
class DynamicField(WtfFieldMixin, fields.DynamicField):
"""
Extends :class:`mongoengine.fields.DynamicField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class EmailField(WtfFieldMixin, fields.EmailField):
"""
Extends :class:`mongoengine.fields.EmailField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
.. versionchanged:: 2.0.0
Default form field output changed from :class:`.NoneStringField` to
:class:`flask_mongoengine.wtf.fields.MongoEmailField`
"""
DEFAULT_WTF_FIELD = custom_fields.MongoEmailField if custom_fields else None
@property
@wtf_required
def wtf_generated_options(self) -> dict:
"""Extend form validators with :class:`wtforms.validators.Email`"""
options = super().wtf_generated_options
options = _setup_strings_common_validators(options, self)
options["validators"].insert(0, wtf_validators_.Email())
return options
class EmbeddedDocumentField(WtfFieldMixin, fields.EmbeddedDocumentField):
"""
Extends :class:`mongoengine.fields.EmbeddedDocumentField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
DEFAULT_WTF_FIELD = wtf_fields.FormField if wtf_fields else None
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class EmbeddedDocumentListField(WtfFieldMixin, fields.EmbeddedDocumentListField):
"""
Extends :class:`mongoengine.fields.EmbeddedDocumentListField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class EnumField(WtfFieldMixin, fields.EnumField):
"""
Extends :class:`mongoengine.fields.EnumField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class FileField(WtfFieldMixin, fields.FileField):
"""
Extends :class:`mongoengine.fields.FileField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
DEFAULT_WTF_FIELD = wtf_fields.FileField if wtf_fields else None
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class FloatField(WtfFieldMixin, fields.FloatField):
"""
Extends :class:`mongoengine.fields.FloatField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
.. versionchanged:: 2.0.0
Default form field output changed from :class:`wtforms.fields.FloatField` to
:class:`flask_mongoengine.wtf.fields.MongoFloatField` with 'numbers' input type.
"""
DEFAULT_WTF_FIELD = custom_fields.MongoFloatField if wtf_fields else None
DEFAULT_WTF_CHOICES_COERCE = float
@property
@wtf_required
def wtf_generated_options(self) -> dict:
"""
Extend form validators with :class:`wtforms.validators.NumberRange`.
"""
options = super().wtf_generated_options
options = _setup_numbers_common_validators(options, self)
return options
class GenericEmbeddedDocumentField(WtfFieldMixin, fields.GenericEmbeddedDocumentField):
"""
Extends :class:`mongoengine.fields.GenericEmbeddedDocumentField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class GenericLazyReferenceField(WtfFieldMixin, fields.GenericLazyReferenceField):
"""
Extends :class:`mongoengine.fields.GenericLazyReferenceField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class GenericReferenceField(WtfFieldMixin, fields.GenericReferenceField):
"""
Extends :class:`mongoengine.fields.GenericReferenceField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class GeoJsonBaseField(WtfFieldMixin, fields.GeoJsonBaseField):
"""
Extends :class:`mongoengine.fields.GeoJsonBaseField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class GeoPointField(WtfFieldMixin, fields.GeoPointField):
"""
Extends :class:`mongoengine.fields.GeoPointField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class ImageField(WtfFieldMixin, fields.ImageField):
"""
Extends :class:`mongoengine.fields.ImageField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class IntField(WtfFieldMixin, fields.IntField):
"""
Extends :class:`mongoengine.fields.IntField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
DEFAULT_WTF_FIELD = wtf_fields.IntegerField if wtf_fields else None
DEFAULT_WTF_CHOICES_COERCE = int
@property
@wtf_required
def wtf_generated_options(self) -> dict:
"""
Extend form validators with :class:`wtforms.validators.NumberRange`.
"""
options = super().wtf_generated_options
options = _setup_numbers_common_validators(options, self)
return options
class LazyReferenceField(WtfFieldMixin, fields.LazyReferenceField):
"""
Extends :class:`mongoengine.fields.LazyReferenceField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class LineStringField(WtfFieldMixin, fields.LineStringField):
"""
Extends :class:`mongoengine.fields.LineStringField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class ListField(WtfFieldMixin, fields.ListField):
"""
Extends :class:`mongoengine.fields.ListField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
DEFAULT_WTF_FIELD = wtf_fields.FieldList if wtf_fields else None
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class LongField(WtfFieldMixin, fields.LongField):
"""
Extends :class:`mongoengine.fields.LongField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class MapField(WtfFieldMixin, fields.MapField):
"""
Extends :class:`mongoengine.fields.MapField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class MultiLineStringField(WtfFieldMixin, fields.MultiLineStringField):
"""
Extends :class:`mongoengine.fields.MultiLineStringField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class MultiPointField(WtfFieldMixin, fields.MultiPointField):
"""
Extends :class:`mongoengine.fields.MultiPointField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class MultiPolygonField(WtfFieldMixin, fields.MultiPolygonField):
"""
Extends :class:`mongoengine.fields.MultiPolygonField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class ObjectIdField(WtfFieldMixin, fields.ObjectIdField):
"""
Extends :class:`mongoengine.fields.ObjectIdField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""
DEFAULT_WTF_CHOICES_COERCE = ObjectId
def to_wtf_field(
self,
*,
model: Optional[Type] = None,
field_kwargs: Optional[dict] = None,
):
"""
Protection from execution of :func:`to_wtf_field` in form generation.
:raises NotImplementedError: Field converter to WTForm Field not implemented.
"""
raise NotImplementedError("Field converter to WTForm Field not implemented.")
class PointField(WtfFieldMixin, fields.PointField):
"""
Extends :class:`mongoengine.fields.PointField` with wtf required parameters.
For full list of arguments and keyword arguments, look parent field docs.
All arguments should be passed as keyword arguments, to exclude unexpected behaviour.
"""