lenticular_cloud2/specs/api_template/property_templates/file_property.py.jinja
2022-02-19 10:22:21 +01:00

32 lines
1.1 KiB
Django/Jinja

{% macro construct_function(property, source) %}
File(
payload = BytesIO({{ source }})
)
{% endmacro %}
{% from "property_templates/property_macros.py.jinja" import construct_template %}
{% macro construct(property, source, initial_value=None) %}
{{ construct_template(construct_function, property, source, initial_value=initial_value) }}
{% endmacro %}
{% macro check_type_for_construct(property, source) %}isinstance({{ source }}, bytes){% endmacro %}
{% macro transform(property, source, destination, declare_type=True, multipart=False) %}
{% if property.required %}
{% if property.nullable %}
{{ destination }} = {{ source }}.to_tuple() if {{ source }} else None
{% else %}
{{ destination }} = {{ source }}.to_tuple()
{% endif %}
{% else %}
{{ destination }}{% if declare_type %}: {{ property.get_type_string(json=True) }}{% endif %} = UNSET
if not isinstance({{ source }}, Unset):
{% if property.nullable %}
{{ destination }} = {{ source }}.to_tuple() if {{ source }} else None
{% else %}
{{ destination }} = {{ source }}.to_tuple()
{% endif %}
{% endif %}
{% endmacro %}