40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
/**
|
|
* 自定义请求头处理工具
|
|
*/
|
|
|
|
export interface HeaderEntry {
|
|
key: string;
|
|
value: string;
|
|
}
|
|
|
|
export function buildHeaderObject(input?: HeaderEntry[] | Record<string, string | undefined | null>): Record<string, string> {
|
|
if (!input) return {};
|
|
|
|
if (Array.isArray(input)) {
|
|
return input.reduce<Record<string, string>>((acc, item) => {
|
|
const key = item?.key?.trim();
|
|
const value = item?.value?.trim();
|
|
if (key && value !== undefined && value !== null && value !== '') {
|
|
acc[key] = value;
|
|
}
|
|
return acc;
|
|
}, {});
|
|
}
|
|
|
|
return Object.entries(input).reduce<Record<string, string>>((acc, [rawKey, rawValue]) => {
|
|
const key = rawKey?.trim();
|
|
const value = typeof rawValue === 'string' ? rawValue.trim() : rawValue;
|
|
if (key && value !== undefined && value !== null && value !== '') {
|
|
acc[key] = String(value);
|
|
}
|
|
return acc;
|
|
}, {});
|
|
}
|
|
|
|
export function headersToEntries(headers?: Record<string, string | undefined | null>): HeaderEntry[] {
|
|
if (!headers || typeof headers !== 'object') return [];
|
|
return Object.entries(headers)
|
|
.filter(([, value]) => value !== undefined && value !== null && value !== '')
|
|
.map(([key, value]) => ({ key, value: String(value) }));
|
|
}
|