blob: 9d2915ddbdf66c24db58b9afb042d2b9a69ad9a5 [file] [log] [blame]
Sapan Bhatia7148c082017-06-16 15:04:11 -07001{% if options.legacy =='"True"' -%}
2{% set legacy_tag = '_decl' %}
3{% set legacy = True %}
4from core.models.xosbase import *
Sapan Bhatia95f5b112017-10-09 21:51:02 -04005from core.models import ServiceInstance, TenantWithContainer
Sapan Bhatia7148c082017-06-16 15:04:11 -07006{% else %}
7{% set legacy = False %}
8{% set legacy_tag = '' %}
Sapan Bhatia95f5b112017-10-09 21:51:02 -04009{% if file_exists('../header.py') or file_exists('header.py')-%}from header import *
10{% else %}
11from core.models.xosbase import *
12from core.models import ServiceInstance, TenantWithContainer
13{% endif %}
Sapan Bhatia7148c082017-06-16 15:04:11 -070014{% endif %}
Sapan Bhatia504cc972017-04-27 01:56:28 +020015
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 Bhatia3cfdf632017-06-08 05:14:03 +020020{%- for l in m.links -%}{% set peer_name=l.peer.name %}
Sapan Bhatia00274172017-07-20 09:05:46 -040021
Sapan Bhatia3cfdf632017-06-08 05:14:03 +020022{% if peer_name not in proto.message_names -%}
23from core.models import {{ peer_name }}
Sapan Bhatia504cc972017-04-27 01:56:28 +020024{%- endif -%}
25{%- endfor -%}
26{%- for b in m.bases -%}
Sapan Bhatia3cfdf632017-06-08 05:14:03 +020027{%- if b.name!='XOSBase' and 'Mixin' not in b.name %}
Sapan Bhatia00274172017-07-20 09:05:46 -040028{% if b.name not in proto.message_names %}
Sapan Bhatia3cfdf632017-06-08 05:14:03 +020029from core.models import {{ b.name }}
Sapan Bhatia00274172017-07-20 09:05:46 -040030{% endif %}
Sapan Bhatia504cc972017-04-27 01:56:28 +020031{%- endif -%}
32{% endfor %}
33
Sapan Bhatia9227b4d2017-07-25 23:14:48 -040034{% for policy,error in xproto_validations(m.options) %}
35{{ xproto_fol_to_python_validator(policy, proto.policies[policy], m, error) }}
36{% endfor %}
37
Sapan Bhatia504cc972017-04-27 01:56:28 +020038{% endfor %}
39
40{% for m in proto.messages %}
Sapan Bhatiaa3d2e622017-07-31 22:25:55 -040041class {{ m.name }}{{ legacy_tag }}{{ xproto_base_def(m.name, m.bases, legacy_tag, proto.message_names) }}:
Sapan Bhatia2941a052017-07-10 15:10:03 -040042 plural_name = "{{ xproto_pluralize(m) }}"
Sapan Bhatia504cc972017-04-27 01:56:28 +020043
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 Scandoloe425f9d2017-08-15 15:56:19 -070049 verbose_name = "{{ xproto_unquote(xproto_first_non_empty([m.options.verbose_name, m.name])) }}"
Sapan Bhatia504cc972017-04-27 01:56:28 +020050
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 Bhatia3cfdf632017-06-08 05:14:03 +020059 {% for l in m.links %}{% set peer_name=l.peer.name %}
Sapan Bhatia7148c082017-06-16 15:04:11 -070060 {% 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 Bhatia504cc972017-04-27 01:56:28 +020062 {%- 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 Bhatia9227b4d2017-07-25 23:14:48 -040067 # Generated methods
68 def save(self, *args, **kwds):
Sapan Bhatia113c2b92017-07-25 08:41:58 -040069 if not self.leaf_model_name:
70 self.leaf_model_name = "{{ m.name }}"
71
Sapan Bhatia9227b4d2017-07-25 23:14:48 -040072 {% for policy,error in xproto_validations(m.options) %}
73 policy_{{policy}}_validator(self, None)
74 {% endfor %}
Sapan Bhatia0d6990a2017-09-20 06:42:38 -070075
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 Bhatiab5ce1862017-07-31 15:48:19 -040083
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 Bhatia9227b4d2017-07-25 23:14:48 -040092
Sapan Bhatia7148c082017-06-16 15:04:11 -070093{% if file_exists(m.name|lower+'_bottom.py') -%}{{ include_file(m.name|lower+'_bottom.py') }}{% endif %}
Sapan Bhatia504cc972017-04-27 01:56:28 +020094{% endfor %}
Sapan Bhatia2941a052017-07-10 15:10:03 -040095+++ models{{ legacy_tag }}.py