PromucFlow_constructor/app/client/src/api/Api.tsx

142 lines
3.9 KiB
TypeScript
Raw Normal View History

2019-09-09 09:08:54 +00:00
import _ from "lodash";
2019-12-16 08:49:10 +00:00
import axios, { AxiosInstance, AxiosRequestConfig } from "axios";
import { getAppsmithConfigs } from "configs";
import {
REQUEST_TIMEOUT_MS,
2019-12-16 08:49:10 +00:00
API_REQUEST_HEADERS,
2019-11-25 05:07:27 +00:00
} from "constants/ApiConstants";
2019-11-13 07:34:59 +00:00
import { ActionApiResponse } from "./ActionAPI";
2019-12-16 08:49:10 +00:00
import { AUTH_LOGIN_URL } from "constants/routes";
2020-01-16 11:46:21 +00:00
import { setRouteBeforeLogin } from "utils/storage";
2019-12-16 08:49:10 +00:00
const { apiUrl, baseUrl } = getAppsmithConfigs();
2019-12-16 08:49:10 +00:00
//TODO(abhinav): Refactor this to make more composable.
export const apiRequestConfig = {
baseURL: baseUrl + apiUrl,
timeout: REQUEST_TIMEOUT_MS,
2019-12-16 08:49:10 +00:00
headers: API_REQUEST_HEADERS,
withCredentials: true,
2019-12-16 08:49:10 +00:00
};
const axiosInstance: AxiosInstance = axios.create();
const executeActionRegex = /actions\/execute/;
axiosInstance.interceptors.request.use((config: any) => {
return { ...config, timer: performance.now() };
});
2019-11-12 09:43:13 +00:00
const makeExecuteActionResponse = (response: any): ActionApiResponse => ({
...response.data,
2019-11-12 09:43:13 +00:00
clientMeta: {
size: response.headers["content-length"],
duration: Number(performance.now() - response.config.timer).toFixed(),
},
});
axiosInstance.interceptors.response.use(
(response: any): any => {
if (response.config.url.match(executeActionRegex)) {
return makeExecuteActionResponse(response);
}
// Do something with response data
2019-09-09 09:08:54 +00:00
return response.data;
},
function(error: any) {
2020-01-16 11:46:21 +00:00
if (error.code === "ECONNABORTED") {
2020-02-06 07:01:25 +00:00
return Promise.reject({
message: "Please check your internet connection",
});
2020-01-16 11:46:21 +00:00
}
if (error.config.url.match(executeActionRegex)) {
return makeExecuteActionResponse(error.response);
}
if (error.response) {
// The request was made and the server responded with a status code
// that falls out of the range of 2xx
2019-12-16 08:49:10 +00:00
// console.log(error.response.data);
// console.log(error.response.status);
// console.log(error.response.headers);
if (error.response.status === 401) {
2020-01-16 11:46:21 +00:00
setRouteBeforeLogin(window.location.pathname);
2019-12-16 08:49:10 +00:00
window.location.href = AUTH_LOGIN_URL;
}
return Promise.reject(error.response.data);
} else if (error.request) {
// The request was made but no response was received
// `error.request` is an instance of XMLHttpRequest in the browser and an instance of
// http.ClientRequest in node.js
2019-09-09 09:08:54 +00:00
console.log(error.request);
} else {
// Something happened in setting up the request that triggered an Error
console.error("Error", error.message);
}
2019-09-09 09:08:54 +00:00
console.log(error.config);
return Promise.reject(error);
},
);
class Api {
2019-12-16 08:49:10 +00:00
static get(
url: string,
queryParams?: any,
config?: Partial<AxiosRequestConfig>,
) {
2019-09-09 09:08:54 +00:00
return axiosInstance.get(
url + this.convertObjectToQueryParams(queryParams),
2019-12-16 08:49:10 +00:00
_.merge(apiRequestConfig, config),
2019-09-09 09:08:54 +00:00
);
}
2019-12-16 08:49:10 +00:00
static post(
url: string,
body?: any,
queryParams?: any,
config?: Partial<AxiosRequestConfig>,
) {
return axiosInstance.post(
url + this.convertObjectToQueryParams(queryParams),
2019-09-09 09:08:54 +00:00
body,
2019-12-16 08:49:10 +00:00
_.merge(apiRequestConfig, config),
2019-09-09 09:08:54 +00:00
);
}
2019-12-16 08:49:10 +00:00
static put(
url: string,
body?: any,
queryParams?: any,
config?: Partial<AxiosRequestConfig>,
) {
return axiosInstance.put(
url + this.convertObjectToQueryParams(queryParams),
body,
2019-12-16 08:49:10 +00:00
_.merge(apiRequestConfig, config),
);
}
2019-12-16 08:49:10 +00:00
static delete(
url: string,
queryParams?: any,
config?: Partial<AxiosRequestConfig>,
) {
2019-10-21 15:12:45 +00:00
return axiosInstance.delete(
url + this.convertObjectToQueryParams(queryParams),
2019-12-16 08:49:10 +00:00
_.merge(apiRequestConfig, config),
2019-10-21 15:12:45 +00:00
);
}
static convertObjectToQueryParams(object: any): string {
if (!_.isNil(object)) {
const paramArray: string[] = _.map(_.keys(object), key => {
2019-09-09 09:08:54 +00:00
return encodeURIComponent(key) + "=" + encodeURIComponent(object[key]);
});
return "?" + _.join(paramArray, "&");
} else {
2019-09-09 09:08:54 +00:00
return "";
}
}
}
export type HttpMethod = "GET" | "POST" | "PUT" | "DELETE";
2019-09-09 09:08:54 +00:00
export default Api;