23 lines
604 B
JavaScript
23 lines
604 B
JavaScript
import axios from "axios";
|
|
import { hashAPIPath } from "../core/hash";
|
|
|
|
export const buildHashedQueryUrl = async (queryUrl) => {
|
|
try {
|
|
const signRes = await axios.get(
|
|
"/api/endpoint/gethash_api?path=" + encodeURIComponent(queryUrl)
|
|
);
|
|
|
|
if (!signRes?.data?.hash) {
|
|
throw new Error("Hash signature unavailable");
|
|
}
|
|
|
|
return queryUrl + signRes.data.hash;
|
|
} catch (error) {
|
|
if (typeof window === "undefined" && process.env.HASHKEY) {
|
|
return queryUrl + hashAPIPath(queryUrl);
|
|
}
|
|
|
|
throw error;
|
|
}
|
|
};
|