2022-11-19 14:21:26 +00:00
|
|
|
import axios from "axios";
|
|
|
|
import Cookies from "js-cookie";
|
|
|
|
|
2023-05-05 12:31:58 +00:00
|
|
|
const unAuthorizedStatus = [401];
|
2023-06-14 11:26:17 +00:00
|
|
|
const nonValidatedRoutes = [
|
|
|
|
"/",
|
|
|
|
"/magic-sign-in",
|
|
|
|
"/reset-password",
|
|
|
|
"/workspace-member-invitation",
|
2023-06-16 13:30:04 +00:00
|
|
|
"/sign-up",
|
2023-09-07 13:12:24 +00:00
|
|
|
"/m/",
|
2023-06-14 11:26:17 +00:00
|
|
|
];
|
2023-06-07 08:17:56 +00:00
|
|
|
|
|
|
|
const validateRouteCheck = (route: string): boolean => {
|
|
|
|
let validationToggle = false;
|
2023-09-07 13:12:24 +00:00
|
|
|
|
|
|
|
let routeCheck = false;
|
|
|
|
nonValidatedRoutes.forEach((_route: string) => {
|
|
|
|
if (route.includes(_route)) {
|
|
|
|
routeCheck = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-06-07 08:17:56 +00:00
|
|
|
if (routeCheck) validationToggle = true;
|
|
|
|
return validationToggle;
|
|
|
|
};
|
|
|
|
|
2023-05-05 12:31:58 +00:00
|
|
|
axios.interceptors.response.use(
|
|
|
|
(response) => response,
|
|
|
|
(error) => {
|
|
|
|
const { status }: any = error.response;
|
2023-06-07 08:17:56 +00:00
|
|
|
if (!validateRouteCheck(window.location.pathname)) {
|
|
|
|
if (unAuthorizedStatus.includes(status)) {
|
|
|
|
Cookies.remove("refreshToken", { path: "/" });
|
|
|
|
Cookies.remove("accessToken", { path: "/" });
|
2023-06-05 12:18:29 +00:00
|
|
|
window.location.href = `/?next_url=${window.location.pathname}`;
|
2023-06-07 08:17:56 +00:00
|
|
|
}
|
2023-05-05 12:31:58 +00:00
|
|
|
}
|
|
|
|
return Promise.reject(error);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2022-11-19 14:21:26 +00:00
|
|
|
abstract class APIService {
|
|
|
|
protected baseURL: string;
|
|
|
|
protected headers: any = {};
|
|
|
|
|
|
|
|
constructor(baseURL: string) {
|
|
|
|
this.baseURL = baseURL;
|
|
|
|
}
|
|
|
|
|
|
|
|
setRefreshToken(token: string) {
|
|
|
|
Cookies.set("refreshToken", token);
|
|
|
|
}
|
|
|
|
|
|
|
|
getRefreshToken() {
|
|
|
|
return Cookies.get("refreshToken");
|
|
|
|
}
|
|
|
|
|
|
|
|
purgeRefreshToken() {
|
|
|
|
Cookies.remove("refreshToken", { path: "/" });
|
|
|
|
}
|
|
|
|
|
|
|
|
setAccessToken(token: string) {
|
|
|
|
Cookies.set("accessToken", token);
|
|
|
|
}
|
|
|
|
|
|
|
|
getAccessToken() {
|
|
|
|
return Cookies.get("accessToken");
|
|
|
|
}
|
|
|
|
|
|
|
|
purgeAccessToken() {
|
|
|
|
Cookies.remove("accessToken", { path: "/" });
|
|
|
|
}
|
|
|
|
|
|
|
|
getHeaders() {
|
|
|
|
return {
|
|
|
|
Authorization: `Bearer ${this.getAccessToken()}`,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-03-10 10:33:49 +00:00
|
|
|
getWithoutBase(url: string, config = {}): Promise<any> {
|
|
|
|
return axios({
|
|
|
|
method: "get",
|
|
|
|
url: url,
|
|
|
|
headers: this.getAccessToken() ? this.getHeaders() : {},
|
|
|
|
...config,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-11-19 14:21:26 +00:00
|
|
|
get(url: string, config = {}): Promise<any> {
|
|
|
|
return axios({
|
|
|
|
method: "get",
|
|
|
|
url: this.baseURL + url,
|
|
|
|
headers: this.getAccessToken() ? this.getHeaders() : {},
|
|
|
|
...config,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
post(url: string, data = {}, config = {}): Promise<any> {
|
|
|
|
return axios({
|
|
|
|
method: "post",
|
|
|
|
url: this.baseURL + url,
|
|
|
|
data,
|
|
|
|
headers: this.getAccessToken() ? this.getHeaders() : {},
|
|
|
|
...config,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
put(url: string, data = {}, config = {}): Promise<any> {
|
|
|
|
return axios({
|
|
|
|
method: "put",
|
|
|
|
url: this.baseURL + url,
|
|
|
|
data,
|
|
|
|
headers: this.getAccessToken() ? this.getHeaders() : {},
|
|
|
|
...config,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
patch(url: string, data = {}, config = {}): Promise<any> {
|
|
|
|
return axios({
|
|
|
|
method: "patch",
|
|
|
|
url: this.baseURL + url,
|
|
|
|
data,
|
|
|
|
headers: this.getAccessToken() ? this.getHeaders() : {},
|
|
|
|
...config,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-11-30 15:58:45 +00:00
|
|
|
delete(url: string, data?: any, config = {}): Promise<any> {
|
2022-11-19 14:21:26 +00:00
|
|
|
return axios({
|
|
|
|
method: "delete",
|
|
|
|
url: this.baseURL + url,
|
2022-11-30 15:58:45 +00:00
|
|
|
data: data,
|
2022-11-19 14:21:26 +00:00
|
|
|
headers: this.getAccessToken() ? this.getHeaders() : {},
|
|
|
|
...config,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
mediaUpload(url: string, data = {}, config = {}): Promise<any> {
|
|
|
|
return axios({
|
|
|
|
method: "post",
|
|
|
|
url: this.baseURL + url,
|
|
|
|
data,
|
|
|
|
headers: this.getAccessToken()
|
|
|
|
? { ...this.getHeaders(), "Content-Type": "multipart/form-data" }
|
|
|
|
: {},
|
|
|
|
...config,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
request(config = {}) {
|
|
|
|
return axios(config);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default APIService;
|