590 lines
20 KiB
JavaScript
590 lines
20 KiB
JavaScript
import React, { useEffect, useState } from 'react';
|
||
import { Divider, Form, Grid, Header, Message } from 'semantic-ui-react';
|
||
import { API, removeTrailingSlash, showError, verifyJSON } from '../helpers';
|
||
|
||
const SystemSetting = () => {
|
||
let [inputs, setInputs] = useState({
|
||
PasswordLoginEnabled: '',
|
||
PasswordRegisterEnabled: '',
|
||
EmailVerificationEnabled: '',
|
||
GitHubOAuthEnabled: '',
|
||
GitHubClientId: '',
|
||
GitHubClientSecret: '',
|
||
Notice: '',
|
||
SMTPServer: '',
|
||
SMTPPort: '',
|
||
SMTPAccount: '',
|
||
SMTPFrom: '',
|
||
SMTPToken: '',
|
||
ServerAddress: '',
|
||
Footer: '',
|
||
WeChatAuthEnabled: '',
|
||
WeChatServerAddress: '',
|
||
WeChatServerToken: '',
|
||
WeChatAccountQRCodeImageURL: '',
|
||
TurnstileCheckEnabled: '',
|
||
TurnstileSiteKey: '',
|
||
TurnstileSecretKey: '',
|
||
RegisterEnabled: '',
|
||
QuotaForNewUser: 0,
|
||
QuotaForInviter: 0,
|
||
QuotaForInvitee: 0,
|
||
QuotaRemindThreshold: 0,
|
||
PreConsumedQuota: 0,
|
||
ModelRatio: '',
|
||
GroupRatio: '',
|
||
TopUpLink: '',
|
||
AutomaticDisableChannelEnabled: '',
|
||
ChannelDisableThreshold: 0,
|
||
LogConsumeEnabled: ''
|
||
});
|
||
const [originInputs, setOriginInputs] = useState({});
|
||
let [loading, setLoading] = useState(false);
|
||
|
||
const getOptions = async () => {
|
||
const res = await API.get('/api/option/');
|
||
const { success, message, data } = res.data;
|
||
if (success) {
|
||
let newInputs = {};
|
||
data.forEach((item) => {
|
||
newInputs[item.key] = item.value;
|
||
});
|
||
setInputs(newInputs);
|
||
setOriginInputs(newInputs);
|
||
} else {
|
||
showError(message);
|
||
}
|
||
};
|
||
|
||
useEffect(() => {
|
||
getOptions().then();
|
||
}, []);
|
||
|
||
const updateOption = async (key, value) => {
|
||
setLoading(true);
|
||
switch (key) {
|
||
case 'PasswordLoginEnabled':
|
||
case 'PasswordRegisterEnabled':
|
||
case 'EmailVerificationEnabled':
|
||
case 'GitHubOAuthEnabled':
|
||
case 'WeChatAuthEnabled':
|
||
case 'TurnstileCheckEnabled':
|
||
case 'RegisterEnabled':
|
||
case 'AutomaticDisableChannelEnabled':
|
||
case 'LogConsumeEnabled':
|
||
value = inputs[key] === 'true' ? 'false' : 'true';
|
||
break;
|
||
default:
|
||
break;
|
||
}
|
||
const res = await API.put('/api/option/', {
|
||
key,
|
||
value
|
||
});
|
||
const { success, message } = res.data;
|
||
if (success) {
|
||
setInputs((inputs) => ({ ...inputs, [key]: value }));
|
||
} else {
|
||
showError(message);
|
||
}
|
||
setLoading(false);
|
||
};
|
||
|
||
const handleInputChange = async (e, { name, value }) => {
|
||
if (
|
||
name === 'Notice' ||
|
||
name.startsWith('SMTP') ||
|
||
name === 'ServerAddress' ||
|
||
name === 'GitHubClientId' ||
|
||
name === 'GitHubClientSecret' ||
|
||
name === 'WeChatServerAddress' ||
|
||
name === 'WeChatServerToken' ||
|
||
name === 'WeChatAccountQRCodeImageURL' ||
|
||
name === 'TurnstileSiteKey' ||
|
||
name === 'TurnstileSecretKey' ||
|
||
name === 'QuotaForNewUser' ||
|
||
name === 'QuotaForInviter' ||
|
||
name === 'QuotaForInvitee' ||
|
||
name === 'QuotaRemindThreshold' ||
|
||
name === 'PreConsumedQuota' ||
|
||
name === 'ModelRatio' ||
|
||
name === 'GroupRatio' ||
|
||
name === 'TopUpLink'
|
||
) {
|
||
setInputs((inputs) => ({ ...inputs, [name]: value }));
|
||
} else {
|
||
await updateOption(name, value);
|
||
}
|
||
};
|
||
|
||
const submitServerAddress = async () => {
|
||
let ServerAddress = removeTrailingSlash(inputs.ServerAddress);
|
||
await updateOption('ServerAddress', ServerAddress);
|
||
};
|
||
|
||
const submitOperationConfig = async () => {
|
||
if (originInputs['QuotaForNewUser'] !== inputs.QuotaForNewUser) {
|
||
await updateOption('QuotaForNewUser', inputs.QuotaForNewUser);
|
||
}
|
||
if (originInputs['QuotaForInvitee'] !== inputs.QuotaForInvitee) {
|
||
await updateOption('QuotaForInvitee', inputs.QuotaForInvitee);
|
||
}
|
||
if (originInputs['QuotaForInviter'] !== inputs.QuotaForInviter) {
|
||
await updateOption('QuotaForInviter', inputs.QuotaForInviter);
|
||
}
|
||
if (originInputs['QuotaRemindThreshold'] !== inputs.QuotaRemindThreshold) {
|
||
await updateOption('QuotaRemindThreshold', inputs.QuotaRemindThreshold);
|
||
}
|
||
if (originInputs['PreConsumedQuota'] !== inputs.PreConsumedQuota) {
|
||
await updateOption('PreConsumedQuota', inputs.PreConsumedQuota);
|
||
}
|
||
if (originInputs['ModelRatio'] !== inputs.ModelRatio) {
|
||
if (!verifyJSON(inputs.ModelRatio)) {
|
||
showError('模型倍率不是合法的 JSON 字符串');
|
||
return;
|
||
}
|
||
await updateOption('ModelRatio', inputs.ModelRatio);
|
||
}
|
||
if (originInputs['GroupRatio'] !== inputs.GroupRatio) {
|
||
if (!verifyJSON(inputs.GroupRatio)) {
|
||
showError('分组倍率不是合法的 JSON 字符串');
|
||
return;
|
||
}
|
||
await updateOption('GroupRatio', inputs.GroupRatio);
|
||
}
|
||
if (originInputs['TopUpLink'] !== inputs.TopUpLink) {
|
||
await updateOption('TopUpLink', inputs.TopUpLink);
|
||
}
|
||
};
|
||
|
||
const submitSMTP = async () => {
|
||
if (originInputs['SMTPServer'] !== inputs.SMTPServer) {
|
||
await updateOption('SMTPServer', inputs.SMTPServer);
|
||
}
|
||
if (originInputs['SMTPAccount'] !== inputs.SMTPAccount) {
|
||
await updateOption('SMTPAccount', inputs.SMTPAccount);
|
||
}
|
||
if (originInputs['SMTPFrom'] !== inputs.SMTPFrom) {
|
||
await updateOption('SMTPFrom', inputs.SMTPFrom);
|
||
}
|
||
if (
|
||
originInputs['SMTPPort'] !== inputs.SMTPPort &&
|
||
inputs.SMTPPort !== ''
|
||
) {
|
||
await updateOption('SMTPPort', inputs.SMTPPort);
|
||
}
|
||
if (
|
||
originInputs['SMTPToken'] !== inputs.SMTPToken &&
|
||
inputs.SMTPToken !== ''
|
||
) {
|
||
await updateOption('SMTPToken', inputs.SMTPToken);
|
||
}
|
||
};
|
||
|
||
const submitWeChat = async () => {
|
||
if (originInputs['WeChatServerAddress'] !== inputs.WeChatServerAddress) {
|
||
await updateOption(
|
||
'WeChatServerAddress',
|
||
removeTrailingSlash(inputs.WeChatServerAddress)
|
||
);
|
||
}
|
||
if (
|
||
originInputs['WeChatAccountQRCodeImageURL'] !==
|
||
inputs.WeChatAccountQRCodeImageURL
|
||
) {
|
||
await updateOption(
|
||
'WeChatAccountQRCodeImageURL',
|
||
inputs.WeChatAccountQRCodeImageURL
|
||
);
|
||
}
|
||
if (
|
||
originInputs['WeChatServerToken'] !== inputs.WeChatServerToken &&
|
||
inputs.WeChatServerToken !== ''
|
||
) {
|
||
await updateOption('WeChatServerToken', inputs.WeChatServerToken);
|
||
}
|
||
};
|
||
|
||
const submitGitHubOAuth = async () => {
|
||
if (originInputs['GitHubClientId'] !== inputs.GitHubClientId) {
|
||
await updateOption('GitHubClientId', inputs.GitHubClientId);
|
||
}
|
||
if (
|
||
originInputs['GitHubClientSecret'] !== inputs.GitHubClientSecret &&
|
||
inputs.GitHubClientSecret !== ''
|
||
) {
|
||
await updateOption('GitHubClientSecret', inputs.GitHubClientSecret);
|
||
}
|
||
};
|
||
|
||
const submitTurnstile = async () => {
|
||
if (originInputs['TurnstileSiteKey'] !== inputs.TurnstileSiteKey) {
|
||
await updateOption('TurnstileSiteKey', inputs.TurnstileSiteKey);
|
||
}
|
||
if (
|
||
originInputs['TurnstileSecretKey'] !== inputs.TurnstileSecretKey &&
|
||
inputs.TurnstileSecretKey !== ''
|
||
) {
|
||
await updateOption('TurnstileSecretKey', inputs.TurnstileSecretKey);
|
||
}
|
||
};
|
||
|
||
return (
|
||
<Grid columns={1}>
|
||
<Grid.Column>
|
||
<Form loading={loading}>
|
||
<Header as='h3'>通用设置</Header>
|
||
<Form.Group widths='equal'>
|
||
<Form.Input
|
||
label='服务器地址'
|
||
placeholder='例如:https://yourdomain.com'
|
||
value={inputs.ServerAddress}
|
||
name='ServerAddress'
|
||
onChange={handleInputChange}
|
||
/>
|
||
</Form.Group>
|
||
<Form.Button onClick={submitServerAddress}>
|
||
更新服务器地址
|
||
</Form.Button>
|
||
<Divider />
|
||
<Header as='h3'>配置登录注册</Header>
|
||
<Form.Group inline>
|
||
<Form.Checkbox
|
||
checked={inputs.PasswordLoginEnabled === 'true'}
|
||
label='允许通过密码进行登录'
|
||
name='PasswordLoginEnabled'
|
||
onChange={handleInputChange}
|
||
/>
|
||
<Form.Checkbox
|
||
checked={inputs.PasswordRegisterEnabled === 'true'}
|
||
label='允许通过密码进行注册'
|
||
name='PasswordRegisterEnabled'
|
||
onChange={handleInputChange}
|
||
/>
|
||
<Form.Checkbox
|
||
checked={inputs.EmailVerificationEnabled === 'true'}
|
||
label='通过密码注册时需要进行邮箱验证'
|
||
name='EmailVerificationEnabled'
|
||
onChange={handleInputChange}
|
||
/>
|
||
<Form.Checkbox
|
||
checked={inputs.GitHubOAuthEnabled === 'true'}
|
||
label='允许通过 GitHub 账户登录 & 注册'
|
||
name='GitHubOAuthEnabled'
|
||
onChange={handleInputChange}
|
||
/>
|
||
<Form.Checkbox
|
||
checked={inputs.WeChatAuthEnabled === 'true'}
|
||
label='允许通过微信登录 & 注册'
|
||
name='WeChatAuthEnabled'
|
||
onChange={handleInputChange}
|
||
/>
|
||
</Form.Group>
|
||
<Form.Group inline>
|
||
<Form.Checkbox
|
||
checked={inputs.RegisterEnabled === 'true'}
|
||
label='允许新用户注册(此项为否时,新用户将无法以任何方式进行注册)'
|
||
name='RegisterEnabled'
|
||
onChange={handleInputChange}
|
||
/>
|
||
<Form.Checkbox
|
||
checked={inputs.TurnstileCheckEnabled === 'true'}
|
||
label='启用 Turnstile 用户校验'
|
||
name='TurnstileCheckEnabled'
|
||
onChange={handleInputChange}
|
||
/>
|
||
</Form.Group>
|
||
<Divider />
|
||
<Header as='h3'>
|
||
运营设置
|
||
</Header>
|
||
<Form.Group widths={4}>
|
||
<Form.Input
|
||
label='新用户初始配额'
|
||
name='QuotaForNewUser'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.QuotaForNewUser}
|
||
type='number'
|
||
min='0'
|
||
placeholder='例如:100'
|
||
/>
|
||
<Form.Input
|
||
label='充值链接'
|
||
name='TopUpLink'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.TopUpLink}
|
||
type='link'
|
||
placeholder='例如发卡网站的购买链接'
|
||
/>
|
||
<Form.Input
|
||
label='额度提醒阈值'
|
||
name='QuotaRemindThreshold'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.QuotaRemindThreshold}
|
||
type='number'
|
||
min='0'
|
||
placeholder='低于此额度时将发送邮件提醒用户'
|
||
/>
|
||
<Form.Input
|
||
label='请求预扣费额度'
|
||
name='PreConsumedQuota'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.PreConsumedQuota}
|
||
type='number'
|
||
min='0'
|
||
placeholder='请求结束后多退少补'
|
||
/>
|
||
</Form.Group>
|
||
<Form.Group widths={4}>
|
||
<Form.Input
|
||
label='邀请新用户奖励配额'
|
||
name='QuotaForInviter'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.QuotaForInviter}
|
||
type='number'
|
||
min='0'
|
||
placeholder='例如:100'
|
||
/>
|
||
<Form.Input
|
||
label='新用户使用邀请码奖励配额'
|
||
name='QuotaForInvitee'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.QuotaForInvitee}
|
||
type='number'
|
||
min='0'
|
||
placeholder='例如:100'
|
||
/>
|
||
</Form.Group>
|
||
<Form.Group widths='equal'>
|
||
<Form.TextArea
|
||
label='模型倍率'
|
||
name='ModelRatio'
|
||
onChange={handleInputChange}
|
||
style={{ minHeight: 250, fontFamily: 'JetBrains Mono, Consolas' }}
|
||
autoComplete='new-password'
|
||
value={inputs.ModelRatio}
|
||
placeholder='为一个 JSON 文本,键为模型名称,值为倍率'
|
||
/>
|
||
</Form.Group>
|
||
<Form.Group widths='equal'>
|
||
<Form.TextArea
|
||
label='分组倍率'
|
||
name='GroupRatio'
|
||
onChange={handleInputChange}
|
||
style={{ minHeight: 250, fontFamily: 'JetBrains Mono, Consolas' }}
|
||
autoComplete='new-password'
|
||
value={inputs.GroupRatio}
|
||
placeholder='为一个 JSON 文本,键为分组名称,值为倍率'
|
||
/>
|
||
</Form.Group>
|
||
<Form.Checkbox
|
||
checked={inputs.LogConsumeEnabled === 'true'}
|
||
label='启用额度消费日志记录'
|
||
name='LogConsumeEnabled'
|
||
onChange={handleInputChange}
|
||
/>
|
||
<Form.Button onClick={submitOperationConfig}>保存运营设置</Form.Button>
|
||
<Divider />
|
||
<Header as='h3'>
|
||
监控设置
|
||
</Header>
|
||
<Form.Group widths={3}>
|
||
<Form.Input
|
||
label='最长响应时间'
|
||
name='ChannelDisableThreshold'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.ChannelDisableThreshold}
|
||
type='number'
|
||
min='0'
|
||
placeholder='单位秒,当运行通道全部测试时,超过此时间将自动禁用通道'
|
||
/>
|
||
</Form.Group>
|
||
<Form.Group inline>
|
||
<Form.Checkbox
|
||
checked={inputs.AutomaticDisableChannelEnabled === 'true'}
|
||
label='失败时自动禁用通道'
|
||
name='AutomaticDisableChannelEnabled'
|
||
onChange={handleInputChange}
|
||
/>
|
||
</Form.Group>
|
||
<Divider />
|
||
<Header as='h3'>
|
||
配置 SMTP
|
||
<Header.Subheader>用以支持系统的邮件发送</Header.Subheader>
|
||
</Header>
|
||
<Form.Group widths={3}>
|
||
<Form.Input
|
||
label='SMTP 服务器地址'
|
||
name='SMTPServer'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.SMTPServer}
|
||
placeholder='例如:smtp.qq.com'
|
||
/>
|
||
<Form.Input
|
||
label='SMTP 端口'
|
||
name='SMTPPort'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.SMTPPort}
|
||
placeholder='默认: 587'
|
||
/>
|
||
<Form.Input
|
||
label='SMTP 账户'
|
||
name='SMTPAccount'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.SMTPAccount}
|
||
placeholder='通常是邮箱地址'
|
||
/>
|
||
</Form.Group>
|
||
<Form.Group widths={3}>
|
||
<Form.Input
|
||
label='SMTP 发送者邮箱'
|
||
name='SMTPFrom'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.SMTPFrom}
|
||
placeholder='通常和邮箱地址保持一致'
|
||
/>
|
||
<Form.Input
|
||
label='SMTP 访问凭证'
|
||
name='SMTPToken'
|
||
onChange={handleInputChange}
|
||
type='password'
|
||
autoComplete='new-password'
|
||
value={inputs.SMTPToken}
|
||
placeholder='敏感信息不会发送到前端显示'
|
||
/>
|
||
</Form.Group>
|
||
<Form.Button onClick={submitSMTP}>保存 SMTP 设置</Form.Button>
|
||
<Divider />
|
||
<Header as='h3'>
|
||
配置 GitHub OAuth App
|
||
<Header.Subheader>
|
||
用以支持通过 GitHub 进行登录注册,
|
||
<a href='https://github.com/settings/developers' target='_blank'>
|
||
点击此处
|
||
</a>
|
||
管理你的 GitHub OAuth App
|
||
</Header.Subheader>
|
||
</Header>
|
||
<Message>
|
||
Homepage URL 填 <code>{inputs.ServerAddress}</code>
|
||
,Authorization callback URL 填{' '}
|
||
<code>{`${inputs.ServerAddress}/oauth/github`}</code>
|
||
</Message>
|
||
<Form.Group widths={3}>
|
||
<Form.Input
|
||
label='GitHub Client ID'
|
||
name='GitHubClientId'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.GitHubClientId}
|
||
placeholder='输入你注册的 GitHub OAuth APP 的 ID'
|
||
/>
|
||
<Form.Input
|
||
label='GitHub Client Secret'
|
||
name='GitHubClientSecret'
|
||
onChange={handleInputChange}
|
||
type='password'
|
||
autoComplete='new-password'
|
||
value={inputs.GitHubClientSecret}
|
||
placeholder='敏感信息不会发送到前端显示'
|
||
/>
|
||
</Form.Group>
|
||
<Form.Button onClick={submitGitHubOAuth}>
|
||
保存 GitHub OAuth 设置
|
||
</Form.Button>
|
||
<Divider />
|
||
<Header as='h3'>
|
||
配置 WeChat Server
|
||
<Header.Subheader>
|
||
用以支持通过微信进行登录注册,
|
||
<a
|
||
href='https://github.com/songquanpeng/wechat-server'
|
||
target='_blank'
|
||
>
|
||
点击此处
|
||
</a>
|
||
了解 WeChat Server
|
||
</Header.Subheader>
|
||
</Header>
|
||
<Form.Group widths={3}>
|
||
<Form.Input
|
||
label='WeChat Server 服务器地址'
|
||
name='WeChatServerAddress'
|
||
placeholder='例如:https://yourdomain.com'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.WeChatServerAddress}
|
||
/>
|
||
<Form.Input
|
||
label='WeChat Server 访问凭证'
|
||
name='WeChatServerToken'
|
||
type='password'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.WeChatServerToken}
|
||
placeholder='敏感信息不会发送到前端显示'
|
||
/>
|
||
<Form.Input
|
||
label='微信公众号二维码图片链接'
|
||
name='WeChatAccountQRCodeImageURL'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.WeChatAccountQRCodeImageURL}
|
||
placeholder='输入一个图片链接'
|
||
/>
|
||
</Form.Group>
|
||
<Form.Button onClick={submitWeChat}>
|
||
保存 WeChat Server 设置
|
||
</Form.Button>
|
||
<Divider />
|
||
<Header as='h3'>
|
||
配置 Turnstile
|
||
<Header.Subheader>
|
||
用以支持用户校验,
|
||
<a href='https://dash.cloudflare.com/' target='_blank'>
|
||
点击此处
|
||
</a>
|
||
管理你的 Turnstile Sites,推荐选择 Invisible Widget Type
|
||
</Header.Subheader>
|
||
</Header>
|
||
<Form.Group widths={3}>
|
||
<Form.Input
|
||
label='Turnstile Site Key'
|
||
name='TurnstileSiteKey'
|
||
onChange={handleInputChange}
|
||
autoComplete='new-password'
|
||
value={inputs.TurnstileSiteKey}
|
||
placeholder='输入你注册的 Turnstile Site Key'
|
||
/>
|
||
<Form.Input
|
||
label='Turnstile Secret Key'
|
||
name='TurnstileSecretKey'
|
||
onChange={handleInputChange}
|
||
type='password'
|
||
autoComplete='new-password'
|
||
value={inputs.TurnstileSecretKey}
|
||
placeholder='敏感信息不会发送到前端显示'
|
||
/>
|
||
</Form.Group>
|
||
<Form.Button onClick={submitTurnstile}>
|
||
保存 Turnstile 设置
|
||
</Form.Button>
|
||
</Form>
|
||
</Grid.Column>
|
||
</Grid>
|
||
);
|
||
};
|
||
|
||
export default SystemSetting;
|