djblets.db.fields.base64_field¶
Field for storing data as Base64-encoded values.
See Base64Field
for the main field type and usage instructions.
- exception Base64TypeError(value)[source]¶
Error indicating an invalid value type was provided for the field.
- class Base64DecodedValue[source]¶
An identifiable wrapper around byte string values for Base64Field.
This wraps any values coming from
Base64Field
, helping make a distinction between arbitrary strings and decoded strings from the database. It helps prevent double-encoding or double-decoding of data.
- class Base64FieldCreator(field)[source]¶
Property-like class used to store/retrieve Base64 values.
This works much like a property, and takes care of encoding strings for storage and decoding them on retrieval. It’s set internally by
Base64Field
in place of the normal field attribute.
- class Base64Field(verbose_name=None, name=None, primary_key=False, max_length=None, unique=False, blank=False, null=False, db_index=False, rel=None, default=<class 'django.db.models.fields.NOT_PROVIDED'>, editable=True, serialize=True, unique_for_date=None, unique_for_month=None, unique_for_year=None, choices=None, help_text='', db_column=None, db_tablespace=None, auto_created=False, validators=(), error_messages=None)[source]¶
A text field for storing Base64-encoded values.
This is used to store data (such as binary data or encoding-sensitive data) to the database in a Base64 encoding. This is useful if you’re dealing with unknown encodings and must guarantee that no modifications to the text occurs and that you can read/write the data in any database with any encoding.
When accessing this field on an instance of a model, a
Base64DecodedValue
will be returned consisting of the decoded data. This is a byte string, and can be treated as such. If set back into the field, it will be re-encoded and stored.When writing to the field, the behavior changes based on the type of value and the state of the model:
If the model instance is new (has not yet been saved in the database), any string set will be encoded. This allows the value to be passed during a
create()
call.If the model is not new, any string that’s set will be assumed to be encoded by the caller.
Passing a
Base64DecodedValue
byte string will always cause the stored data to be encoded.
The field also adds a
get_fieldname_base64()
method to the class, which returns the raw Base64 encoded content from the database.- contribute_to_class(cls, name)[source]¶
Set attributes on a new model class.
This is called when constructing a model class making use of this field. It sets the field’s attribute to a
Base64FieldCreator
and adds aget_fieldname_base64()
method to the class.
- get_prep_value(value)[source]¶
Return a value prepared for the field.
This prepares the value for use in database operations (saving or querying). It will convert the value into a Unicode Base64-encoded string.
- Parameters
value (object) – The value to prepare. This is expected to be a string or a
Base64DecodedValue
. If the latter, it will be encoded.- Returns
The resulting value.
- Return type
unicode
- Raises
Base64TypeError – The type of value provided could not be prepared for writing.
- to_python(value)[source]¶
Return a Python representation of a value for the field.
This will decode the value (if not already decoded) and return it.
- Parameters
value (object) – The value to return a decoded value for.
- Returns
The decoded version of the provided value.
- Return type
- Raises
Base64TypeError – The type of value provided could not be prepared for writing.
- value_to_string(obj)[source]¶
Return a string representation of the value from a model.
The returned value will be a Base64-encoded string value.
- Parameters
obj (django.db.models.Model) – The model instance owning the field and value.
- Returns
The Base64-encoded byte string for the stored value.
- Return type