2021-12-02 11:54:53 +03:00
|
|
|
/*
|
2023-04-18 12:20:12 +03:00
|
|
|
* mCaptcha is a PoW based DoS protection software.
|
|
|
|
* This is the frontend web component of the mCaptcha system
|
|
|
|
* Copyright © 2023 Aravinth Manivnanan <realaravinth@batsense.net>.
|
2021-12-02 11:54:53 +03:00
|
|
|
*
|
2023-04-18 12:20:12 +03:00
|
|
|
* 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-02 11:54:53 +03:00
|
|
|
*/
|
2023-04-18 12:20:12 +03:00
|
|
|
|
2021-12-02 11:54:53 +03:00
|
|
|
import log from "../logger";
|
|
|
|
|
2023-04-18 12:20:12 +03:00
|
|
|
import prove from "./prove";
|
|
|
|
import {PoWConfig, ServiceWorkerWork} from "./types";
|
|
|
|
|
2021-12-02 11:54:53 +03:00
|
|
|
log.log("worker registered");
|
2021-12-08 12:22:06 +03:00
|
|
|
onmessage = async (e) => {
|
2021-12-02 11:54:53 +03:00
|
|
|
console.debug("message received at worker");
|
|
|
|
const config: PoWConfig = e.data;
|
|
|
|
|
|
|
|
const t0 = performance.now();
|
2021-12-08 12:22:06 +03:00
|
|
|
const work = await prove(config);
|
2021-12-02 11:54:53 +03:00
|
|
|
|
|
|
|
const t1 = performance.now();
|
|
|
|
const duration = t1 - t0;
|
|
|
|
|
|
|
|
const res: ServiceWorkerWork = {
|
|
|
|
work,
|
|
|
|
duration,
|
|
|
|
};
|
|
|
|
|
|
|
|
postMessage(res);
|
|
|
|
};
|