Sapan Bhatia | 7148c08 | 2017-06-16 15:04:11 -0700 | [diff] [blame] | 1 | from core.models.xosbase import * |
Scott Baker | 4839dec | 2019-02-27 16:50:37 -0800 | [diff] [blame] | 2 | from core.models import ServiceInstance |
Scott Baker | be2a517 | 2019-04-10 18:02:50 -0700 | [diff] [blame] | 3 | {% set ns=namespace(any_legacy_tag = '') %} |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 4 | {% for m in proto.messages %} |
| 5 | {% if file_exists(m.name|lower+'_header.py') -%}from {{m.name|lower }}_header import *{% endif %} |
| 6 | {% if file_exists(m.name|lower+'_top.py') -%}{{ include_file(m.name|lower+'_top.py') }} {% endif %} |
| 7 | |
Sapan Bhatia | 3cfdf63 | 2017-06-08 05:14:03 +0200 | [diff] [blame] | 8 | {%- for l in m.links -%}{% set peer_name=l.peer.name %} |
Sapan Bhatia | 0027417 | 2017-07-20 09:05:46 -0400 | [diff] [blame] | 9 | |
Sapan Bhatia | 3cfdf63 | 2017-06-08 05:14:03 +0200 | [diff] [blame] | 10 | {% if peer_name not in proto.message_names -%} |
| 11 | from core.models import {{ peer_name }} |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 12 | {%- endif -%} |
| 13 | {%- endfor -%} |
| 14 | {%- for b in m.bases -%} |
Sapan Bhatia | 3cfdf63 | 2017-06-08 05:14:03 +0200 | [diff] [blame] | 15 | {%- if b.name!='XOSBase' and 'Mixin' not in b.name %} |
Sapan Bhatia | 0027417 | 2017-07-20 09:05:46 -0400 | [diff] [blame] | 16 | {% if b.name not in proto.message_names %} |
Sapan Bhatia | 3cfdf63 | 2017-06-08 05:14:03 +0200 | [diff] [blame] | 17 | from core.models import {{ b.name }} |
Sapan Bhatia | 0027417 | 2017-07-20 09:05:46 -0400 | [diff] [blame] | 18 | {% endif %} |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 19 | {%- endif -%} |
| 20 | {% endfor %} |
| 21 | |
Sapan Bhatia | 9227b4d | 2017-07-25 23:14:48 -0400 | [diff] [blame] | 22 | {% for policy,error in xproto_validations(m.options) %} |
| 23 | {{ xproto_fol_to_python_validator(policy, proto.policies[policy], m, error) }} |
| 24 | {% endfor %} |
| 25 | |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 26 | {% endfor %} |
| 27 | |
Scott Baker | be2a517 | 2019-04-10 18:02:50 -0700 | [diff] [blame] | 28 | {# Compute any_legacy_tag by looking to see if any model in the service has legacy sete #} |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 29 | {% for m in proto.messages %} |
Scott Baker | be2a517 | 2019-04-10 18:02:50 -0700 | [diff] [blame] | 30 | {%- if xproto_list_evaluates_true([m.options.custom_python, m.options.legacy, options.custom_python, options.legacy]) -%} |
| 31 | {% set ns.any_legacy_tag = '_decl' %} |
| 32 | {% endif %} |
| 33 | {% endfor %} |
| 34 | |
| 35 | {% for m in proto.messages %} |
| 36 | {%- if xproto_list_evaluates_true([m.options.custom_python, m.options.legacy, options.custom_python, options.legacy]) -%} |
| 37 | {% set legacy_tag = '_decl' %} |
| 38 | {% set legacy = True %} |
| 39 | {% else %} |
| 40 | {% set legacy = False %} |
| 41 | {% set legacy_tag = '' %} |
| 42 | {% endif %} |
| 43 | class {{ m.name }}{{ ns.any_legacy_tag }}{{ xproto_base_def(m.name, m.bases, legacy_tag, proto.message_names) }}: |
Sapan Bhatia | 2941a05 | 2017-07-10 15:10:03 -0400 | [diff] [blame] | 44 | plural_name = "{{ xproto_pluralize(m) }}" |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 45 | |
Matteo Scandolo | 23cf15f | 2018-03-06 18:12:36 -0800 | [diff] [blame] | 46 | {%- set feedback_state_fields = xproto_optioned_fields_to_list(xproto_base_fields(m, proto.message_table) + m.fields, 'feedback_state', 'True') %} |
| 47 | {%- if feedback_state_fields|length > 0 %} |
| 48 | feedback_state_fields = {{ feedback_state_fields }} |
| 49 | {%- endif %} |
| 50 | |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 51 | KIND = {{ xproto_first_non_empty([m.options.kind, options.kind, options.name, "Set a kind in your xproto!"]) }} |
| 52 | |
Scott Baker | 0d2dd98 | 2018-02-20 09:27:52 -0800 | [diff] [blame] | 53 | {% if m.options.owner_class_name %} |
| 54 | OWNER_CLASS_NAME = {{ m.options.owner_class_name }} |
| 55 | {% endif %} |
| 56 | |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 57 | class Meta: |
| 58 | app_label = {{ xproto_first_non_empty([m.options.app_label, options.app_label, options.name, "Set an app label in your xproto!"]) | lower}} |
| 59 | # name = {{ xproto_first_non_empty([m.options.name, options.name, "Set a name in your xproto!"]) }} |
Matteo Scandolo | e425f9d | 2017-08-15 15:56:19 -0700 | [diff] [blame] | 60 | verbose_name = "{{ xproto_unquote(xproto_first_non_empty([m.options.verbose_name, m.name])) }}" |
Matteo Scandolo | a17e6e4 | 2018-05-25 10:28:25 -0700 | [diff] [blame] | 61 | {%- set uniques = xproto_field_graph_components(m.fields, m) %} |
Scott Baker | eb782fc | 2018-04-27 13:50:21 -0700 | [diff] [blame] | 62 | {%- if uniques %} |
| 63 | unique_together = {{ xproto_tuplify(uniques) }} |
| 64 | {%- endif %} |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 65 | |
| 66 | # Primitive Fields (Not Relations) |
| 67 | {% for f in m.fields %} |
| 68 | {%- if not f.link -%} |
| 69 | {{ f.name }} = {{ xproto_django_type(f.type, f.options) }}( {{ xproto_django_options_str(f) }} ) |
| 70 | {% endif %} |
| 71 | {%- endfor %} |
| 72 | |
| 73 | # Relations |
Sapan Bhatia | 3cfdf63 | 2017-06-08 05:14:03 +0200 | [diff] [blame] | 74 | {% for l in m.links %}{% set peer_name=l.peer.name %} |
Scott Baker | 425bd06 | 2019-05-31 17:14:39 -0700 | [diff] [blame] | 75 | {% if ns.any_legacy_tag!='' and peer_name in proto.message_names %}{% set peer_tag = ns.any_legacy_tag %}{% else %}{% set peer_tag = '' %}{% endif -%} |
Sapan Bhatia | 7148c08 | 2017-06-16 15:04:11 -0700 | [diff] [blame] | 76 | {{ l.src_port }} = {{ xproto_django_link_type(l) }}( {%- if peer_name==m.name -%}'self'{%- else -%}{{ peer_name }}{{ peer_tag }} {%- endif -%}, {{ xproto_django_options_str(l, l.dst_port ) }} ) |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 77 | {%- endfor %} |
| 78 | |
| 79 | {% if file_exists(m.name|lower + '_model.py') -%}{{ include_file(m.name|lower + '_model.py') | indent(width=2)}}{%- endif %} |
| 80 | pass |
| 81 | |
Sapan Bhatia | 9227b4d | 2017-07-25 23:14:48 -0400 | [diff] [blame] | 82 | # Generated methods |
| 83 | def save(self, *args, **kwds): |
Sapan Bhatia | 113c2b9 | 2017-07-25 08:41:58 -0400 | [diff] [blame] | 84 | if not self.leaf_model_name: |
| 85 | self.leaf_model_name = "{{ m.name }}" |
| 86 | |
Sapan Bhatia | 9227b4d | 2017-07-25 23:14:48 -0400 | [diff] [blame] | 87 | {% for policy,error in xproto_validations(m.options) %} |
| 88 | policy_{{policy}}_validator(self, None) |
| 89 | {% endfor %} |
Sapan Bhatia | 0d6990a | 2017-09-20 06:42:38 -0700 | [diff] [blame] | 90 | |
| 91 | try: |
| 92 | base_save_in_attic = self.__xos_save_base(*args, **kwds) |
| 93 | except AttributeError: |
| 94 | base_save_in_attic = False |
| 95 | |
Scott Baker | dd8fff4 | 2018-09-04 09:07:51 -0700 | [diff] [blame] | 96 | if not self.deleted: |
| 97 | self.full_clean() |
Matteo Scandolo | 61a9f20 | 2018-08-01 08:58:13 -0400 | [diff] [blame] | 98 | |
Sapan Bhatia | 0d6990a | 2017-09-20 06:42:38 -0700 | [diff] [blame] | 99 | if not base_save_in_attic: |
Scott Baker | be2a517 | 2019-04-10 18:02:50 -0700 | [diff] [blame] | 100 | super({{ m.name }}{{ ns.any_legacy_tag }}, self).save(*args, **kwds) |
Sapan Bhatia | b5ce186 | 2017-07-31 15:48:19 -0400 | [diff] [blame] | 101 | |
| 102 | def can_access(self, ctx): |
| 103 | {% if m.policy %} |
| 104 | verdict = security.{{m.policy}}_security_check(self, ctx) |
| 105 | return verdict,"{{ m.policy }}" |
| 106 | {% else %} |
| 107 | verdict = True |
| 108 | return verdict,"xos_default_policy" |
| 109 | {% endif %} |
Sapan Bhatia | 9227b4d | 2017-07-25 23:14:48 -0400 | [diff] [blame] | 110 | |
Scott Baker | be2a517 | 2019-04-10 18:02:50 -0700 | [diff] [blame] | 111 | {# To maintain compatibility with migrations, we need to ensure that both the _decl and the non-_decl model #} |
| 112 | {# exist. So we automatically create all models as _decl, and then add these trivial stubs #} |
| 113 | {% if (not legacy) and (ns.any_legacy_tag) %} |
| 114 | class {{ m.name }}({{ m. name }}{{ ns.any_legacy_tag }}): |
| 115 | class Meta: |
| 116 | proxy = True |
| 117 | {% endif %} |
| 118 | |
Sapan Bhatia | 7148c08 | 2017-06-16 15:04:11 -0700 | [diff] [blame] | 119 | {% if file_exists(m.name|lower+'_bottom.py') -%}{{ include_file(m.name|lower+'_bottom.py') }}{% endif %} |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 120 | {% endfor %} |
Scott Baker | be2a517 | 2019-04-10 18:02:50 -0700 | [diff] [blame] | 121 | +++ models{{ ns.any_legacy_tag }}.py |