Matteo Scandolo | d2044a4 | 2017-08-07 16:08:28 -0700 | [diff] [blame] | 1 | # Copyright 2017-present Open Networking Foundation |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 16 | from base import xproto_string_type, unquote |
| 17 | |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 18 | |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 19 | def xproto_type_to_ui_type(f): |
| 20 | try: |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 21 | content_type = f["options"]["content_type"] |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 22 | content_type = eval(content_type) |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 23 | except BaseException: |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 24 | content_type = None |
| 25 | pass |
| 26 | |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 27 | if "choices" in f["options"]: |
| 28 | return "select" |
| 29 | elif content_type == "date": |
| 30 | return "date" |
| 31 | elif f["type"] == "bool": |
| 32 | return "boolean" |
| 33 | elif f["type"] == "string": |
| 34 | return xproto_string_type(f["options"]) |
| 35 | elif f["type"] in ["int", "uint32", "int32"] or "link" in f: |
| 36 | return "number" |
| 37 | elif f["type"] in ["double", "float"]: |
| 38 | return "string" |
| 39 | |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 40 | |
| 41 | def xproto_options_choices_to_dict(choices): |
| 42 | list = [] |
| 43 | |
| 44 | for c in eval(choices): |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 45 | list.append({"id": c[0], "label": c[1]}) |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 46 | if len(list) > 0: |
| 47 | return list |
| 48 | else: |
| 49 | return None |
| 50 | |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 51 | |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 52 | def xproto_validators(f): |
| 53 | # To be cleaned up when we formalize validation in xproto |
| 54 | validators = [] |
| 55 | |
| 56 | # bound-based validators |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 57 | bound_validators = [("max_length", "maxlength"), ("min", "min"), ("max", "max")] |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 58 | |
| 59 | for v0, v1 in bound_validators: |
| 60 | try: |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 61 | validators.append({"name": v1, "int_value": int(f["options"][v0])}) |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 62 | except KeyError: |
| 63 | pass |
| 64 | |
| 65 | # validators based on content_type |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 66 | content_type_validators = ["ip", "url", "email"] |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 67 | |
| 68 | for v in content_type_validators: |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 69 | # if f['name']=='ip': pdb.set_trace() |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 70 | try: |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 71 | val = unquote(f["options"]["content_type"]) == v |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 72 | if not val: |
| 73 | raise KeyError |
| 74 | |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 75 | validators.append({"name": v, "bool_value": True}) |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 76 | except KeyError: |
| 77 | pass |
| 78 | |
| 79 | # required validator |
| 80 | try: |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 81 | required = f["options"]["blank"] == "False" and f["options"]["null"] == "False" |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 82 | if required: |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 83 | validators.append({"name": "required", "bool_value": required}) |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 84 | except KeyError: |
| 85 | pass |
| 86 | |
| 87 | return validators |
| 88 | |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 89 | |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 90 | def is_number(s): |
| 91 | try: |
| 92 | float(s) |
| 93 | return True |
| 94 | except ValueError: |
| 95 | return False |
| 96 | |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 97 | |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 98 | def xproto_default_to_gui(default): |
Scott Baker | 4839dec | 2019-02-27 16:50:37 -0800 | [diff] [blame^] | 99 | # TODO: Using `eval` here is potentially dangerous as it may allow code injection |
Matteo Scandolo | 292cc2a | 2017-07-31 19:02:12 -0700 | [diff] [blame] | 100 | val = "null" |
Scott Baker | 4839dec | 2019-02-27 16:50:37 -0800 | [diff] [blame^] | 101 | try: |
| 102 | if is_number(default): |
| 103 | val = str(default) |
| 104 | elif eval(default) is True: |
| 105 | val = "true" |
| 106 | elif eval(default) is False: |
| 107 | val = "false" |
| 108 | elif eval(default) is None: |
| 109 | val = "null" |
| 110 | else: |
| 111 | val = str(default) |
| 112 | except NameError: |
| 113 | # val was a function call, and we can't pass those to the GUI |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 114 | val = "null" |
Scott Baker | 4839dec | 2019-02-27 16:50:37 -0800 | [diff] [blame^] | 115 | |
Matteo Scandolo | 1f826a4 | 2017-08-02 12:02:02 -0700 | [diff] [blame] | 116 | return val |
| 117 | |
| 118 | |
| 119 | def xproto_links_to_modeldef_relations(llst): |
| 120 | outlist = [] |
| 121 | seen = [] |
| 122 | for l in llst: |
| 123 | try: |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 124 | t = l["link_type"] |
| 125 | except KeyError as e: |
Matteo Scandolo | 1f826a4 | 2017-08-02 12:02:02 -0700 | [diff] [blame] | 126 | raise e |
| 127 | |
Zack Williams | 045b63d | 2019-01-22 16:30:57 -0700 | [diff] [blame] | 128 | if l["peer"]["fqn"] not in seen and t != "manytomany": |
| 129 | on_field = "null" |
| 130 | if l["link_type"] == "manytoone": |
| 131 | on_field = l["src_port"] |
| 132 | elif l["link_type"] == "onetomany": |
| 133 | on_field = l["dst_port"] |
| 134 | outlist.append( |
| 135 | "- {model: %s, type: %s, on_field: %s}\n" |
| 136 | % (l["peer"]["name"], l["link_type"], on_field) |
| 137 | ) |
| 138 | seen.append(l["peer"]) |
Matteo Scandolo | 1f826a4 | 2017-08-02 12:02:02 -0700 | [diff] [blame] | 139 | |
Sapan Bhatia | bfb233a | 2018-02-09 14:53:09 -0800 | [diff] [blame] | 140 | return outlist |