File: util.py

package info (click to toggle)
python-openapi-core 0.19.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,008 kB
  • sloc: python: 18,868; makefile: 47
file content (201 lines) | stat: -rw-r--r-- 5,854 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
import re
from functools import partial
from typing import Any
from typing import List
from typing import Mapping

from openapi_core.schema.protocols import SuportsGetAll
from openapi_core.schema.protocols import SuportsGetList


def split(value: str, separator: str = ",", step: int = 1) -> List[str]:
    parts = value.split(separator)

    if step == 1:
        return parts

    result = []
    for i in range(len(parts)):
        if i % step == 0:
            if i + 1 < len(parts):
                result.append(parts[i] + separator + parts[i + 1])
    return result


def delimited_loads(
    explode: bool,
    name: str,
    schema_type: str,
    location: Mapping[str, Any],
    delimiter: str,
) -> Any:
    value = location[name]

    explode_type = (explode, schema_type)
    if explode_type == (False, "array"):
        return split(value, separator=delimiter)
    if explode_type == (False, "object"):
        return dict(
            map(
                partial(split, separator=delimiter),
                split(value, separator=delimiter, step=2),
            )
        )

    raise ValueError("not available")


def matrix_loads(
    explode: bool, name: str, schema_type: str, location: Mapping[str, Any]
) -> Any:
    if explode == False:
        m = re.match(rf"^;{name}=(.*)$", location[f";{name}"])
        if m is None:
            raise KeyError(name)
        value = m.group(1)
        # ;color=blue,black,brown
        if schema_type == "array":
            return split(value)
        # ;color=R,100,G,200,B,150
        if schema_type == "object":
            return dict(map(split, split(value, step=2)))
        # .;color=blue
        return value
    else:
        # ;color=blue;color=black;color=brown
        if schema_type == "array":
            return re.findall(rf";{name}=([^;]*)", location[f";{name}*"])
        # ;R=100;G=200;B=150
        if schema_type == "object":
            value = location[f";{name}*"]
            return dict(
                map(
                    partial(split, separator="="),
                    split(value[1:], separator=";"),
                )
            )
        # ;color=blue
        m = re.match(rf"^;{name}=(.*)$", location[f";{name}*"])
        if m is None:
            raise KeyError(name)
        value = m.group(1)
        return value


def label_loads(
    explode: bool, name: str, schema_type: str, location: Mapping[str, Any]
) -> Any:
    if explode == False:
        value = location[f".{name}"]
        # .blue,black,brown
        if schema_type == "array":
            return split(value[1:])
        # .R,100,G,200,B,150
        if schema_type == "object":
            return dict(map(split, split(value[1:], separator=",", step=2)))
        # .blue
        return value[1:]
    else:
        value = location[f".{name}*"]
        # .blue.black.brown
        if schema_type == "array":
            return split(value[1:], separator=".")
        # .R=100.G=200.B=150
        if schema_type == "object":
            return dict(
                map(
                    partial(split, separator="="),
                    split(value[1:], separator="."),
                )
            )
        # .blue
        return value[1:]


def form_loads(
    explode: bool, name: str, schema_type: str, location: Mapping[str, Any]
) -> Any:
    explode_type = (explode, schema_type)
    # color=blue,black,brown
    if explode_type == (False, "array"):
        return split(location[name], separator=",")
    # color=blue&color=black&color=brown
    elif explode_type == (True, "array"):
        if name not in location:
            raise KeyError(name)
        if isinstance(location, SuportsGetAll):
            return location.getall(name)
        if isinstance(location, SuportsGetList):
            return location.getlist(name)
        return location[name]

    value = location[name]
    # color=R,100,G,200,B,150
    if explode_type == (False, "object"):
        return dict(map(split, split(value, separator=",", step=2)))
    # R=100&G=200&B=150
    elif explode_type == (True, "object"):
        return dict(
            map(partial(split, separator="="), split(value, separator="&"))
        )

    # color=blue
    return value


def simple_loads(
    explode: bool, name: str, schema_type: str, location: Mapping[str, Any]
) -> Any:
    value = location[name]

    # blue,black,brown
    if schema_type == "array":
        return split(value, separator=",")

    explode_type = (explode, schema_type)
    # R,100,G,200,B,150
    if explode_type == (False, "object"):
        return dict(map(split, split(value, separator=",", step=2)))
    # R=100,G=200,B=150
    elif explode_type == (True, "object"):
        return dict(
            map(partial(split, separator="="), split(value, separator=","))
        )

    # blue
    return value


def space_delimited_loads(
    explode: bool, name: str, schema_type: str, location: Mapping[str, Any]
) -> Any:
    return delimited_loads(
        explode, name, schema_type, location, delimiter="%20"
    )


def pipe_delimited_loads(
    explode: bool, name: str, schema_type: str, location: Mapping[str, Any]
) -> Any:
    return delimited_loads(explode, name, schema_type, location, delimiter="|")


def deep_object_loads(
    explode: bool, name: str, schema_type: str, location: Mapping[str, Any]
) -> Any:
    explode_type = (explode, schema_type)

    if explode_type != (True, "object"):
        raise ValueError("not available")

    keys_str = " ".join(location.keys())
    if not re.search(rf"{name}\[\w+\]", keys_str):
        raise KeyError(name)

    values = {}
    for key, value in location.items():
        # Split the key from the brackets.
        key_split = re.split(pattern=r"\[|\]", string=key)
        if key_split[0] == name:
            values[key_split[1]] = value
    return values