/** * Copyright 2020 Baidu Inc. 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 type {TFunction} from 'i18next'; import i18next from 'i18next'; import queryString from 'query-string'; import {toast} from 'react-toastify'; const API_TOKEN_KEY: string = import.meta.env.SNOWPACK_PUBLIC_API_TOKEN_KEY; const API_URL: string = import.meta.env.SNOWPACK_PUBLIC_API_URL; console.log('API_URL', API_TOKEN_KEY); const API_TOKEN_HEADER = 'X-VisualDL-Instance-ID'; const instanceId = API_TOKEN_KEY ? queryString.parse(window.location.search)[API_TOKEN_KEY] : ''; export function getApiToken(): string | string[] | null { return instanceId ?? null; } function addApiToken(options?: RequestInit): RequestInit | undefined { const id = getApiToken(); if (!API_TOKEN_KEY || !id) { return options; } const {headers, ...rest} = options || {}; const newHeaders = new Headers(headers); if (Array.isArray(id)) { id.forEach(value => newHeaders.append(API_TOKEN_HEADER, value)); } else { newHeaders.append(API_TOKEN_HEADER, id); } return { ...rest, headers: newHeaders }; } interface SuccessData { status: 0; data: D; } interface ErrorData { status: number; msg?: string; } type Data = SuccessData | ErrorData; export type BlobResponse = { data: Blob; type: string | null; filename: string | null; }; function getT(): Promise { return new Promise(resolve => { // Bug of i18next i18next.changeLanguage(undefined as unknown as string).then(t => resolve(t)); }); } function logErrorAndReturnT(e: unknown) { if (import.meta.env.MODE === 'development') { console.error(e); // eslint-disable-line no-console } return getT(); } export function fetcher(url: string, options?: RequestInit): Promise; export function fetcher(url: string, options?: RequestInit): Promise; export function fetcher(url: string, options?: RequestInit): Promise; export async function fetcher(url: string, options?: RequestInit): Promise { let res: Response; try { // res = await fetch('http://10.181.196.14:8040/app/api/deploy/convert?format=onnx', addApiToken(options)); res = await fetch(API_URL + url, addApiToken(options)); } catch (e) { const t = await logErrorAndReturnT(e); throw new Error(t('errors:network-error')); } if (!res.ok) { const t = await logErrorAndReturnT(res); throw new Error(t([`errors:response-error.${res.status}`, 'errors:response-error.unknown'])); } const contentType = res.headers.get('content-type') ?? ''; if (contentType.includes('application/json')) { let response: Data | T; try { response = await res.json(); } catch (e) { const t = await logErrorAndReturnT(e); throw new Error(t('errors:parse-error')); } if (response && 'status' in response) { if (response.status !== 0) { const t = await logErrorAndReturnT(response); toast.error((response as ErrorData).msg); throw new Error((response as ErrorData).msg || t('errors:error')); } else { return (response as SuccessData).data; } } return response; } else if (contentType.startsWith('text/')) { let response: string; try { response = await res.text(); } catch (e) { const t = await logErrorAndReturnT(e); throw new Error(t('errors:parse-error')); } return response; } else { let data: Blob; try { console.log('datas', res); data = await res.blob(); } catch (e) { const t = await logErrorAndReturnT(e); throw new Error(t('errors:parse-error')); } const disposition = res.headers.get('Content-Disposition'); // support safari if (!data.arrayBuffer) { console.log('arrayBuffer', data); data.arrayBuffer = async () => new Promise((resolve, reject) => { const fileReader = new FileReader(); fileReader.addEventListener('load', e => e.target ? resolve(e.target.result as ArrayBuffer) : reject() ); fileReader.readAsArrayBuffer(data); }); } console.log('datas', data); let filename: string | null = null; if (disposition && disposition.indexOf('attachment') !== -1) { const matches = /filename[^;=\n]*=((['"]).*?\2|[^;\n]*)/.exec(disposition); if (matches != null && matches[1]) { filename = matches[1].replace(/['"]/g, ''); } } return {data, type: res.headers.get('Content-Type'), filename}; } } export const cycleFetcher = async (urls: string[], options?: RequestInit): Promise => { return await Promise.all(urls.map(url => fetcher(url, options))); };