blob: 1c8ce934f30cfe8e8e12a46fde83540d49bf374b [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
Sapan Bhatiaff1b8fa2017-04-10 19:44:38 -070030 # Primitive Fields (Not Relations)
Sapan Bhatiac4f803f2017-04-21 11:50:39 +020031 {% for f in m.fields %}
32 {%- if not f.link -%}
Sapan Bhatiaff1b8fa2017-04-10 19:44:38 -070033 {{ f.name }} = {{ xproto_django_type(f.type, f.options) }}( {{ xproto_django_options_str(f) }} )
Sapan Bhatiac4f803f2017-04-21 11:50:39 +020034 {% endif %}
Sapan Bhatiaff1b8fa2017-04-10 19:44:38 -070035 {%- endfor %}
36
37 # Relations
Sapan Bhatia3cfdf632017-06-08 05:14:03 +020038 {% for l in m.links %}{% set peer_name=l.peer.name %}
39 {{ 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 -070040 {%- endfor %}
41
Sapan Bhatiaf7934b52017-06-12 05:04:23 -070042 # Meta
43 {%- set uniques = xproto_field_graph_components(m.fields) %}
44 {%- if uniques %}
45 class Meta:
46 unique_together = {{ xproto_tuplify(uniques) }}
47 {%- endif %}
Sapan Bhatiac4f803f2017-04-21 11:50:39 +020048 {% if file_exists(m.name|lower + '_model.py') -%}{{ include_file(m.name|lower + '_model.py') | indent(width=2)}}{%- endif %}
49 pass
Sapan Bhatiaff1b8fa2017-04-10 19:44:38 -070050
Sapan Bhatia9227b4d2017-07-25 23:14:48 -040051 {% if m.name!='XOSBase' and 'Mixin' not in m.name %}
52 # Generated methods
53 def save(self, *args, **kwds):
Sapan Bhatia113c2b92017-07-25 08:41:58 -040054 if not self.leaf_model_name:
55 self.leaf_model_name = "{{ m.name }}"
56
Sapan Bhatia9227b4d2017-07-25 23:14:48 -040057 try:
58 self.__xos_save_base(*args, **kwds)
59 except AttributeError:
60 pass
61
62 {% for policy,error in xproto_validations(m.options) %}
63 policy_{{policy}}_validator(self, None)
64 {% endfor %}
65 super({{ m.name }}, self).save(*args, **kwds)
Sapan Bhatiab5ce1862017-07-31 15:48:19 -040066
67 def can_access(self, ctx):
68 {% if m.policy %}
69 verdict = security.{{m.policy}}_security_check(self, ctx)
70 return verdict,"{{ m.policy }}"
71 {% else %}
72 verdict = XOS_GLOBAL_DEFAULT_SECURITY_POLICY
73 return verdict,"xos_default_policy"
74 {% endif %}
75
Sapan Bhatia9227b4d2017-07-25 23:14:48 -040076 {% endif %}
77
Sapan Bhatiac4f803f2017-04-21 11:50:39 +020078{% 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 -040079{% endif %}{% endfor %}