mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-11-12 11:23:42 +08:00
336 lines
9.8 KiB
JavaScript
336 lines
9.8 KiB
JavaScript
import React, { useEffect, useState, useContext } from 'react';
|
||
import {
|
||
Button,
|
||
Divider,
|
||
Form,
|
||
Header,
|
||
Image,
|
||
Message,
|
||
Modal,
|
||
Label,
|
||
} from 'semantic-ui-react';
|
||
import { Link, useNavigate } from 'react-router-dom';
|
||
import {
|
||
API,
|
||
copy,
|
||
showError,
|
||
showInfo,
|
||
showNotice,
|
||
showSuccess,
|
||
} from '../helpers';
|
||
import Turnstile from 'react-turnstile';
|
||
import { UserContext } from '../context/User';
|
||
|
||
const PersonalSetting = () => {
|
||
const [userDispatch] = useContext(UserContext);
|
||
let navigate = useNavigate();
|
||
|
||
const [inputs, setInputs] = useState({
|
||
wechat_verification_code: '',
|
||
email_verification_code: '',
|
||
email: '',
|
||
self_account_deletion_confirmation: '',
|
||
});
|
||
const [status, setStatus] = useState({});
|
||
const [showWeChatBindModal, setShowWeChatBindModal] = useState(false);
|
||
const [showEmailBindModal, setShowEmailBindModal] = useState(false);
|
||
const [showAccountDeleteModal, setShowAccountDeleteModal] = useState(false);
|
||
const [turnstileEnabled, setTurnstileEnabled] = useState(false);
|
||
const [turnstileSiteKey, setTurnstileSiteKey] = useState('');
|
||
const [turnstileToken, setTurnstileToken] = useState('');
|
||
const [loading, setLoading] = useState(false);
|
||
|
||
useEffect(() => {
|
||
let status = localStorage.getItem('status');
|
||
if (status) {
|
||
status = JSON.parse(status);
|
||
setStatus(status);
|
||
if (status.turnstile_check) {
|
||
setTurnstileEnabled(true);
|
||
setTurnstileSiteKey(status.turnstile_site_key);
|
||
}
|
||
}
|
||
}, []);
|
||
|
||
const handleInputChange = (e, { name, value }) => {
|
||
setInputs((inputs) => ({ ...inputs, [name]: value }));
|
||
};
|
||
|
||
const generateAccessToken = async () => {
|
||
const res = await API.get('/api/user/token');
|
||
const { success, message, data } = res.data;
|
||
if (success) {
|
||
await copy(data);
|
||
showSuccess(`令牌已重置并已复制到剪贴板:${data}`);
|
||
} else {
|
||
showError(message);
|
||
}
|
||
};
|
||
|
||
const getAffLink = async () => {
|
||
const res = await API.get('/api/user/aff');
|
||
const { success, message, data } = res.data;
|
||
if (success) {
|
||
let link = `${window.location.origin}/register?aff=${data}`;
|
||
await copy(link);
|
||
showNotice(`邀请链接已复制到剪切板:${link}`);
|
||
} else {
|
||
showError(message);
|
||
}
|
||
};
|
||
|
||
const deleteAccount = async () => {
|
||
if (inputs.self_account_deletion_confirmation !== 'CONFIRM') {
|
||
showError('请确认您要删除账户!');
|
||
return;
|
||
}
|
||
|
||
const res = await API.delete('/api/user/self');
|
||
const { success, message } = res.data;
|
||
|
||
if (success) {
|
||
showSuccess('账户已删除!');
|
||
await API.get('/api/user/logout');
|
||
userDispatch({ type: 'logout' });
|
||
localStorage.removeItem('user');
|
||
navigate('/login');
|
||
} else {
|
||
showError(message);
|
||
}
|
||
};
|
||
|
||
const bindWeChat = async () => {
|
||
if (inputs.wechat_verification_code === '') return;
|
||
const res = await API.get(
|
||
`/api/oauth/wechat/bind?code=${inputs.wechat_verification_code}`,
|
||
);
|
||
const { success, message } = res.data;
|
||
if (success) {
|
||
showSuccess('微信账户绑定成功!');
|
||
setShowWeChatBindModal(false);
|
||
} else {
|
||
showError(message);
|
||
}
|
||
};
|
||
|
||
const openGitHubOAuth = () => {
|
||
window.open(
|
||
`https://github.com/login/oauth/authorize?client_id=${status.github_client_id}&scope=user:email`,
|
||
);
|
||
};
|
||
|
||
const openDiscordOAuth = () => {
|
||
window.open(
|
||
`https://discord.com/api/oauth2/authorize?client_id=${status.discord_client_id}&scope=identify%20email&response_type=code&redirect_uri=${window.location.origin}/oauth/discord`,
|
||
);
|
||
};
|
||
|
||
const sendVerificationCode = async () => {
|
||
if (inputs.email === '') return;
|
||
if (turnstileEnabled && turnstileToken === '') {
|
||
showInfo('请稍后几秒重试,Turnstile 正在检查用户环境!');
|
||
return;
|
||
}
|
||
setLoading(true);
|
||
const res = await API.get(
|
||
`/api/verification?email=${inputs.email}&turnstile=${turnstileToken}`,
|
||
);
|
||
const { success, message } = res.data;
|
||
if (success) {
|
||
showSuccess('验证码发送成功,请检查邮箱!');
|
||
} else {
|
||
showError(message);
|
||
}
|
||
setLoading(false);
|
||
};
|
||
|
||
const bindEmail = async () => {
|
||
if (inputs.email_verification_code === '') return;
|
||
setLoading(true);
|
||
const res = await API.get(
|
||
`/api/oauth/email/bind?email=${inputs.email}&code=${inputs.email_verification_code}`,
|
||
);
|
||
const { success, message } = res.data;
|
||
if (success) {
|
||
showSuccess('邮箱账户绑定成功!');
|
||
setShowEmailBindModal(false);
|
||
} else {
|
||
showError(message);
|
||
}
|
||
setLoading(false);
|
||
};
|
||
|
||
return (
|
||
<div style={{ lineHeight: '40px' }}>
|
||
<Header as='h3'>通用设置</Header>
|
||
<Message>
|
||
注意,此处生成的令牌用于系统管理,而非用于请求 OpenAI
|
||
相关的服务,请知悉。
|
||
</Message>
|
||
<Button as={Link} to={`/user/edit/`}>
|
||
更新个人信息
|
||
</Button>
|
||
<Button onClick={generateAccessToken}>生成系统访问令牌</Button>
|
||
<Button onClick={getAffLink}>复制邀请链接</Button>
|
||
<Button
|
||
onClick={() => {
|
||
setShowAccountDeleteModal(true);
|
||
}}
|
||
color='red'
|
||
>
|
||
删除个人账户
|
||
</Button>
|
||
<Divider />
|
||
<Header as='h3'>账号绑定</Header>
|
||
{status.wechat_login && (
|
||
<Button
|
||
onClick={() => {
|
||
setShowWeChatBindModal(true);
|
||
}}
|
||
>
|
||
绑定微信账号
|
||
</Button>
|
||
)}
|
||
<Modal
|
||
onClose={() => setShowWeChatBindModal(false)}
|
||
onOpen={() => setShowWeChatBindModal(true)}
|
||
open={showWeChatBindModal}
|
||
size={'mini'}
|
||
>
|
||
<Modal.Content>
|
||
<Modal.Description>
|
||
<Image src={status.wechat_qrcode} fluid />
|
||
<div style={{ textAlign: 'center' }}>
|
||
<p>
|
||
微信扫码关注公众号,输入「验证码」获取验证码(三分钟内有效)
|
||
</p>
|
||
</div>
|
||
<Form size='large'>
|
||
<Form.Input
|
||
fluid
|
||
placeholder='验证码'
|
||
name='wechat_verification_code'
|
||
value={inputs.wechat_verification_code}
|
||
onChange={handleInputChange}
|
||
/>
|
||
<Button color='' fluid size='large' onClick={bindWeChat}>
|
||
绑定
|
||
</Button>
|
||
</Form>
|
||
</Modal.Description>
|
||
</Modal.Content>
|
||
</Modal>
|
||
{status.github_oauth && (
|
||
<Button onClick={openGitHubOAuth}>绑定 GitHub 账号</Button>
|
||
)}
|
||
{status.discord_oauth && (
|
||
<Button onClick={openDiscordOAuth}>绑定 Discord 账号</Button>
|
||
)}
|
||
<Button
|
||
onClick={() => {
|
||
setShowEmailBindModal(true);
|
||
}}
|
||
>
|
||
绑定邮箱地址
|
||
</Button>
|
||
<Modal
|
||
onClose={() => setShowEmailBindModal(false)}
|
||
onOpen={() => setShowEmailBindModal(true)}
|
||
open={showEmailBindModal}
|
||
size={'tiny'}
|
||
style={{ maxWidth: '450px' }}
|
||
>
|
||
<Modal.Header>绑定邮箱地址</Modal.Header>
|
||
<Modal.Content>
|
||
<Modal.Description>
|
||
<Form size='large'>
|
||
<Form.Input
|
||
fluid
|
||
placeholder='输入邮箱地址'
|
||
onChange={handleInputChange}
|
||
name='email'
|
||
type='email'
|
||
action={
|
||
<Button onClick={sendVerificationCode} disabled={loading}>
|
||
获取验证码
|
||
</Button>
|
||
}
|
||
/>
|
||
<Form.Input
|
||
fluid
|
||
placeholder='验证码'
|
||
name='email_verification_code'
|
||
value={inputs.email_verification_code}
|
||
onChange={handleInputChange}
|
||
/>
|
||
{turnstileEnabled ? (
|
||
<Turnstile
|
||
sitekey={turnstileSiteKey}
|
||
onVerify={(token) => {
|
||
setTurnstileToken(token);
|
||
}}
|
||
/>
|
||
) : (
|
||
<></>
|
||
)}
|
||
<Button
|
||
color=''
|
||
fluid
|
||
size='large'
|
||
onClick={bindEmail}
|
||
loading={loading}
|
||
>
|
||
绑定
|
||
</Button>
|
||
</Form>
|
||
</Modal.Description>
|
||
</Modal.Content>
|
||
</Modal>
|
||
<Modal
|
||
onClose={() => setShowAccountDeleteModal(false)}
|
||
onOpen={() => setShowAccountDeleteModal(true)}
|
||
open={showAccountDeleteModal}
|
||
size={'tiny'}
|
||
style={{ maxWidth: '450px' }}
|
||
>
|
||
<Modal.Header>您是否确认删除自己的帐户?</Modal.Header>
|
||
<Modal.Content>
|
||
<Modal.Description>
|
||
<Form size='large'>
|
||
<Form.Input
|
||
fluid
|
||
label='请输入 "CONFIRM" 以删除您的帐户。'
|
||
placeholder='确认文字'
|
||
name='self_account_deletion_confirmation'
|
||
value={inputs.self_account_deletion_confirmation}
|
||
onChange={handleInputChange}
|
||
/>
|
||
{turnstileEnabled ? (
|
||
<Turnstile
|
||
sitekey={turnstileSiteKey}
|
||
onVerify={(token) => {
|
||
setTurnstileToken(token);
|
||
}}
|
||
/>
|
||
) : (
|
||
<></>
|
||
)}
|
||
<Button
|
||
color='red'
|
||
fluid
|
||
size='large'
|
||
onClick={deleteAccount}
|
||
loading={loading}
|
||
>
|
||
删除
|
||
</Button>
|
||
</Form>
|
||
</Modal.Description>
|
||
</Modal.Content>
|
||
</Modal>
|
||
</div>
|
||
);
|
||
};
|
||
|
||
export default PersonalSetting;
|