Extended form fields to validate REST-request data via django.forms
Project description
django-rest-form-fields
Extended form fields to validate REST-request data via django.forms.
Requirements
- Python 2.7 or Python 3.4+
- Django >= 1.7
- pytz
- jsonschema
- six
- typing
Installation
Install via pip:
pip install django-rest-form-fields
or via setup.py:
python setup.py install
Usage
You can use standard django forms, adding new fields for them.
All *args
and **kwargs
fields in reference below will be passed to base django constructors as is.
Example:
from django import forms
from django_rest_form_fields import FileField, ArrayField
class MyForm(forms.Form):
file_field = FileField(max_size=1024, valid_extensions=['valid_extensions'])
array_field = ArrayField(min_items=1, max_items=10)
Base forms
Since version 1.2.2 this library also contains base form classes. Together with library fields, they give ability to change field's source attribute. To have this feature, just inherit your class from BaseForm or BaseModelForm:
from django_rest_form_fields.forms import BaseForm
from django_rest_form_fields.fields import RestIntegerField
class MyForm(BaseForm):
int_field = RestIntegerField(source='intField')
f = MyForm({'intField': 123})
f.full_clean()
print(f.cleaned_data['int_field'])
# Outputs: 123
Fields and their options
RestCharField(*args, source: Optional[str] = None, **kwargs)
Wraps django.forms.forms.CharField:
- Changes default value - None, not empty string
- Fixes initial value (CharField returns empty string, ignoring 'initial' parameter and None value)
Parameters:
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[str]
RegExField(*args, regex: Optional[str] = None, flags: int = 0, source: Optional[str] = None, **kwargs)
RestCharField child class, that automatically validates given string with regex (re.match function)
If regex parameter is specified and value matches expression, you can get MatchObject using field match
attribute
Parameters:
- regex: str - regular expression string or compiled with
re.compile()
object - flags: int - optional validate flags
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[str]
RestChoiceField(*args, choices: Optional[Iterable[Union[str, Tuple[str]]]] = None, source: Optional[str] = None, **kwargs)
Wraps django.forms.forms.ChoiceField:
- Changes default value - None, not empty string
- Fixes initial value (ChoiceField returns empty string, ignoring 'initial' parameter and None value)
- Gives opportunity to set 'choices' as iterable of values, not iterable of tuples
Parameters:
- choices: Optional[Iterable[Union[str, Tuple[str]]]] - values this field can have. It can be an iterable of strings or iterable of tuples[inner_name: str, human_name: str].
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[str]
RestIntegerField(*args, source: Optional[str] = None, **kwargs)
RestFloatField(*args, source: Optional[str] = None, **kwargs)
Wrap django.forms.forms.IntegerField and django.forms.forms.FloatField, fixing initial value (Base fields returns None, ignoring 'initial' parameter and None value)
Parameters:
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[int/float]
PositiveIntegerField(*args, with_zero: bool = False, source: Optional[str] = None, **kwargs)
IdField(*args, with_zero: bool = False, source: Optional[str] = None, **kwargs)
Child of RestIntegerField, validating value as positive integer Parameters:
- with_zero: bool - if False, 0 will cause validation error
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[int]
TimestampField(*args, in_future: bool = True, source: Optional[str] = None, **kwargs)
Child of RestFloatField. Gets timestamp value and converts it into datetime.datetime
object in UTC.
Parameter initial
can be float or datetime.datetime
value.
Parameters:
- in_future: bool - if False, datetime is validated to be less than
django.utils.timezone.now()
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[datetime.datetime]
DateTimeField(*args, mask: str = "%Y-%m-%dT%H:%M:%S", source: Optional[str] = None, **kwargs)
Child of RestCharField. Parses datetime string to datetime.datetime
value.
Parameters:
- mask: str - template for datetime.strptime function
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[datetime.datetime]
MonthField(*args, mask: str = "%Y-%m", source: Optional[str] = None, **kwargs)
Child of DateTimeField. Parses month string to datetime.date
value.
Returns date of the first day of the month.
Parameters:
- mask: str - template for datetime.strptime function
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[datetime.date]
TimezoneField(*args, source: Optional[str] = None, **kwargs)
Child of RestCharField. Validates string as one of pytz timezone names.
Parameters:
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[str]
DateUnitField(*args, source: Optional[str] = None, **kwargs)
Child of RestChoiceField, validating value as one of [hour, day, week]
Parameters:
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[str]
RestBooleanField(*args, source: Optional[str] = None, **kwargs)
Standard django.forms.forms.BooleanField
is based on /django/forms/widgets.py CheckboxInput.value_from_datadict(value)
It works improperly for REST model: required=True
+ value=False
=> ValidationError
This filed fixes this issue, giving opportunity to send False (required or not):
- None as default value
- 'false', '0', '' (ignoring case) as False
- Everything else is parsed with standard bool function
Parameters:
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[str]
LowerCaseEmailField(*args, source: Optional[str] = None, **kwargs)
Wraps django.forms.forms.EmailField
:
- Converts email string to lowercase
- Fixes initial value bug (EmailField returns empty string, ignoring 'initial' parameter)
- Changes default value - None, not empty string
Parameters:
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[str]
ColorField(*args, source: Optional[str] = None, **kwargs)
Child of RestCharField, validating color. Color should be six hexadecimal characters.
Parameters:
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[str]
TruncatedCharField(*args, truncate_length: int = 255, source: Optional[str] = None, **kwargs)
Child of RestCharField, which truncates given value, leaving first truncate_length characters.
Parameters:
- truncate_length: Optional[int] - If None, acts as RestCharField. If integer - number of characters to leave.
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[str]
JsonField(*args, json_schema: Optional[dict], source: Optional[str] = None, **kwargs)
Child of RestCharField. Validates, that value is dict, list or JSON-encoded string. If string - decodes it.
Parameters:
- json_schema: Optional[dict] - Object to validate given JSON with jsonschema package.
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[Any]
ArrayField(*args, min_items: int = 0, max_items: Optional[int] = None, item_schema: Optional[dict] = None, source: Optional[str] = None, **kwargs)
JsonField child. Validates array. It can be represented in 3 forms:
- list instance
- JSON-encoded array
- comma-separated string
Parameters:
- min_items: int - Validates array has more or equal items
- max_items: Optional[int] - Validates array has less or equal items
- item_schema: Optional[dict] - Object to validate every item with jsonschema package.
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[List[Any]]
IdArrayField(*args, source: Optional[str] = None, **kwargs)
ArrayField child. Validates array of IdField().
Each array element is cleaned with IdField().
Parameters:
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[List[int]]
IdSetField(*args, source: Optional[str] = None, **kwargs)
IdArrayField child. Validates set of IdField().
Each element is cleaned with IdField(). Removes duplicated ids from input, if needed.
Parameters:
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[Set[int]]
UrlField(*args, source: Optional[str] = None, **kwargs)
RegexField child. Validates string as URL with django.core.validators.URLValidator
Parameters:
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[str]
HexField(*args, source: Optional[str] = None, **kwargs)
RestCharField child. Validates that string has hexadecimal characters only.
Parameters:
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[str]
UUIDField(*args, source: Optional[str] = None, **kwargs)
RegexField child. Validates field to be correct UUID.
Parameters:
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[str]
FileField(*args, max_size: Optional[int] = None, valid_extensions: Optional[List[str]] = None, source: Optional[str] = None, **kwargs)
Wraps django.forms.forms.FileField:
- Fixes initial value bug (FileField returns empty string, ignoring 'initial' parameter)
- Adds validation parameters
Parameters:
- max_size: Optional[int] - File size in bytes
- valid_extensions: Optional[List[str]] - file extensions (without .), that are valid
- source: Optional[str] - name of attribute to get data from. Defaults to form attribute name.
Resulting value: Optional[file]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-rest-form-fields-1.2.8.tar.gz
.
File metadata
- Download URL: django-rest-form-fields-1.2.8.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.19.1 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04230da5eef8ede0545a87c922f2ca32059e6766ccdaa117407a5da003eb99af |
|
MD5 | 79ae7ecd5149192d8ad7ad421ef3efed |
|
BLAKE2b-256 | bfcddb54fa1461a72d7e5752aae4f22a8081a484607d27c75c57652a2d48eb12 |
Provenance
File details
Details for the file django_rest_form_fields-1.2.8-py2.py3-none-any.whl
.
File metadata
- Download URL: django_rest_form_fields-1.2.8-py2.py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.19.1 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4ee9bc83070873f25ad668c001601ac437e8419a8c291cae4d164079b784e01 |
|
MD5 | 7f0e79ad9ec53ef4643bf736e5862251 |
|
BLAKE2b-256 | 612ac8ae5754fde54587a0985e30147ca44a4d82efa708e886cc6e4668676f1f |