Sapan Bhatia | 7148c08 | 2017-06-16 15:04:11 -0700 | [diff] [blame] | 1 | {% if options.legacy =='"True"' -%} |
| 2 | {% set legacy_tag = '_decl' %} |
| 3 | {% set legacy = True %} |
| 4 | from core.models.xosbase import * |
Sapan Bhatia | 95f5b11 | 2017-10-09 21:51:02 -0400 | [diff] [blame] | 5 | from core.models import ServiceInstance, TenantWithContainer |
Sapan Bhatia | 7148c08 | 2017-06-16 15:04:11 -0700 | [diff] [blame] | 6 | {% else %} |
| 7 | {% set legacy = False %} |
| 8 | {% set legacy_tag = '' %} |
Sapan Bhatia | 95f5b11 | 2017-10-09 21:51:02 -0400 | [diff] [blame] | 9 | {% if file_exists('../header.py') or file_exists('header.py')-%}from header import * |
| 10 | {% else %} |
| 11 | from core.models.xosbase import * |
| 12 | from core.models import ServiceInstance, TenantWithContainer |
| 13 | {% endif %} |
Sapan Bhatia | 7148c08 | 2017-06-16 15:04:11 -0700 | [diff] [blame] | 14 | {% endif %} |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 15 | |
| 16 | {% for m in proto.messages %} |
| 17 | {% if file_exists(m.name|lower+'_header.py') -%}from {{m.name|lower }}_header import *{% endif %} |
| 18 | {% if file_exists(m.name|lower+'_top.py') -%}{{ include_file(m.name|lower+'_top.py') }} {% endif %} |
| 19 | |
Sapan Bhatia | 3cfdf63 | 2017-06-08 05:14:03 +0200 | [diff] [blame] | 20 | {%- for l in m.links -%}{% set peer_name=l.peer.name %} |
Sapan Bhatia | 0027417 | 2017-07-20 09:05:46 -0400 | [diff] [blame] | 21 | |
Sapan Bhatia | 3cfdf63 | 2017-06-08 05:14:03 +0200 | [diff] [blame] | 22 | {% if peer_name not in proto.message_names -%} |
| 23 | from core.models import {{ peer_name }} |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 24 | {%- endif -%} |
| 25 | {%- endfor -%} |
| 26 | {%- for b in m.bases -%} |
Sapan Bhatia | 3cfdf63 | 2017-06-08 05:14:03 +0200 | [diff] [blame] | 27 | {%- if b.name!='XOSBase' and 'Mixin' not in b.name %} |
Sapan Bhatia | 0027417 | 2017-07-20 09:05:46 -0400 | [diff] [blame] | 28 | {% if b.name not in proto.message_names %} |
Sapan Bhatia | 3cfdf63 | 2017-06-08 05:14:03 +0200 | [diff] [blame] | 29 | from core.models import {{ b.name }} |
Sapan Bhatia | 0027417 | 2017-07-20 09:05:46 -0400 | [diff] [blame] | 30 | {% endif %} |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 31 | {%- endif -%} |
| 32 | {% endfor %} |
| 33 | |
Sapan Bhatia | 9227b4d | 2017-07-25 23:14:48 -0400 | [diff] [blame] | 34 | {% for policy,error in xproto_validations(m.options) %} |
| 35 | {{ xproto_fol_to_python_validator(policy, proto.policies[policy], m, error) }} |
| 36 | {% endfor %} |
| 37 | |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 38 | {% endfor %} |
| 39 | |
| 40 | {% for m in proto.messages %} |
Sapan Bhatia | a3d2e62 | 2017-07-31 22:25:55 -0400 | [diff] [blame] | 41 | class {{ m.name }}{{ 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] | 42 | plural_name = "{{ xproto_pluralize(m) }}" |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 43 | |
| 44 | KIND = {{ xproto_first_non_empty([m.options.kind, options.kind, options.name, "Set a kind in your xproto!"]) }} |
| 45 | |
| 46 | class Meta: |
| 47 | app_label = {{ xproto_first_non_empty([m.options.app_label, options.app_label, options.name, "Set an app label in your xproto!"]) | lower}} |
| 48 | # 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] | 49 | verbose_name = "{{ xproto_unquote(xproto_first_non_empty([m.options.verbose_name, m.name])) }}" |
Sapan Bhatia | 504cc97 | 2017-04-27 01:56:28 +0200 | [diff] [blame] | 50 | |
| 51 | # Primitive Fields (Not Relations) |
| 52 | {% for f in m.fields %} |
| 53 | {%- if not f.link -%} |
| 54 | {{ f.name }} = {{ xproto_django_type(f.type, f.options) }}( {{ xproto_django_options_str(f) }} ) |
| 55 | {% endif %} |
| 56 | {%- endfor %} |
| 57 | |
| 58 | # Relations |
Sapan Bhatia | 3cfdf63 | 2017-06-08 05:14:03 +0200 | [diff] [blame] | 59 | {% for l in m.links %}{% set peer_name=l.peer.name %} |
Sapan Bhatia | 7148c08 | 2017-06-16 15:04:11 -0700 | [diff] [blame] | 60 | {% if legacy and peer_name in proto.message_names %}{% set peer_tag = legacy_tag %}{% else %}{% set peer_tag = '' %}{% endif -%} |
| 61 | {{ 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] | 62 | {%- endfor %} |
| 63 | |
| 64 | {% if file_exists(m.name|lower + '_model.py') -%}{{ include_file(m.name|lower + '_model.py') | indent(width=2)}}{%- endif %} |
| 65 | pass |
| 66 | |
Sapan Bhatia | 9227b4d | 2017-07-25 23:14:48 -0400 | [diff] [blame] | 67 | # Generated methods |
| 68 | def save(self, *args, **kwds): |
Sapan Bhatia | 113c2b9 | 2017-07-25 08:41:58 -0400 | [diff] [blame] | 69 | if not self.leaf_model_name: |
| 70 | self.leaf_model_name = "{{ m.name }}" |
| 71 | |
Sapan Bhatia | 9227b4d | 2017-07-25 23:14:48 -0400 | [diff] [blame] | 72 | {% for policy,error in xproto_validations(m.options) %} |
| 73 | policy_{{policy}}_validator(self, None) |
| 74 | {% endfor %} |
Sapan Bhatia | 0d6990a | 2017-09-20 06:42:38 -0700 | [diff] [blame] | 75 | |
| 76 | try: |
| 77 | base_save_in_attic = self.__xos_save_base(*args, **kwds) |
| 78 | except AttributeError: |
| 79 | base_save_in_attic = False |
| 80 | |
| 81 | if not base_save_in_attic: |
| 82 | super({{ m.name }}{{ legacy_tag }}, self).save(*args, **kwds) |
Sapan Bhatia | b5ce186 | 2017-07-31 15:48:19 -0400 | [diff] [blame] | 83 | |
| 84 | def can_access(self, ctx): |
| 85 | {% if m.policy %} |
| 86 | verdict = security.{{m.policy}}_security_check(self, ctx) |
| 87 | return verdict,"{{ m.policy }}" |
| 88 | {% else %} |
| 89 | verdict = True |
| 90 | return verdict,"xos_default_policy" |
| 91 | {% endif %} |
Sapan Bhatia | 9227b4d | 2017-07-25 23:14:48 -0400 | [diff] [blame] | 92 | |
Sapan Bhatia | 7148c08 | 2017-06-16 15:04:11 -0700 | [diff] [blame] | 93 | {% 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] | 94 | {% endfor %} |
Sapan Bhatia | 2941a05 | 2017-07-10 15:10:03 -0400 | [diff] [blame] | 95 | +++ models{{ legacy_tag }}.py |