2021-07-07 00:28:32 +05:30
|
|
|
/*
|
|
|
|
* mCaptcha is a PoW based DoS protection software.
|
|
|
|
* This is the frontend web component of the mCaptcha system
|
|
|
|
* Copyright © 2021 Aravinth Manivnanan <realaravinth@batsense.net>.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by Apache 2.0 or MIT license.
|
|
|
|
* You shoud have received a copy of MIT and Apache 2.0 along with
|
|
|
|
* this program. If not, see <https://spdx.org/licenses/MIT.html> for
|
|
|
|
* MIT or <http://www.apache.org/licenses/LICENSE-2.0> for Apache.
|
|
|
|
*/
|
|
|
|
|
2021-12-01 17:23:47 +05:30
|
|
|
import genJsonPayload from "../utils/genJsonPayload";
|
2021-10-08 15:24:29 +05:30
|
|
|
import * as CONST from "./const";
|
2021-07-07 00:28:32 +05:30
|
|
|
|
|
|
|
type GetConfigPayload = {
|
|
|
|
key: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
export type PoWConfig = {
|
|
|
|
string: string;
|
|
|
|
difficulty_factor: number;
|
|
|
|
salt: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fetch proof-of-work configuration
|
|
|
|
* @returns {PoWConfig} pow config
|
|
|
|
* */
|
2021-10-08 15:24:29 +05:30
|
|
|
export const fetchPoWConfig = async (): Promise<PoWConfig> => {
|
|
|
|
const payload: GetConfigPayload = {
|
|
|
|
key: CONST.sitekey(),
|
|
|
|
};
|
2021-07-07 00:28:32 +05:30
|
|
|
|
2021-10-08 15:24:29 +05:30
|
|
|
const res = await fetch(CONST.ROUTES.getConfig, genJsonPayload(payload));
|
|
|
|
if (res.ok) {
|
|
|
|
const config: PoWConfig = await res.json();
|
|
|
|
return config;
|
|
|
|
} else {
|
|
|
|
const err = await res.json();
|
|
|
|
throw new Error(err);
|
2021-07-07 00:28:32 +05:30
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default fetchPoWConfig;
|