152 lines
4.3 KiB
TypeScript
152 lines
4.3 KiB
TypeScript
/*
|
||
* Tencent is pleased to support the open source community by making TMagicEditor available.
|
||
*
|
||
* Copyright (C) 2023 THL A29 Limited, a Tencent company. All rights reserved.
|
||
*
|
||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
* you may not use this file except in compliance with the License.
|
||
* You may obtain a copy of the License at
|
||
*
|
||
* http://www.apache.org/licenses/LICENSE-2.0
|
||
*
|
||
* Unless required by applicable law or agreed to in writing, software
|
||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
* See the License for the specific language governing permissions and
|
||
* limitations under the License.
|
||
*/
|
||
import { getValueByKeyPath } from '@tmagic/utils';
|
||
|
||
import { HttpDataSourceOptions, HttpDataSourceSchema, HttpOptions, RequestFunction } from '@data-source/types';
|
||
|
||
import DataSource from './Base';
|
||
|
||
/**
|
||
* 将json对象转换为urlencoded字符串
|
||
* @param data json对象
|
||
* @returns string
|
||
*/
|
||
const urlencoded = (data: Record<string, string | number | boolean | null | undefined>) =>
|
||
Object.entries(data).reduce((prev, [key, value]) => {
|
||
let v = value;
|
||
if (typeof value === 'object') {
|
||
v = JSON.stringify(value);
|
||
}
|
||
if (typeof value !== 'undefined') {
|
||
return `${prev}${prev ? '&' : ''}${globalThis.encodeURIComponent(key)}=${globalThis.encodeURIComponent(`${v}`)}`;
|
||
}
|
||
return prev;
|
||
}, '');
|
||
|
||
/**
|
||
* 浏览器端请求
|
||
* 如果未有自定义的request方法,则使用浏览器的fetch方法
|
||
* @param options 请求参数
|
||
*/
|
||
const webRequest = async (options: HttpOptions) => {
|
||
const { url, method = 'GET', headers = {}, params = {}, data = {}, ...config } = options;
|
||
const query = urlencoded(params);
|
||
let body: string = JSON.stringify(data);
|
||
if (headers['Content-Type']?.includes('application/x-www-form-urlencoded')) {
|
||
body = urlencoded(data);
|
||
}
|
||
|
||
const response = await globalThis.fetch(query ? `${url}?${query}` : url, {
|
||
method,
|
||
headers,
|
||
body: method === 'GET' ? undefined : body,
|
||
...config,
|
||
});
|
||
|
||
return response.json();
|
||
};
|
||
|
||
/**
|
||
* Http 数据源
|
||
* @description 通过 http 请求获取数据
|
||
*/
|
||
export default class HttpDataSource extends DataSource {
|
||
public type = 'http';
|
||
|
||
public isLoading = false;
|
||
public error?: Error;
|
||
public schema: HttpDataSourceSchema;
|
||
public httpOptions: HttpOptions;
|
||
|
||
private fetch?: RequestFunction;
|
||
private beforeRequest: ((...args: any[]) => any)[] = [];
|
||
private afterRequest: ((...args: any[]) => any)[] = [];
|
||
|
||
constructor(options: HttpDataSourceOptions) {
|
||
const { options: httpOptions, ...dataSourceOptions } = options.schema;
|
||
|
||
super({
|
||
schema: dataSourceOptions,
|
||
app: options.app,
|
||
});
|
||
|
||
this.schema = options.schema;
|
||
this.httpOptions = httpOptions;
|
||
|
||
if (typeof options.request === 'function') {
|
||
this.fetch = options.request;
|
||
} else if (typeof globalThis.fetch === 'function') {
|
||
this.fetch = webRequest;
|
||
}
|
||
|
||
this.getMethods().forEach((method) => {
|
||
if (typeof method.content !== 'function') return;
|
||
if (method.timing === 'beforeRequest') {
|
||
this.beforeRequest.push(method.content);
|
||
}
|
||
if (method.timing === 'afterRequest') {
|
||
this.afterRequest.push(method.content);
|
||
}
|
||
});
|
||
}
|
||
|
||
public async init() {
|
||
if (this.schema.autoFetch) {
|
||
await this.request(this.httpOptions);
|
||
}
|
||
|
||
super.init();
|
||
}
|
||
|
||
public async request(options: HttpOptions) {
|
||
await Promise.all(
|
||
this.beforeRequest.map((method) => method({ options, params: {}, dataSource: this, app: this.app })),
|
||
);
|
||
|
||
const res = await this.fetch?.({
|
||
...this.httpOptions,
|
||
...options,
|
||
});
|
||
|
||
await Promise.all(
|
||
this.afterRequest.map((method) => method({ res, options, params: {}, dataSource: this, app: this.app })),
|
||
);
|
||
|
||
if (this.schema.responseOptions?.dataPath) {
|
||
const data = getValueByKeyPath(this.schema.responseOptions.dataPath, res);
|
||
this.setData(data);
|
||
} else {
|
||
this.setData(res);
|
||
}
|
||
}
|
||
|
||
public get(options: Partial<HttpOptions> & { url: string }) {
|
||
return this.request({
|
||
...options,
|
||
method: 'GET',
|
||
});
|
||
}
|
||
|
||
public post(options: Partial<HttpOptions> & { url: string }) {
|
||
return this.request({
|
||
...options,
|
||
method: 'POST',
|
||
});
|
||
}
|
||
}
|