mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) move home server into core
Summary: This moves enough server material into core to run a home server. The data engine is not yet incorporated (though in manual testing it works when ported). Test Plan: existing tests pass Reviewers: dsagal Reviewed By: dsagal Differential Revision: https://phab.getgrist.com/D2552
This commit is contained in:
124
app/common/BaseAPI.ts
Normal file
124
app/common/BaseAPI.ts
Normal file
@@ -0,0 +1,124 @@
|
||||
import {ApiError, ApiErrorDetails} from 'app/common/ApiError';
|
||||
import axios, {AxiosRequestConfig, AxiosResponse} from 'axios';
|
||||
import {tbind} from './tbind';
|
||||
|
||||
export type ILogger = Pick<Console, 'log'|'debug'|'info'|'warn'|'error'>;
|
||||
|
||||
export interface IOptions {
|
||||
headers?: Record<string, string>;
|
||||
fetch?: typeof fetch;
|
||||
newFormData?: () => FormData; // constructor for FormData depends on platform.
|
||||
logger?: ILogger;
|
||||
extraParameters?: Map<string, string>; // if set, add query parameters to requests.
|
||||
}
|
||||
|
||||
/**
|
||||
* Base setup class for creating a REST API client interface.
|
||||
*/
|
||||
export class BaseAPI {
|
||||
// Count of pending requests. It is relied on by tests.
|
||||
public static numPendingRequests(): number { return this._numPendingRequests; }
|
||||
|
||||
// Wrap a promise to add to the count of pending requests until the promise is resolved.
|
||||
public static async countPendingRequest<T>(promise: Promise<T>): Promise<T> {
|
||||
try {
|
||||
BaseAPI._numPendingRequests++;
|
||||
return await promise;
|
||||
} finally {
|
||||
BaseAPI._numPendingRequests--;
|
||||
}
|
||||
}
|
||||
|
||||
// Define a decorator for methods in BaseAPI or derived classes.
|
||||
public static countRequest(target: unknown, propertyKey: string, descriptor: PropertyDescriptor) {
|
||||
const originalMethod = descriptor.value;
|
||||
descriptor.value = async function(...args: any[]) {
|
||||
return BaseAPI.countPendingRequest(originalMethod.apply(this, args));
|
||||
};
|
||||
}
|
||||
|
||||
private static _numPendingRequests: number = 0;
|
||||
|
||||
protected fetch: typeof fetch;
|
||||
protected newFormData: () => FormData;
|
||||
private _headers: Record<string, string>;
|
||||
private _logger: ILogger;
|
||||
private _extraParameters?: Map<string, string>;
|
||||
|
||||
constructor(options: IOptions = {}) {
|
||||
this.fetch = options.fetch || tbind(window.fetch, window);
|
||||
this.newFormData = options.newFormData || (() => new FormData());
|
||||
this._logger = options.logger || console;
|
||||
this._headers = {
|
||||
'Content-Type': 'application/json',
|
||||
...options.headers
|
||||
};
|
||||
this._extraParameters = options.extraParameters;
|
||||
}
|
||||
|
||||
// Make a modified request, exposed for test convenience.
|
||||
public async testRequest(url: string, init: RequestInit = {}): Promise<Response> {
|
||||
return this.request(url, init);
|
||||
}
|
||||
|
||||
// Similar to request, but uses the axios library, and supports progress indicator.
|
||||
@BaseAPI.countRequest
|
||||
protected async requestAxios(url: string, config: AxiosRequestConfig): Promise<AxiosResponse> {
|
||||
// If using with FormData in node, axios needs the headers prepared by FormData.
|
||||
let headers = config.headers;
|
||||
if (config.data && typeof config.data.getHeaders === 'function') {
|
||||
headers = {...config.data.getHeaders(), ...headers};
|
||||
}
|
||||
const resp = await axios.request({
|
||||
url,
|
||||
withCredentials: true,
|
||||
validateStatus: (status) => true, // This is more like fetch
|
||||
...config,
|
||||
headers,
|
||||
});
|
||||
if (resp.status !== 200) {
|
||||
throwApiError(url, resp, resp.data);
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
@BaseAPI.countRequest
|
||||
protected async request(input: string, init: RequestInit = {}): Promise<Response> {
|
||||
init = Object.assign({ headers: this._headers, credentials: 'include' }, init);
|
||||
if (this._extraParameters) {
|
||||
const url = new URL(input);
|
||||
for (const [key, val] of this._extraParameters.entries()) {
|
||||
url.searchParams.set(key, val);
|
||||
input = url.href;
|
||||
}
|
||||
}
|
||||
const resp = await this.fetch(input, init);
|
||||
this._logger.log("Fetched", input);
|
||||
if (resp.status !== 200) {
|
||||
const body = await resp.json().catch(() => ({}));
|
||||
throwApiError(input, resp, body);
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Make a request, and read the response as JSON. This allows counting the request as pending
|
||||
* until it has been read, which is relied on by tests.
|
||||
*/
|
||||
@BaseAPI.countRequest
|
||||
protected async requestJson(input: string, init: RequestInit = {}): Promise<any> {
|
||||
return (await this.request(input, init)).json();
|
||||
}
|
||||
}
|
||||
|
||||
function throwApiError(url: string, resp: Response | AxiosResponse, body: any) {
|
||||
// If the response includes details, include them into the ApiError we construct. Include
|
||||
// also the error message from the server as details.userError. It's used by the Notifier.
|
||||
if (!body) { body = {}; }
|
||||
const details: ApiErrorDetails = body.details && typeof body.details === 'object' ? body.details : {};
|
||||
if (body.error) {
|
||||
details.userError = body.error;
|
||||
}
|
||||
throw new ApiError(`Request to ${url} failed with status ${resp.status}: ` +
|
||||
`${resp.statusText} (${body.error || 'unknown cause'})`, resp.status, details);
|
||||
}
|
||||
Reference in New Issue
Block a user