123云盘播放

This commit is contained in:
mtvpls
2026-04-27 13:52:51 +08:00
parent 30b448c920
commit 2a0900ab69
14 changed files with 1110 additions and 29 deletions
+112
View File
@@ -3711,6 +3711,9 @@ const NetDiskConfigComponent = ({
const [tianyiEnabled, setTianyiEnabled] = useState(false);
const [tianyiAccount, setTianyiAccount] = useState('');
const [tianyiPassword, setTianyiPassword] = useState('');
const [pan123Enabled, setPan123Enabled] = useState(false);
const [pan123Account, setPan123Account] = useState('');
const [pan123Password, setPan123Password] = useState('');
useEffect(() => {
const quark = config?.NetDiskConfig?.Quark;
@@ -3725,6 +3728,9 @@ const NetDiskConfigComponent = ({
setTianyiEnabled(config?.NetDiskConfig?.Tianyi?.Enabled || false);
setTianyiAccount(config?.NetDiskConfig?.Tianyi?.Account || '');
setTianyiPassword(config?.NetDiskConfig?.Tianyi?.Password || '');
setPan123Enabled(config?.NetDiskConfig?.Pan123?.Enabled || false);
setPan123Account(config?.NetDiskConfig?.Pan123?.Account || '');
setPan123Password(config?.NetDiskConfig?.Pan123?.Password || '');
}, [config]);
const handleSave = async () => {
@@ -3752,6 +3758,11 @@ const NetDiskConfigComponent = ({
Account: tianyiAccount,
Password: tianyiPassword,
},
Pan123: {
Enabled: pan123Enabled,
Account: pan123Account,
Password: pan123Password,
},
}),
});
@@ -3878,6 +3889,35 @@ const NetDiskConfigComponent = ({
});
};
const handleValidatePan123 = async () => {
await withLoading('validatePan123NetDisk', async () => {
try {
const response = await fetch('/api/admin/netdisk', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
action: 'validate',
provider: 'pan123',
Pan123: {
Account: pan123Account,
Password: pan123Password,
},
}),
});
const data = await response.json();
if (!response.ok) {
throw new Error(data.error || '校验失败');
}
showSuccess(data.message || '123网盘账号密码可用', showAlert);
} catch (error) {
showError(error instanceof Error ? error.message : '校验失败', showAlert);
throw error;
}
});
};
return (
<div className='space-y-6'>
<details className='pt-4 border-t border-gray-200 dark:border-gray-700'>
@@ -4144,6 +4184,78 @@ const NetDiskConfigComponent = ({
</div>
</details>
<details className='pt-4 border-t border-gray-200 dark:border-gray-700'>
<summary className='text-sm font-semibold text-gray-900 dark:text-gray-100 cursor-pointer'>
123
</summary>
<div className='mt-4 space-y-4'>
<div className='flex items-center justify-between p-4 bg-gray-50 dark:bg-gray-800 rounded-lg border border-gray-200 dark:border-gray-700'>
<div>
<h3 className='text-sm font-medium text-gray-900 dark:text-gray-100'>
123
</h3>
<p className='text-xs text-gray-500 dark:text-gray-400 mt-1'>
123
</p>
</div>
<label className='relative inline-flex items-center cursor-pointer'>
<input
type='checkbox'
checked={pan123Enabled}
onChange={(e) => setPan123Enabled(e.target.checked)}
className='sr-only peer'
/>
<div className="w-11 h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-teal-300 dark:peer-focus:ring-teal-800 rounded-full peer dark:bg-gray-700 peer-checked:after:translate-x-full rtl:peer-checked:after:-translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:start-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-teal-600"></div>
</label>
</div>
<div>
<label className='block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2'>
</label>
<input
type='text'
value={pan123Account}
onChange={(e) => setPan123Account(e.target.value)}
disabled={!pan123Enabled}
placeholder='输入123网盘账号'
className='w-full px-3 py-2 border border-gray-300 dark:border-gray-600 rounded-lg bg-white dark:bg-gray-800 text-gray-900 dark:text-gray-100 focus:ring-2 focus:ring-teal-500 focus:border-transparent disabled:opacity-50 disabled:cursor-not-allowed'
/>
</div>
<div>
<label className='block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2'>
</label>
<input
type='password'
value={pan123Password}
onChange={(e) => setPan123Password(e.target.value)}
disabled={!pan123Enabled}
placeholder='输入123网盘密码'
className='w-full px-3 py-2 border border-gray-300 dark:border-gray-600 rounded-lg bg-white dark:bg-gray-800 text-gray-900 dark:text-gray-100 focus:ring-2 focus:ring-teal-500 focus:border-transparent disabled:opacity-50 disabled:cursor-not-allowed'
/>
</div>
<div className='flex gap-3'>
<button
onClick={handleValidatePan123}
disabled={!pan123Enabled || !pan123Account || !pan123Password || isLoading('validatePan123NetDisk')}
className={buttonStyles.primary}
>
{isLoading('validatePan123NetDisk') ? '校验中...' : '校验123网盘账号密码'}
</button>
<button
onClick={handleSave}
disabled={isLoading('saveNetDisk')}
className={buttonStyles.success}
>
{isLoading('saveNetDisk') ? '保存中...' : '保存配置'}
</button>
</div>
</div>
</details>
<AlertModal
isOpen={alertModal.isOpen}
onClose={hideAlert}