-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathheaders.ts
138 lines (110 loc) · 3.24 KB
/
headers.ts
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
/*
* Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
*/
import { AxiosResponseHeaders, RawAxiosResponseHeaders } from "axios";
import {
ParamDecorator,
isBooleanRecord,
isEmpty,
isNumberRecord,
isStringRecord,
parseParamDecorator,
valToString,
} from "./utils";
import { requestMetadataKey } from "./requestbody";
export const headerMetadataKey = "header";
export function getHeadersFromRequest(headerParams: any): any {
if (headerParams == null) return;
const headers: any = {};
const fieldNames: string[] = Object.getOwnPropertyNames(headerParams);
fieldNames.forEach((fname) => {
const requestBodyAnn: string = Reflect.getMetadata(
requestMetadataKey,
headerParams,
fname,
);
if (requestBodyAnn) return;
const headerAnn: string = Reflect.getMetadata(
headerMetadataKey,
headerParams,
fname,
);
if (headerAnn == null) return;
const headerDecorator: ParamDecorator = parseParamDecorator(
headerAnn,
fname,
"simple",
false,
);
if (headerDecorator == null) return;
const value: string = serializeHeader(
headerParams[fname],
headerDecorator.Explode,
);
if (value != "") headers[headerDecorator.ParamName] = value;
});
return headers;
}
export function getHeadersFromResponse(
headers: RawAxiosResponseHeaders | AxiosResponseHeaders,
): Record<string, string[]> {
const reponseHeaders: Record<string, string[]> = {};
Object.keys(headers).forEach((key) => {
const value = headers[key];
if (!value) return;
if (Array.isArray(value)) {
const h: string[] = [];
value.forEach((val: any) => {
if (val) {
h.push(String(val));
}
});
reponseHeaders[key] = h;
} else {
reponseHeaders[key] = [value];
}
});
return reponseHeaders;
}
function serializeHeader(header: any, explode: boolean): string {
const headerVals: string[] = [];
if (Array.isArray(header)) {
header.forEach((val: any) => {
headerVals.push(valToString(val));
});
} else if (
isStringRecord(header) ||
isNumberRecord(header) ||
isBooleanRecord(header)
) {
Object.getOwnPropertyNames(header).forEach((headerKey: string) => {
if (explode)
headerVals.push(`${headerKey}=${valToString(header[headerKey])}`);
else headerVals.push(`${headerKey},${valToString(header[headerKey])}`);
});
} else if (header instanceof Object) {
Object.getOwnPropertyNames(header).forEach((headerKey: string) => {
const headerAnn: string = Reflect.getMetadata(
headerMetadataKey,
header,
headerKey,
);
if (headerAnn == null) return;
const headerDecorator: ParamDecorator = parseParamDecorator(
headerAnn,
headerKey,
"simple",
explode,
);
if (headerDecorator == null) return;
const headerFieldValue = valToString(header[headerKey]);
if (isEmpty(headerFieldValue)) return;
else if (explode)
headerVals.push(`${headerDecorator.ParamName}=${headerFieldValue}`);
else headerVals.push(`${headerDecorator.ParamName},${headerFieldValue}`);
});
} else {
return String(header);
}
return headerVals.join(",");
}