@prosopo/procaptcha-pow 2.7.14 → 2.7.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/dist/components/ProcaptchaPoW.js +17 -5
- package/dist/components/ProcaptchaWidget.js +82 -67
- package/dist/index.js +5 -3
- package/dist/services/Manager.js +194 -174
- package/package.json +21 -18
- package/vite.cjs.config.ts +2 -2
- package/vite.esm.config.ts +20 -0
- package/dist/components/ProcaptchaPoW.d.ts +0 -3
- package/dist/components/ProcaptchaPoW.d.ts.map +0 -1
- package/dist/components/ProcaptchaPoW.js.map +0 -1
- package/dist/components/ProcaptchaWidget.d.ts +0 -4
- package/dist/components/ProcaptchaWidget.d.ts.map +0 -1
- package/dist/components/ProcaptchaWidget.js.map +0 -1
- package/dist/index.d.ts +0 -3
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/services/Manager.d.ts +0 -6
- package/dist/services/Manager.d.ts.map +0 -1
- package/dist/services/Manager.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @prosopo/procaptcha-pow
|
|
2
2
|
|
|
3
|
+
## 2.7.16
|
|
4
|
+
### Patch Changes
|
|
5
|
+
|
|
6
|
+
- @prosopo/procaptcha@2.7.16
|
|
7
|
+
|
|
8
|
+
## 2.7.15
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 3573f0b: fix npm scripts bundle command
|
|
12
|
+
- 3573f0b: build using vite, typecheck using tsc
|
|
13
|
+
- efd8102: Add tests for unwrap error helper
|
|
14
|
+
- 3573f0b: standardise all vite based npm scripts for bundling
|
|
15
|
+
- Updated dependencies [52dbf21]
|
|
16
|
+
- Updated dependencies [93d5e50]
|
|
17
|
+
- Updated dependencies [3573f0b]
|
|
18
|
+
- Updated dependencies [3573f0b]
|
|
19
|
+
- Updated dependencies [efd8102]
|
|
20
|
+
- Updated dependencies [93d5e50]
|
|
21
|
+
- Updated dependencies [63519d7]
|
|
22
|
+
- Updated dependencies [f29fc7e]
|
|
23
|
+
- Updated dependencies [3573f0b]
|
|
24
|
+
- Updated dependencies [2d0dd8a]
|
|
25
|
+
- @prosopo/util@3.0.3
|
|
26
|
+
- @prosopo/widget-skeleton@2.6.1
|
|
27
|
+
- @prosopo/locale@3.1.0
|
|
28
|
+
- @prosopo/types@3.0.4
|
|
29
|
+
- @prosopo/procaptcha-common@2.7.10
|
|
30
|
+
- @prosopo/procaptcha@2.7.15
|
|
31
|
+
- @prosopo/account@2.7.10
|
|
32
|
+
- @prosopo/common@3.1.0
|
|
33
|
+
- @prosopo/api@3.1.1
|
|
34
|
+
- @prosopo/config@3.1.1
|
|
35
|
+
|
|
3
36
|
## 2.7.14
|
|
4
37
|
### Patch Changes
|
|
5
38
|
|
|
@@ -1,5 +1,17 @@
|
|
|
1
|
-
import { jsx
|
|
2
|
-
import {
|
|
3
|
-
const ProcaptchaWidget = lazy(
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { jsx } from "@emotion/react/jsx-runtime";
|
|
2
|
+
import { lazy, Suspense } from "react";
|
|
3
|
+
const ProcaptchaWidget = lazy(
|
|
4
|
+
async () => import("./ProcaptchaWidget.js")
|
|
5
|
+
);
|
|
6
|
+
const ProcaptchaPow = (props) => /* @__PURE__ */ jsx(Suspense, { children: /* @__PURE__ */ jsx(
|
|
7
|
+
ProcaptchaWidget,
|
|
8
|
+
{
|
|
9
|
+
config: props.config,
|
|
10
|
+
callbacks: props.callbacks,
|
|
11
|
+
frictionlessState: props.frictionlessState,
|
|
12
|
+
i18n: props.i18n
|
|
13
|
+
}
|
|
14
|
+
) });
|
|
15
|
+
export {
|
|
16
|
+
ProcaptchaPow
|
|
17
|
+
};
|
|
@@ -1,76 +1,91 @@
|
|
|
1
|
-
import { jsx
|
|
2
|
-
import {
|
|
3
|
-
import { buildUpdateState,
|
|
4
|
-
import { Checkbox } from "@prosopo/procaptcha-common";
|
|
1
|
+
import { jsx } from "@emotion/react/jsx-runtime";
|
|
2
|
+
import { useTranslation, loadI18next } from "@prosopo/locale";
|
|
3
|
+
import { useProcaptcha, buildUpdateState, Checkbox } from "@prosopo/procaptcha-common";
|
|
5
4
|
import { ModeEnum } from "@prosopo/types";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
5
|
+
import { lightTheme, darkTheme } from "@prosopo/widget-skeleton";
|
|
6
|
+
import { useState, useRef, useEffect } from "react";
|
|
8
7
|
import { Manager } from "../services/Manager.js";
|
|
9
8
|
const PROCAPTCHA_EXECUTE_EVENT = "procaptcha:execute";
|
|
10
9
|
const Procaptcha = (props) => {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
else {
|
|
29
|
-
loadI18next(false).then((i18n) => {
|
|
30
|
-
if (i18n.language !== config.language)
|
|
31
|
-
i18n.changeLanguage(config.language).then((r) => r);
|
|
32
|
-
});
|
|
33
|
-
}
|
|
10
|
+
const { t, ready: isTranslationReady } = useTranslation();
|
|
11
|
+
const config = props.config;
|
|
12
|
+
const i18n = props.i18n;
|
|
13
|
+
const theme = "light" === config.theme ? lightTheme : darkTheme;
|
|
14
|
+
const frictionlessState = props.frictionlessState;
|
|
15
|
+
const callbacks = props.callbacks || {};
|
|
16
|
+
const [state, _updateState] = useProcaptcha(useState, useRef);
|
|
17
|
+
const [loading, setLoading] = useState(false);
|
|
18
|
+
const updateState = buildUpdateState(state, _updateState);
|
|
19
|
+
const manager = useRef(
|
|
20
|
+
Manager(config, state, updateState, callbacks, frictionlessState)
|
|
21
|
+
);
|
|
22
|
+
useEffect(() => {
|
|
23
|
+
if (config.language) {
|
|
24
|
+
if (i18n) {
|
|
25
|
+
if (i18n.language !== config.language) {
|
|
26
|
+
i18n.changeLanguage(config.language).then((r) => r);
|
|
34
27
|
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
28
|
+
} else {
|
|
29
|
+
loadI18next(false).then((i18n2) => {
|
|
30
|
+
if (i18n2.language !== config.language)
|
|
31
|
+
i18n2.changeLanguage(config.language).then((r) => r);
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}, [i18n, config.language]);
|
|
36
|
+
useEffect(() => {
|
|
37
|
+
if (state.error) {
|
|
38
|
+
setLoading(false);
|
|
39
|
+
if (state.error.key === "CAPTCHA.NO_SESSION_FOUND" && frictionlessState) {
|
|
40
|
+
setTimeout(() => {
|
|
41
|
+
frictionlessState.restart();
|
|
42
|
+
}, 3e3);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}, [state.error, frictionlessState]);
|
|
46
|
+
useEffect(() => {
|
|
47
|
+
if (config.mode === ModeEnum.invisible) {
|
|
48
|
+
const handleExecuteEvent = (event) => {
|
|
49
|
+
try {
|
|
50
|
+
manager.current.start();
|
|
51
|
+
} catch (error) {
|
|
52
|
+
console.error("Error starting PoW verification:", error);
|
|
44
53
|
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
54
|
+
};
|
|
55
|
+
document.addEventListener(PROCAPTCHA_EXECUTE_EVENT, handleExecuteEvent);
|
|
56
|
+
return () => {
|
|
57
|
+
document.removeEventListener(
|
|
58
|
+
PROCAPTCHA_EXECUTE_EVENT,
|
|
59
|
+
handleExecuteEvent
|
|
60
|
+
);
|
|
61
|
+
};
|
|
62
|
+
}
|
|
63
|
+
return () => {
|
|
64
|
+
};
|
|
65
|
+
}, [config.mode]);
|
|
66
|
+
if (config.mode === ModeEnum.invisible) {
|
|
67
|
+
return null;
|
|
68
|
+
}
|
|
69
|
+
return /* @__PURE__ */ jsx(
|
|
70
|
+
Checkbox,
|
|
71
|
+
{
|
|
72
|
+
checked: state.isHuman,
|
|
73
|
+
onChange: async () => {
|
|
74
|
+
if (loading) {
|
|
75
|
+
return;
|
|
60
76
|
}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
77
|
+
setLoading(true);
|
|
78
|
+
await manager.current.start();
|
|
79
|
+
setLoading(false);
|
|
80
|
+
},
|
|
81
|
+
theme,
|
|
82
|
+
labelText: isTranslationReady ? t("WIDGET.I_AM_HUMAN") : "",
|
|
83
|
+
error: state.error?.message,
|
|
84
|
+
"aria-label": "human checkbox",
|
|
85
|
+
loading
|
|
65
86
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
setLoading(true);
|
|
71
|
-
await manager.current.start();
|
|
72
|
-
setLoading(false);
|
|
73
|
-
}, theme: theme, labelText: isTranslationReady ? t("WIDGET.I_AM_HUMAN") : "", error: state.error?.message, "aria-label": "human checkbox", loading: loading }));
|
|
87
|
+
);
|
|
88
|
+
};
|
|
89
|
+
export {
|
|
90
|
+
Procaptcha as default
|
|
74
91
|
};
|
|
75
|
-
export default Procaptcha;
|
|
76
|
-
//# sourceMappingURL=ProcaptchaWidget.js.map
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import "./components/ProcaptchaWidget.js";
|
|
2
|
+
import { ProcaptchaPow } from "./components/ProcaptchaPoW.js";
|
|
3
|
+
export {
|
|
4
|
+
ProcaptchaPow
|
|
5
|
+
};
|
package/dist/services/Manager.js
CHANGED
|
@@ -1,190 +1,210 @@
|
|
|
1
1
|
import { stringToHex } from "@polkadot/util/string";
|
|
2
2
|
import { ProviderApi } from "@prosopo/api";
|
|
3
3
|
import { ProsopoEnvError } from "@prosopo/common";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
};
|
|
4
|
+
import { getDefaultEvents, buildUpdateState, providerRetry, ExtensionLoader, getRandomActiveProvider } from "@prosopo/procaptcha-common";
|
|
5
|
+
import { ProcaptchaConfigSchema, ApiParams, encodeProcaptchaOutput } from "@prosopo/types";
|
|
6
|
+
import { sleep, solvePoW } from "@prosopo/util";
|
|
7
|
+
const Manager = (configInput, state, onStateUpdate, callbacks, frictionlessState) => {
|
|
8
|
+
const events = getDefaultEvents(callbacks);
|
|
9
|
+
const defaultState = () => {
|
|
10
|
+
return {
|
|
11
|
+
// note order matters! see buildUpdateState. These fields are set in order, so disable modal first, then set loading to false, etc.
|
|
12
|
+
showModal: false,
|
|
13
|
+
loading: false,
|
|
14
|
+
index: 0,
|
|
15
|
+
challenge: void 0,
|
|
16
|
+
solutions: void 0,
|
|
17
|
+
isHuman: false,
|
|
18
|
+
captchaApi: void 0,
|
|
19
|
+
account: void 0
|
|
20
|
+
// don't handle timeout here, this should be handled by the state management
|
|
22
21
|
};
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
};
|
|
23
|
+
const clearTimeout = () => {
|
|
24
|
+
window.clearTimeout(Number(state.timeout));
|
|
25
|
+
updateState({ timeout: void 0 });
|
|
26
|
+
};
|
|
27
|
+
const onFailed = () => {
|
|
28
|
+
updateState({
|
|
29
|
+
isHuman: false,
|
|
30
|
+
loading: false
|
|
31
|
+
});
|
|
32
|
+
events.onFailed();
|
|
33
|
+
resetState(frictionlessState?.restart);
|
|
34
|
+
};
|
|
35
|
+
const clearSuccessfulChallengeTimeout = () => {
|
|
36
|
+
window.clearTimeout(Number(state.successfullChallengeTimeout));
|
|
37
|
+
updateState({ successfullChallengeTimeout: void 0 });
|
|
38
|
+
};
|
|
39
|
+
const getConfig = () => {
|
|
40
|
+
const config = {
|
|
41
|
+
userAccountAddress: configInput.userAccountAddress || "",
|
|
42
|
+
...configInput
|
|
26
43
|
};
|
|
27
|
-
|
|
44
|
+
console.log("Using config:", config);
|
|
45
|
+
if (state.account) {
|
|
46
|
+
config.userAccountAddress = state.account.account.address;
|
|
47
|
+
}
|
|
48
|
+
return ProcaptchaConfigSchema.parse(config);
|
|
49
|
+
};
|
|
50
|
+
const getAccount = () => {
|
|
51
|
+
if (!state.account) {
|
|
52
|
+
throw new ProsopoEnvError("GENERAL.ACCOUNT_NOT_FOUND", {
|
|
53
|
+
context: { error: "Account not loaded" }
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
const account = state.account;
|
|
57
|
+
return { account };
|
|
58
|
+
};
|
|
59
|
+
const getDappAccount = () => {
|
|
60
|
+
if (!state.dappAccount) {
|
|
61
|
+
throw new ProsopoEnvError("GENERAL.SITE_KEY_MISSING");
|
|
62
|
+
}
|
|
63
|
+
const dappAccount = state.dappAccount;
|
|
64
|
+
return dappAccount;
|
|
65
|
+
};
|
|
66
|
+
const updateState = buildUpdateState(state, onStateUpdate);
|
|
67
|
+
const resetState = (frictionlessRestart) => {
|
|
68
|
+
clearTimeout();
|
|
69
|
+
clearSuccessfulChallengeTimeout();
|
|
70
|
+
updateState(defaultState());
|
|
71
|
+
events.onReset();
|
|
72
|
+
if (frictionlessRestart) {
|
|
73
|
+
frictionlessRestart();
|
|
74
|
+
}
|
|
75
|
+
};
|
|
76
|
+
const setValidChallengeTimeout = () => {
|
|
77
|
+
const timeMillis = getConfig().captchas.pow.solutionTimeout;
|
|
78
|
+
const successfullChallengeTimeout = setTimeout(() => {
|
|
79
|
+
updateState({ isHuman: false });
|
|
80
|
+
events.onExpired();
|
|
81
|
+
resetState(frictionlessState?.restart);
|
|
82
|
+
}, timeMillis);
|
|
83
|
+
updateState({ successfullChallengeTimeout });
|
|
84
|
+
};
|
|
85
|
+
const start = async () => {
|
|
86
|
+
await providerRetry(
|
|
87
|
+
async () => {
|
|
88
|
+
if (state.loading) {
|
|
89
|
+
return;
|
|
90
|
+
}
|
|
91
|
+
if (state.isHuman) {
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
resetState();
|
|
28
95
|
updateState({
|
|
29
|
-
|
|
30
|
-
loading: false,
|
|
96
|
+
loading: true
|
|
31
97
|
});
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
const config = {
|
|
41
|
-
userAccountAddress: configInput.userAccountAddress || "",
|
|
42
|
-
...configInput,
|
|
98
|
+
updateState({ attemptCount: state.attemptCount + 1 });
|
|
99
|
+
const config = getConfig();
|
|
100
|
+
const selectAccount = async () => {
|
|
101
|
+
if (frictionlessState) {
|
|
102
|
+
return frictionlessState.userAccount;
|
|
103
|
+
}
|
|
104
|
+
const ext = new (await ExtensionLoader(config.web2))();
|
|
105
|
+
return ext.getAccount(config);
|
|
43
106
|
};
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
};
|
|
59
|
-
const getDappAccount = () => {
|
|
60
|
-
if (!state.dappAccount) {
|
|
61
|
-
throw new ProsopoEnvError("GENERAL.SITE_KEY_MISSING");
|
|
107
|
+
const user = await selectAccount();
|
|
108
|
+
console.log("User", user);
|
|
109
|
+
const userAccount = user.account.address;
|
|
110
|
+
updateState({
|
|
111
|
+
account: { account: { address: userAccount } }
|
|
112
|
+
});
|
|
113
|
+
updateState({ dappAccount: config.account.address });
|
|
114
|
+
await sleep(100);
|
|
115
|
+
if (!config.web2 && !config.userAccountAddress) {
|
|
116
|
+
throw new ProsopoEnvError("GENERAL.ACCOUNT_NOT_FOUND", {
|
|
117
|
+
context: {
|
|
118
|
+
error: "Account address has not been set for web3 mode"
|
|
119
|
+
}
|
|
120
|
+
});
|
|
62
121
|
}
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
updateState(defaultState());
|
|
71
|
-
events.onReset();
|
|
72
|
-
if (frictionlessRestart) {
|
|
73
|
-
frictionlessRestart();
|
|
122
|
+
let getRandomProviderResponse = void 0;
|
|
123
|
+
if (frictionlessState?.provider) {
|
|
124
|
+
getRandomProviderResponse = frictionlessState.provider;
|
|
125
|
+
} else {
|
|
126
|
+
getRandomProviderResponse = await getRandomActiveProvider(
|
|
127
|
+
getConfig()
|
|
128
|
+
);
|
|
74
129
|
}
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
const
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
return;
|
|
89
|
-
}
|
|
90
|
-
if (state.isHuman) {
|
|
91
|
-
return;
|
|
130
|
+
const providerUrl = getRandomProviderResponse.provider.url;
|
|
131
|
+
const providerApi = new ProviderApi(providerUrl, getDappAccount());
|
|
132
|
+
const challenge = await providerApi.getPowCaptchaChallenge(
|
|
133
|
+
userAccount,
|
|
134
|
+
getDappAccount(),
|
|
135
|
+
frictionlessState?.sessionId
|
|
136
|
+
);
|
|
137
|
+
if (challenge.error) {
|
|
138
|
+
updateState({
|
|
139
|
+
loading: false,
|
|
140
|
+
error: {
|
|
141
|
+
message: challenge.error.message,
|
|
142
|
+
key: challenge.error.key || "API.UNKNOWN_ERROR"
|
|
92
143
|
}
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
144
|
+
});
|
|
145
|
+
} else {
|
|
146
|
+
const solution = solvePoW(challenge.challenge, challenge.difficulty);
|
|
147
|
+
const signer = user.extension?.signer;
|
|
148
|
+
if (!signer || !signer.signRaw) {
|
|
149
|
+
throw new ProsopoEnvError("GENERAL.CANT_FIND_KEYRINGPAIR", {
|
|
150
|
+
context: {
|
|
151
|
+
error: "Signer is not defined, cannot sign message to prove account ownership"
|
|
152
|
+
}
|
|
96
153
|
});
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
154
|
+
}
|
|
155
|
+
const userTimestampSignature = await signer.signRaw({
|
|
156
|
+
address: userAccount,
|
|
157
|
+
data: stringToHex(challenge[ApiParams.timestamp].toString()),
|
|
158
|
+
type: "bytes"
|
|
159
|
+
});
|
|
160
|
+
const verifiedSolution = await providerApi.submitPowCaptchaSolution(
|
|
161
|
+
challenge,
|
|
162
|
+
getAccount().account.account.address,
|
|
163
|
+
getDappAccount(),
|
|
164
|
+
solution,
|
|
165
|
+
userTimestampSignature.signature.toString(),
|
|
166
|
+
config.captchas.pow.verifiedTimeout
|
|
167
|
+
);
|
|
168
|
+
if (verifiedSolution[ApiParams.verified]) {
|
|
109
169
|
updateState({
|
|
110
|
-
|
|
170
|
+
isHuman: true,
|
|
171
|
+
loading: false
|
|
111
172
|
});
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
else {
|
|
126
|
-
getRandomProviderResponse = await getRandomActiveProvider(getConfig());
|
|
127
|
-
}
|
|
128
|
-
const providerUrl = getRandomProviderResponse.provider.url;
|
|
129
|
-
const providerApi = new ProviderApi(providerUrl, getDappAccount());
|
|
130
|
-
const challenge = await providerApi.getPowCaptchaChallenge(userAccount, getDappAccount(), frictionlessState?.sessionId);
|
|
131
|
-
if (challenge.error) {
|
|
132
|
-
updateState({
|
|
133
|
-
loading: false,
|
|
134
|
-
error: {
|
|
135
|
-
message: challenge.error.message,
|
|
136
|
-
key: challenge.error.key || "API.UNKNOWN_ERROR",
|
|
137
|
-
},
|
|
138
|
-
});
|
|
139
|
-
}
|
|
140
|
-
else {
|
|
141
|
-
const solution = solvePoW(challenge.challenge, challenge.difficulty);
|
|
142
|
-
const signer = user.extension?.signer;
|
|
143
|
-
if (!signer || !signer.signRaw) {
|
|
144
|
-
throw new ProsopoEnvError("GENERAL.CANT_FIND_KEYRINGPAIR", {
|
|
145
|
-
context: {
|
|
146
|
-
error: "Signer is not defined, cannot sign message to prove account ownership",
|
|
147
|
-
},
|
|
148
|
-
});
|
|
173
|
+
events.onHuman(
|
|
174
|
+
encodeProcaptchaOutput({
|
|
175
|
+
[ApiParams.providerUrl]: providerUrl,
|
|
176
|
+
[ApiParams.user]: getAccount().account.account.address,
|
|
177
|
+
[ApiParams.dapp]: getDappAccount(),
|
|
178
|
+
[ApiParams.challenge]: challenge.challenge,
|
|
179
|
+
[ApiParams.nonce]: solution,
|
|
180
|
+
[ApiParams.timestamp]: challenge.timestamp,
|
|
181
|
+
[ApiParams.signature]: {
|
|
182
|
+
[ApiParams.provider]: challenge.signature.provider,
|
|
183
|
+
[ApiParams.user]: {
|
|
184
|
+
[ApiParams.timestamp]: userTimestampSignature.signature.toString()
|
|
185
|
+
}
|
|
149
186
|
}
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
},
|
|
174
|
-
}));
|
|
175
|
-
setValidChallengeTimeout();
|
|
176
|
-
}
|
|
177
|
-
else {
|
|
178
|
-
onFailed();
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
}, start, () => {
|
|
182
|
-
resetState();
|
|
183
|
-
}, state.attemptCount, 3);
|
|
184
|
-
};
|
|
185
|
-
return {
|
|
186
|
-
start,
|
|
187
|
-
resetState,
|
|
188
|
-
};
|
|
187
|
+
})
|
|
188
|
+
);
|
|
189
|
+
setValidChallengeTimeout();
|
|
190
|
+
} else {
|
|
191
|
+
onFailed();
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
start,
|
|
196
|
+
() => {
|
|
197
|
+
resetState();
|
|
198
|
+
},
|
|
199
|
+
state.attemptCount,
|
|
200
|
+
3
|
|
201
|
+
);
|
|
202
|
+
};
|
|
203
|
+
return {
|
|
204
|
+
start,
|
|
205
|
+
resetState
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
export {
|
|
209
|
+
Manager
|
|
189
210
|
};
|
|
190
|
-
//# sourceMappingURL=Manager.js.map
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prosopo/procaptcha-pow",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.16",
|
|
4
4
|
"author": "PROSOPO LIMITED <info@prosopo.io>",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
|
-
"main": "
|
|
6
|
+
"main": "dist/index.js",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"engines": {
|
|
@@ -12,36 +12,40 @@
|
|
|
12
12
|
},
|
|
13
13
|
"exports": {
|
|
14
14
|
".": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
15
16
|
"import": "./dist/index.js",
|
|
16
17
|
"require": "./dist/cjs/index.cjs"
|
|
17
18
|
}
|
|
18
19
|
},
|
|
19
|
-
"types": "
|
|
20
|
+
"types": "dist/index.d.ts",
|
|
20
21
|
"source": "./src/index.ts",
|
|
21
22
|
"scripts": {
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"build": "tsc --build --verbose",
|
|
25
|
-
"build:cjs": "
|
|
23
|
+
"clean": "del-cli --verbose dist tsconfig.tsbuildinfo",
|
|
24
|
+
"build": "NODE_ENV=${NODE_ENV:-production}; vite build --config vite.esm.config.ts --mode $NODE_ENV",
|
|
25
|
+
"build:tsc": "tsc --build --verbose",
|
|
26
|
+
"build:cjs": "NODE_ENV=${NODE_ENV:-production}; vite build --config vite.cjs.config.ts --mode $NODE_ENV",
|
|
27
|
+
"typecheck": "tsc --build --declaration --emitDeclarationOnly",
|
|
28
|
+
"test": "echo no tests"
|
|
26
29
|
},
|
|
27
30
|
"browserslist": ["> 0.5%, last 2 versions, not dead"],
|
|
28
31
|
"dependencies": {
|
|
29
32
|
"@polkadot/util": "12.6.2",
|
|
30
|
-
"@prosopo/account": "2.7.
|
|
31
|
-
"@prosopo/api": "3.1.
|
|
32
|
-
"@prosopo/common": "3.0
|
|
33
|
-
"@prosopo/locale": "3.0
|
|
34
|
-
"@prosopo/procaptcha": "2.7.
|
|
35
|
-
"@prosopo/procaptcha-common": "2.7.
|
|
36
|
-
"@prosopo/types": "3.0.
|
|
37
|
-
"@prosopo/util": "3.0.
|
|
38
|
-
"@prosopo/widget-skeleton": "2.6.
|
|
33
|
+
"@prosopo/account": "2.7.10",
|
|
34
|
+
"@prosopo/api": "3.1.1",
|
|
35
|
+
"@prosopo/common": "3.1.0",
|
|
36
|
+
"@prosopo/locale": "3.1.0",
|
|
37
|
+
"@prosopo/procaptcha": "2.7.16",
|
|
38
|
+
"@prosopo/procaptcha-common": "2.7.10",
|
|
39
|
+
"@prosopo/types": "3.0.4",
|
|
40
|
+
"@prosopo/util": "3.0.3",
|
|
41
|
+
"@prosopo/widget-skeleton": "2.6.1",
|
|
39
42
|
"@typegoose/auto-increment": "4.13.0",
|
|
40
43
|
"axios": "1.10.0",
|
|
41
44
|
"esbuild": "0.25.6",
|
|
42
45
|
"express": "4.21.2",
|
|
43
|
-
"openpgp": "5.11.3",
|
|
44
46
|
"react": "18.3.1",
|
|
47
|
+
"@prosopo/config": "3.1.1",
|
|
48
|
+
"openpgp": "5.11.3",
|
|
45
49
|
"webpack-dev-server": "5.2.2"
|
|
46
50
|
},
|
|
47
51
|
"overrides": {
|
|
@@ -52,7 +56,6 @@
|
|
|
52
56
|
}
|
|
53
57
|
},
|
|
54
58
|
"devDependencies": {
|
|
55
|
-
"@prosopo/config": "3.1.0",
|
|
56
59
|
"@vitest/coverage-v8": "3.0.9",
|
|
57
60
|
"concurrently": "9.0.1",
|
|
58
61
|
"del-cli": "6.0.0",
|
package/vite.cjs.config.ts
CHANGED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// Copyright 2021-2025 Prosopo (UK) Ltd.
|
|
2
|
+
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
6
|
+
//
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
//
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
14
|
+
|
|
15
|
+
import path from "node:path";
|
|
16
|
+
import { ViteEsmConfig } from "@prosopo/config";
|
|
17
|
+
|
|
18
|
+
export default function () {
|
|
19
|
+
return ViteEsmConfig(path.basename("."), path.resolve("./tsconfig.json"));
|
|
20
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ProcaptchaPoW.d.ts","sourceRoot":"","sources":["../../src/components/ProcaptchaPoW.tsx"],"names":[],"mappings":"AAcA,OAAO,KAAK,EAAuB,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAc3E,eAAO,MAAM,aAAa,UAAW,eAAe,qDASnD,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ProcaptchaPoW.js","sourceRoot":"","sources":["../../src/components/ProcaptchaPoW.tsx"],"names":[],"mappings":";AAeA,OAAO,EAA4B,QAAQ,EAAE,IAAI,EAAE,MAAM,OAAO,CAAC;AASjE,MAAM,gBAAgB,GAAmD,IAAI,CAC5E,KAAK,IAAI,EAAE,CAAC,MAAM,CAAC,uBAAuB,CAAC,CAC3C,CAAC;AAEF,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,KAAsB,EAAE,EAAE,CAAC,CACxD,KAAC,QAAQ,cACR,KAAC,gBAAgB,IAChB,MAAM,EAAE,KAAK,CAAC,MAAM,EACpB,SAAS,EAAE,KAAK,CAAC,SAAS,EAC1B,iBAAiB,EAAE,KAAK,CAAC,iBAAiB,EAC1C,IAAI,EAAE,KAAK,CAAC,IAAI,GACf,GACQ,CACX,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ProcaptchaWidget.d.ts","sourceRoot":"","sources":["../../src/components/ProcaptchaWidget.tsx"],"names":[],"mappings":"AAiBA,OAAO,EAAY,KAAK,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAQhE,QAAA,MAAM,UAAU,UAAW,eAAe,4DA8FzC,CAAC;AACF,eAAe,UAAU,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ProcaptchaWidget.js","sourceRoot":"","sources":["../../src/components/ProcaptchaWidget.tsx"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
DELETED
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAaA,cAAc,kCAAkC,CAAC;AACjD,cAAc,+BAA+B,CAAC"}
|
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAaA,cAAc,kCAAkC,CAAC;AACjD,cAAc,+BAA+B,CAAC"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { type FrictionlessState, type ProcaptchaCallbacks, type ProcaptchaClientConfigInput, type ProcaptchaState, type ProcaptchaStateUpdateFn } from "@prosopo/types";
|
|
2
|
-
export declare const Manager: (configInput: ProcaptchaClientConfigInput, state: ProcaptchaState, onStateUpdate: ProcaptchaStateUpdateFn, callbacks: ProcaptchaCallbacks, frictionlessState?: FrictionlessState) => {
|
|
3
|
-
start: () => Promise<void>;
|
|
4
|
-
resetState: (frictionlessRestart?: () => void) => void;
|
|
5
|
-
};
|
|
6
|
-
//# sourceMappingURL=Manager.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Manager.d.ts","sourceRoot":"","sources":["../../src/services/Manager.ts"],"names":[],"mappings":"AAwBA,OAAO,EAGN,KAAK,iBAAiB,EACtB,KAAK,mBAAmB,EACxB,KAAK,2BAA2B,EAEhC,KAAK,eAAe,EACpB,KAAK,uBAAuB,EAE5B,MAAM,gBAAgB,CAAC;AAIxB,eAAO,MAAM,OAAO,gBACN,2BAA2B,SACjC,eAAe,iBACP,uBAAuB,aAC3B,mBAAmB,sBACV,iBAAiB;;uCAiFK,MAAM,IAAI;CAmLpD,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Manager.js","sourceRoot":"","sources":["../../src/services/Manager.ts"],"names":[],"mappings":"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"}
|