Files
hoppscotch/functions/strategies/AxiosStrategy.js
Liyas Thomas 5458debe35 ♻️ Refactor
2020-01-19 12:37:19 +05:30

24 lines
537 B
JavaScript

import axios from "axios";
const axiosWithProxy = async (req, { state }) => {
const { data } = await axios.post(
state.postwoman.settings.PROXY_URL || "https://postwoman.apollotv.xyz/",
req
);
return data;
};
const axiosWithoutProxy = async (req, _store) => {
const res = await axios(req);
return res;
};
const axiosStrategy = (req, store) => {
if (store.state.postwoman.settings.PROXY_ENABLED) {
return axiosWithProxy(req, store);
}
return axiosWithoutProxy(req, store);
};
export default axiosStrategy;