mirror of
https://github.com/casdoor/casdoor.git
synced 2025-07-03 12:30:19 +08:00
feat: turing test before send code
Signed-off-by: Kininaru <shiftregister233@outlook.com> i18n i18n Signed-off-by: Kininaru <shiftregister233@outlook.com>
This commit is contained in:
@ -17,7 +17,7 @@ import i18next from "i18next";
|
||||
import React from "react";
|
||||
import * as Setting from "./Setting"
|
||||
import * as UserBackend from "./backend/UserBackend"
|
||||
import {CountDownInput} from "./reusable/CountDownInput";
|
||||
import {CountDownInput} from "./component/CountDownInput";
|
||||
|
||||
export const ResetModal = (props) => {
|
||||
const [visible, setVisible] = React.useState(false);
|
||||
@ -55,21 +55,6 @@ export const ResetModal = (props) => {
|
||||
})
|
||||
}
|
||||
|
||||
const sendCode = () => {
|
||||
if (dest === "") {
|
||||
Setting.showMessage("error", i18next.t("user:Empty " + destType));
|
||||
return;
|
||||
}
|
||||
let orgId = org.owner + "/" + org.name;
|
||||
UserBackend.sendCode(dest, destType, orgId).then(res => {
|
||||
if (res.status === "ok") {
|
||||
Setting.showMessage("success", i18next.t("user:Code Sent"));
|
||||
} else {
|
||||
Setting.showMessage("error", i18next.t("user:" + res.msg));
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
let placeHolder = "";
|
||||
if (destType === "email") placeHolder = i18next.t("user:Input your email");
|
||||
else if (destType === "phone") placeHolder = i18next.t("user:Input your phone number");
|
||||
@ -103,7 +88,8 @@ export const ResetModal = (props) => {
|
||||
textBefore={i18next.t("user:Code You Received")}
|
||||
placeHolder={i18next.t("user:Enter your code")}
|
||||
onChange={setCode}
|
||||
onButtonClick={sendCode}
|
||||
onButtonClick={UserBackend.sendCode}
|
||||
onButtonClickArgs={[dest, destType, org?.owner + "/" + org?.name]}
|
||||
coolDownTime={coolDownTime}
|
||||
/>
|
||||
</Row>
|
||||
|
@ -22,7 +22,7 @@ import * as Util from "./Util";
|
||||
import {authConfig} from "./Auth";
|
||||
import * as ApplicationBackend from "../backend/ApplicationBackend";
|
||||
import * as UserBackend from "../backend/UserBackend";
|
||||
import {CountDownInput} from "../reusable/CountDownInput";
|
||||
import {CountDownInput} from "../component/CountDownInput";
|
||||
|
||||
const formItemLayout = {
|
||||
labelCol: {
|
||||
@ -117,22 +117,6 @@ class SignupPage extends React.Component {
|
||||
this.form.current.scrollToField(errorFields[0].name);
|
||||
}
|
||||
|
||||
sendCode(type) {
|
||||
let dest, orgId;
|
||||
if (type === "email") {
|
||||
dest = this.state.email;
|
||||
} else if (type === "phone") {
|
||||
dest = this.state.phone;
|
||||
} else return;
|
||||
|
||||
orgId = this.state.application?.organizationObj.owner + "/" + this.state.application?.organizationObj.name
|
||||
|
||||
UserBackend.sendCode(dest, type, orgId).then(res => {
|
||||
if (res.status === "ok") Setting.showMessage("success", i18next.t("signup:code sent"));
|
||||
else Setting.showMessage("error", i18next.t("signup:" + res.msg));
|
||||
})
|
||||
}
|
||||
|
||||
renderForm(application) {
|
||||
if (!application.enableSignUp) {
|
||||
return (
|
||||
@ -255,7 +239,8 @@ class SignupPage extends React.Component {
|
||||
>
|
||||
<CountDownInput
|
||||
defaultButtonText={i18next.t("signup:send code")}
|
||||
onButtonClick={() => this.sendCode("email")}
|
||||
onButtonClick={UserBackend.sendCode}
|
||||
onButtonClickArgs={[this.state.email, "email", this.state.application?.organizationObj.owner + "/" + this.state.application?.organizationObj.name]}
|
||||
coolDownTime={60}
|
||||
/>
|
||||
</Form.Item>
|
||||
@ -325,7 +310,8 @@ class SignupPage extends React.Component {
|
||||
>
|
||||
<CountDownInput
|
||||
defaultButtonText={i18next.t("signup:send code")}
|
||||
onButtonClick={() => this.sendCode("phone")}
|
||||
onButtonClick={UserBackend.sendCode}
|
||||
onButtonClickArgs={[this.state.phone, "phone", this.state.application?.organizationObj.owner + "/" + this.state.application?.organizationObj.name]}
|
||||
coolDownTime={60}
|
||||
/>
|
||||
</Form.Item>
|
||||
|
@ -14,6 +14,7 @@
|
||||
|
||||
import * as Setting from "../Setting";
|
||||
import * as AuthBackend from "../auth/AuthBackend";
|
||||
import i18next from "i18next";
|
||||
|
||||
export function getGlobalUsers() {
|
||||
return fetch(`${Setting.ServerUrl}/api/get-global-users`, {
|
||||
@ -93,8 +94,11 @@ export function setPassword(userOwner, userName, oldPassword, newPassword) {
|
||||
}).then(res => res.json());
|
||||
}
|
||||
|
||||
export function sendCode(dest, type, orgId) {
|
||||
export function sendCode(checkType, checkId, checkKey, dest, type, orgId) {
|
||||
let formData = new FormData();
|
||||
formData.append("checkType", checkType);
|
||||
formData.append("checkId", checkId);
|
||||
formData.append("checkKey", checkKey);
|
||||
formData.append("dest", dest);
|
||||
formData.append("type", type);
|
||||
formData.append("organizationId", orgId);
|
||||
@ -102,7 +106,15 @@ export function sendCode(dest, type, orgId) {
|
||||
method: "POST",
|
||||
credentials: "include",
|
||||
body: formData
|
||||
}).then(res => res.json());
|
||||
}).then(res => res.json()).then(res => {
|
||||
if (res.status === "ok") {
|
||||
Setting.showMessage("success", i18next.t("user:Code Sent"));
|
||||
return true;
|
||||
} else {
|
||||
Setting.showMessage("error", i18next.t("user:" + res.msg));
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
export function resetEmailOrPhone(dest, type, code) {
|
||||
@ -116,3 +128,9 @@ export function resetEmailOrPhone(dest, type, code) {
|
||||
body: formData
|
||||
}).then(res => res.json());
|
||||
}
|
||||
|
||||
export function getHumanCheck() {
|
||||
return fetch(`${Setting.ServerUrl}/api/get-human-check`, {
|
||||
method: "GET"
|
||||
}).then(res => res.json());
|
||||
}
|
||||
|
126
web/src/component/CountDownInput.js
Normal file
126
web/src/component/CountDownInput.js
Normal file
@ -0,0 +1,126 @@
|
||||
// Copyright 2021 The casbin Authors. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import {Col, Input, Modal, Row} from "antd";
|
||||
import React from "react";
|
||||
import * as Setting from "../Setting";
|
||||
import i18next from "i18next";
|
||||
import * as UserBackend from "../backend/UserBackend";
|
||||
|
||||
export const CountDownInput = (props) => {
|
||||
const {defaultButtonText, textBefore, placeHolder, onChange, coolDownTime, onButtonClick, onButtonClickArgs} = props;
|
||||
const [buttonText, setButtonText] = React.useState(defaultButtonText);
|
||||
const [visible, setVisible] = React.useState(false);
|
||||
const [key, setKey] = React.useState("");
|
||||
const [captchaImg, setCaptchaImg] = React.useState("");
|
||||
const [checkType, setCheckType] = React.useState("");
|
||||
const [coolDown, setCoolDown] = React.useState(false);
|
||||
const [checkId, setCheckId] = React.useState("");
|
||||
|
||||
const countDown = (leftTime) => {
|
||||
if (leftTime === 0) {
|
||||
setCoolDown(false);
|
||||
setButtonText(defaultButtonText);
|
||||
return;
|
||||
}
|
||||
setButtonText(`${leftTime} s`);
|
||||
setTimeout(() => countDown(leftTime - 1), 1000);
|
||||
}
|
||||
|
||||
const clickButton = () => {
|
||||
if (coolDown) {
|
||||
Setting.showMessage("error", i18next.t("general:Cooling down"));
|
||||
return;
|
||||
}
|
||||
loadHumanCheck();
|
||||
}
|
||||
|
||||
const handleOk = () => {
|
||||
setVisible(false);
|
||||
onButtonClick(checkType, checkId, key, ...onButtonClickArgs).then(res => {
|
||||
if (res) {
|
||||
setCoolDown(true);
|
||||
countDown(coolDownTime);
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
const handleCancel = () => {
|
||||
setVisible(false);
|
||||
}
|
||||
|
||||
const loadHumanCheck = () => {
|
||||
UserBackend.getHumanCheck().then(res => {
|
||||
if (res.type === "none") {
|
||||
onButtonClick("none", "", "", ...onButtonClickArgs);
|
||||
} else if (res.type === "captcha") {
|
||||
setCheckId(res.captchaId);
|
||||
setCaptchaImg(res.captchaImage);
|
||||
setCheckType("captcha");
|
||||
setVisible(true);
|
||||
} else {
|
||||
Setting.showMessage("error", i18next.t("signup:Unknown Check Type"));
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
const renderCaptcha = () => {
|
||||
return (
|
||||
<Col>
|
||||
<Row
|
||||
style={{
|
||||
backgroundImage: `url('data:image/png;base64,${captchaImg}')`,
|
||||
backgroundRepeat: "no-repeat",
|
||||
height: "80px",
|
||||
width: "200px",
|
||||
borderRadius: "3px",
|
||||
border: "1px solid #ccc",
|
||||
marginBottom: 10
|
||||
}}
|
||||
/>
|
||||
<Row>
|
||||
<Input placeholder={i18next.t("general:Enter the code")} onChange={e => setKey(e.target.value)} />
|
||||
</Row>
|
||||
</Col>
|
||||
)
|
||||
}
|
||||
|
||||
const renderCheck = () => {
|
||||
if (checkType === "captcha") return renderCaptcha();
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<Input
|
||||
addonBefore={textBefore}
|
||||
placeholder={placeHolder}
|
||||
onChange={e => onChange(e.target.value)}
|
||||
addonAfter={
|
||||
<div>
|
||||
<button
|
||||
onClick={clickButton}
|
||||
style={{backgroundColor: "#fafafa", border: "none"}}>
|
||||
{buttonText}
|
||||
</button>
|
||||
<Modal
|
||||
visible={visible}
|
||||
onCancel={handleCancel}
|
||||
onOk={handleOk}
|
||||
>
|
||||
{renderCheck()}
|
||||
</Modal>
|
||||
</div>
|
||||
}/>
|
||||
);
|
||||
}
|
@ -30,7 +30,8 @@
|
||||
"OAuth providers": "OAuth providers",
|
||||
"Applications that requires authentication": "Applications that requires authentication",
|
||||
"Swagger": "Swagger",
|
||||
"Phone Prefix": "Phone Prefix"
|
||||
"Phone Prefix": "Phone Prefix",
|
||||
"Enter the code": "Enter the code"
|
||||
},
|
||||
"signup":
|
||||
{
|
||||
@ -156,7 +157,9 @@
|
||||
"You should verify your code in 5 min!": "You should verify your code in 5 min!",
|
||||
"Wrong code!": "Wrong code!",
|
||||
"Invalid phone number": "Invalid phone number",
|
||||
"Invalid Email address": "Invalid Email address"
|
||||
"Invalid Email address": "Invalid Email address",
|
||||
"Turing test failed.": "Turing test failed.",
|
||||
"Missing parameter.": "Missing parameter. Please check your form!"
|
||||
},
|
||||
"application":
|
||||
{
|
||||
|
@ -30,7 +30,8 @@
|
||||
"OAuth providers": "OAuth提供方",
|
||||
"Applications that requires authentication": "需要鉴权的应用",
|
||||
"Swagger": "API总览",
|
||||
"Phone Prefix": "手机号前缀"
|
||||
"Phone Prefix": "手机号前缀",
|
||||
"Enter the code": "输入验证码"
|
||||
},
|
||||
"signup":
|
||||
{
|
||||
@ -156,7 +157,9 @@
|
||||
"You should verify your code in 5 min!": "验证码已超时。你应该在 5 分钟内完成验证。",
|
||||
"Wrong code!": "验证码错误!",
|
||||
"Invalid phone number": "手机号格式错误",
|
||||
"Invalid Email address": "邮箱格式错误"
|
||||
"Invalid Email address": "邮箱格式错误",
|
||||
"Turing test failed.": "图灵验证失败,无法确认你是人类!",
|
||||
"Missing parameter.": "缺少参数!请确认所有信息都已填写!"
|
||||
},
|
||||
"application":
|
||||
{
|
||||
|
@ -1,48 +0,0 @@
|
||||
// Copyright 2021 The casbin Authors. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
import { Input } from "antd";
|
||||
import React from "react";
|
||||
import * as Setting from "../Setting";
|
||||
import i18next from "i18next";
|
||||
|
||||
export const CountDownInput = (props) => {
|
||||
const {defaultButtonText, textBefore, placeHolder, onChange, onButtonClick, coolDownTime} = props;
|
||||
const [buttonText, setButtonText] = React.useState(defaultButtonText);
|
||||
let coolDown = false;
|
||||
|
||||
const countDown = (leftTime) => {
|
||||
if (leftTime === 0) {
|
||||
coolDown = false;
|
||||
setButtonText(defaultButtonText);
|
||||
return;
|
||||
}
|
||||
setButtonText(`${leftTime} s`);
|
||||
setTimeout(() => countDown(leftTime - 1), 1000);
|
||||
}
|
||||
|
||||
const clickButton = () => {
|
||||
if (coolDown) {
|
||||
Setting.showMessage("error", i18next.t("general:Cooling down"));
|
||||
return;
|
||||
}
|
||||
onButtonClick();
|
||||
coolDown = true;
|
||||
countDown(coolDownTime);
|
||||
}
|
||||
|
||||
return (
|
||||
<Input addonBefore={textBefore} placeholder={placeHolder} onChange={e => onChange(e.target.value)} addonAfter={<button onClick={clickButton} style={{backgroundColor: "#fafafa", border: "none"}}>{buttonText}</button>}/>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user