blob: ca81240734d613acbb032e819fe083900b46ef43 [file] [log] [blame]
Sapan Bhatiad022aeb2017-06-07 15:49:55 +02001{% for m in proto.messages %}{% if not m.options.skip_django -%}
Sapan Bhatia4e80a262017-05-19 23:10:51 +02002{% if file_exists(xproto_base_name(m.name)|lower+'_header.py') -%}from {{xproto_base_name(m.name)|lower }}_header import *{%- else -%}from header import *{% endif %}
Sapan Bhatiac4f803f2017-04-21 11:50:39 +02003{% if file_exists(xproto_base_name(m.name)|lower+'_top.py') -%}{{ include_file(xproto_base_name(m.name)|lower+'_top.py') }} {% endif %}
Sapan Bhatiaff1b8fa2017-04-10 19:44:38 -07004{%- for l in m.links %}
Sapan Bhatiac4f803f2017-04-21 11:50:39 +02005
Sapan Bhatia3cfdf632017-06-08 05:14:03 +02006{% if l.peer.name != m.name %}
Sapan Bhatiab5ce1862017-07-31 15:48:19 -04007from {{ l.peer.name | lower }} import {{ l.peer.name }}
Sapan Bhatiac4f803f2017-04-21 11:50:39 +02008{% endif %}
9
Sapan Bhatiaff1b8fa2017-04-10 19:44:38 -070010{%- endfor %}
Sapan Bhatiab5ce1862017-07-31 15:48:19 -040011{% if m.name!='XOSBase' and 'Mixin' not in m.name %}
12import security
13{% if m.name!='Privilege' %}
14from privilege import Privilege
15{% endif %}
16{% endif %}
Sapan Bhatiac4f803f2017-04-21 11:50:39 +020017{% for b in m.bases %}
Sapan Bhatia3cfdf632017-06-08 05:14:03 +020018{% if b.name!='XOSBase' and 'Mixin' not in b.name %}
Sapan Bhatiab5ce1862017-07-31 15:48:19 -040019from {{b.name | lower}} import {{ b.name }}
Sapan Bhatiac4f803f2017-04-21 11:50:39 +020020{% endif %}
21{% endfor %}
22
Sapan Bhatia9227b4d2017-07-25 23:14:48 -040023{% for policy,error in xproto_validations(m.options) %}
24{{ xproto_fol_to_python_validator(policy, proto.policies[policy], m, error) }}
25{% endfor %}
Sapan Bhatiaff1b8fa2017-04-10 19:44:38 -070026
Sapan Bhatia4e80a262017-05-19 23:10:51 +020027class {{ m.name }}{{ xproto_base_def(m.name, m.bases) }}:
Sapan Bhatia2941a052017-07-10 15:10:03 -040028 plural_name = "{{ xproto_pluralize(m) }}"
29
Matteo Scandolo39b4a272017-11-17 11:09:21 -080030{# {% if m.options.no_sync or m.options.no_policy %}#}
31{# {% if m.options.no_sync -%}#}
32{# # Removing synchronizer feedback state from model#}
33{# backend_status = None#}
34{# backend_code = None#}
35{# {%- endif %}#}
36{# {% if m.options.no_policy -%}#}
37{# # Removing model policy feedback state from model#}
38{# policy_code = None#}
39{# policy_status = None#}
40{# {%- endif %}#}
41{# {% endif %}#}
42
Sapan Bhatiaff1b8fa2017-04-10 19:44:38 -070043 # Primitive Fields (Not Relations)
Sapan Bhatiac4f803f2017-04-21 11:50:39 +020044 {% for f in m.fields %}
45 {%- if not f.link -%}
Sapan Bhatiaff1b8fa2017-04-10 19:44:38 -070046 {{ f.name }} = {{ xproto_django_type(f.type, f.options) }}( {{ xproto_django_options_str(f) }} )
Sapan Bhatiac4f803f2017-04-21 11:50:39 +020047 {% endif %}
Sapan Bhatiaff1b8fa2017-04-10 19:44:38 -070048 {%- endfor %}
49
50 # Relations
Sapan Bhatia3cfdf632017-06-08 05:14:03 +020051 {% for l in m.links %}{% set peer_name=l.peer.name %}
52 {{ l.src_port }} = {{ xproto_django_link_type(l) }}( {%- if peer_name==m.name -%}'self'{%- else -%}{{ peer_name }} {%- endif -%}, {{ xproto_django_link_options_str(l, l.dst_port ) }} )
Sapan Bhatiaff1b8fa2017-04-10 19:44:38 -070053 {%- endfor %}
54
Sapan Bhatiaf7934b52017-06-12 05:04:23 -070055 # Meta
56 {%- set uniques = xproto_field_graph_components(m.fields) %}
57 {%- if uniques %}
58 class Meta:
59 unique_together = {{ xproto_tuplify(uniques) }}
60 {%- endif %}
Sapan Bhatiac4f803f2017-04-21 11:50:39 +020061 {% if file_exists(m.name|lower + '_model.py') -%}{{ include_file(m.name|lower + '_model.py') | indent(width=2)}}{%- endif %}
62 pass
Sapan Bhatiaff1b8fa2017-04-10 19:44:38 -070063
Sapan Bhatia9227b4d2017-07-25 23:14:48 -040064 {% if m.name!='XOSBase' and 'Mixin' not in m.name %}
65 # Generated methods
66 def save(self, *args, **kwds):
Sapan Bhatia113c2b92017-07-25 08:41:58 -040067 if not self.leaf_model_name:
68 self.leaf_model_name = "{{ m.name }}"
69
Sapan Bhatia9227b4d2017-07-25 23:14:48 -040070 try:
71 self.__xos_save_base(*args, **kwds)
72 except AttributeError:
73 pass
74
75 {% for policy,error in xproto_validations(m.options) %}
76 policy_{{policy}}_validator(self, None)
77 {% endfor %}
78 super({{ m.name }}, self).save(*args, **kwds)
Sapan Bhatiab5ce1862017-07-31 15:48:19 -040079
80 def can_access(self, ctx):
81 {% if m.policy %}
82 verdict = security.{{m.policy}}_security_check(self, ctx)
83 return verdict,"{{ m.policy }}"
84 {% else %}
85 verdict = XOS_GLOBAL_DEFAULT_SECURITY_POLICY
86 return verdict,"xos_default_policy"
87 {% endif %}
88
Sapan Bhatia9227b4d2017-07-25 23:14:48 -040089 {% endif %}
90
Sapan Bhatiac4f803f2017-04-21 11:50:39 +020091{% if file_exists(xproto_base_name(m.name)|lower+'_bottom.py') -%}{{ include_file(xproto_base_name(m.name)|lower+'_bottom.py') }}{% endif %}
Sapan Bhatia2941a052017-07-10 15:10:03 -040092{% endif %}{% endfor %}