115网盘在线播放

This commit is contained in:
mtvpls
2026-04-27 22:07:57 +08:00
parent 49861c24ec
commit f265566536
14 changed files with 756 additions and 11 deletions
+94
View File
@@ -3718,6 +3718,8 @@ const NetDiskConfigComponent = ({
const [ucCookie, setUcCookie] = useState('');
const [ucToken, setUcToken] = useState('');
const [ucSavePath, setUcSavePath] = useState('/');
const [pan115Enabled, setPan115Enabled] = useState(false);
const [pan115Cookie, setPan115Cookie] = useState('');
useEffect(() => {
const quark = config?.NetDiskConfig?.Quark;
@@ -3739,6 +3741,8 @@ const NetDiskConfigComponent = ({
setUcCookie(config?.NetDiskConfig?.UC?.Cookie || '');
setUcToken(config?.NetDiskConfig?.UC?.Token || '');
setUcSavePath(config?.NetDiskConfig?.UC?.SavePath || '/');
setPan115Enabled(config?.NetDiskConfig?.Pan115?.Enabled || false);
setPan115Cookie(config?.NetDiskConfig?.Pan115?.Cookie || '');
}, [config]);
const handleSave = async () => {
@@ -3777,6 +3781,10 @@ const NetDiskConfigComponent = ({
Token: ucToken,
SavePath: ucSavePath,
},
Pan115: {
Enabled: pan115Enabled,
Cookie: pan115Cookie,
},
}),
});
@@ -3962,6 +3970,34 @@ const NetDiskConfigComponent = ({
});
};
const handleValidatePan115 = async () => {
await withLoading('validatePan115NetDisk', async () => {
try {
const response = await fetch('/api/admin/netdisk', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
action: 'validate',
provider: 'pan115',
Pan115: {
Cookie: pan115Cookie,
},
}),
});
const data = await response.json();
if (!response.ok) {
throw new Error(data.error || '校验失败');
}
showSuccess(data.message || '115 Cookie 格式正常', 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'>
@@ -4386,6 +4422,64 @@ 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'>
115
</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'>
115
</h3>
<p className='text-xs text-gray-500 dark:text-gray-400 mt-1'>
115
</p>
</div>
<label className='relative inline-flex items-center cursor-pointer'>
<input
type='checkbox'
checked={pan115Enabled}
onChange={(e) => setPan115Enabled(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-amber-300 dark:peer-focus:ring-amber-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-amber-600"></div>
</label>
</div>
<div>
<label className='block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2'>
Cookie
</label>
<textarea
value={pan115Cookie}
onChange={(e) => setPan115Cookie(e.target.value)}
disabled={!pan115Enabled}
rows={5}
placeholder='粘贴115网盘 Cookie'
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-amber-500 focus:border-transparent disabled:opacity-50 disabled:cursor-not-allowed'
/>
</div>
<div className='flex gap-3'>
<button
onClick={handleValidatePan115}
disabled={!pan115Enabled || !pan115Cookie || isLoading('validatePan115NetDisk')}
className={buttonStyles.primary}
>
{isLoading('validatePan115NetDisk') ? '校验中...' : '校验115 Cookie'}
</button>
<button
onClick={handleSave}
disabled={isLoading('saveNetDisk')}
className={buttonStyles.success}
>
{isLoading('saveNetDisk') ? '保存中...' : '保存配置'}
</button>
</div>
</div>
</details>
<AlertModal
isOpen={alertModal.isOpen}
onClose={hideAlert}
+17 -1
View File
@@ -15,6 +15,7 @@ import {
normalizePan123Password,
validatePan123Credentials,
} from '@/lib/netdisk/pan123.client';
import { assertPan115CookieHeaderSafe, normalizePan115Cookie, validatePan115Cookie } from '@/lib/netdisk/pan115.client';
import {
assertQuarkCookieHeaderSafe,
normalizeQuarkCookie,
@@ -56,7 +57,7 @@ export async function POST(request: NextRequest) {
}
const body = await request.json();
const { action, Quark, Mobile, Baidu, Tianyi, Pan123, UC, provider } = body;
const { action, Quark, Mobile, Baidu, Tianyi, Pan123, UC, Pan115, provider } = body;
const adminConfig = await getConfig();
if (action === 'save') {
@@ -71,6 +72,7 @@ export async function POST(request: NextRequest) {
const normalizedPan123Password = Pan123?.Password ? normalizePan123Password(Pan123.Password) : '';
const normalizedUCCookie = UC?.Cookie ? assertUCCookieHeaderSafe(UC.Cookie) : '';
const normalizedUCToken = UC?.Token ? String(UC.Token).trim() : '';
const normalizedPan115Cookie = Pan115?.Cookie ? assertPan115CookieHeaderSafe(Pan115.Cookie) : '';
adminConfig.NetDiskConfig = adminConfig.NetDiskConfig || {};
adminConfig.NetDiskConfig.Quark = {
@@ -102,6 +104,10 @@ export async function POST(request: NextRequest) {
Token: normalizedUCToken,
SavePath: UC?.SavePath || '/',
};
adminConfig.NetDiskConfig.Pan115 = {
Enabled: Boolean(Pan115?.Enabled),
Cookie: normalizedPan115Cookie,
};
await db.saveAdminConfig(adminConfig);
await setCachedConfig(adminConfig);
@@ -167,6 +173,16 @@ export async function POST(request: NextRequest) {
message: 'UC Cookie 可读',
});
}
if (provider === 'pan115') {
if (!Pan115?.Cookie) {
return NextResponse.json({ error: '请先填写115 Cookie' }, { status: 400 });
}
await validatePan115Cookie(normalizePan115Cookie(Pan115.Cookie));
return NextResponse.json({
success: true,
message: '115 Cookie 格式正常',
});
}
if (!Quark?.Cookie) {
return NextResponse.json({ error: '请先填写夸克 Cookie' }, { status: 400 });
@@ -0,0 +1,54 @@
import { NextRequest, NextResponse } from 'next/server';
import { getAuthInfoFromCookie } from '@/lib/auth';
import { getConfig } from '@/lib/config';
import { listPan115ShareVideos } from '@/lib/netdisk/pan115.client';
import { createPan115NetdiskSession } from '@/lib/netdisk/pan115-session-cache';
import { NETDISK_115_SOURCE } from '@/lib/netdisk/source';
import { hasFeaturePermission } from '@/lib/permissions';
export const runtime = 'nodejs';
export async function POST(request: NextRequest) {
try {
const authInfo = getAuthInfoFromCookie(request);
if (!authInfo?.username) {
return NextResponse.json({ error: '未登录' }, { status: 401 });
}
if (!(await hasFeaturePermission(authInfo.username, 'netdisk_temp_play'))) {
return NextResponse.json({ error: '无权限使用临时播放' }, { status: 403 });
}
const { shareUrl, passcode, title } = await request.json();
if (!shareUrl) {
return NextResponse.json({ error: '分享链接不能为空' }, { status: 400 });
}
const config = await getConfig();
const pan115Config = config.NetDiskConfig?.Pan115;
if (!pan115Config?.Enabled || !pan115Config.Cookie) {
return NextResponse.json({ error: '115网盘未配置或未启用' }, { status: 400 });
}
const result = await listPan115ShareVideos(shareUrl, passcode || '');
const session = createPan115NetdiskSession({
title: title || result.title,
shareUrl,
passcode,
files: result.files,
});
return NextResponse.json({
success: true,
source: NETDISK_115_SOURCE,
id: session.id,
title: title || result.title,
fileCount: result.files.length,
});
} catch (error) {
return NextResponse.json(
{ error: error instanceof Error ? error.message : '立即播放失败' },
{ status: 500 }
);
}
}
+51
View File
@@ -0,0 +1,51 @@
import { NextRequest, NextResponse } from 'next/server';
import { getAuthInfoFromCookie } from '@/lib/auth';
import { getPan115PlayUrl } from '@/lib/netdisk/pan115.client';
import { getPan115NetdiskSession, refreshPan115NetdiskSession } from '@/lib/netdisk/pan115-session-cache';
import { resolvePan115Session } from '@/lib/netdisk/pan115-session-resolver';
export const runtime = 'nodejs';
export async function GET(request: NextRequest) {
try {
const authInfo = getAuthInfoFromCookie(request);
if (!authInfo?.username) {
return NextResponse.json({ error: '未授权' }, { status: 401 });
}
const { searchParams } = new URL(request.url);
const id = searchParams.get('id') || searchParams.get('session');
const episodeIndexRaw = searchParams.get('episodeIndex');
const format = searchParams.get('format');
if (!id || episodeIndexRaw == null) {
return NextResponse.json({ error: '缺少参数' }, { status: 400 });
}
const episodeIndex = Number.parseInt(episodeIndexRaw, 10);
if (!Number.isInteger(episodeIndex) || episodeIndex < 0) {
return NextResponse.json({ error: '无效的 episodeIndex' }, { status: 400 });
}
refreshPan115NetdiskSession(id) || getPan115NetdiskSession(id);
const { session, cookie } = await resolvePan115Session(id);
const file = session.files[episodeIndex];
if (!file) {
return NextResponse.json({ error: '播放文件不存在' }, { status: 404 });
}
const url = await getPan115PlayUrl(file, cookie);
refreshPan115NetdiskSession(id);
if (format === 'json') {
return NextResponse.json({ url, headers: {} });
}
return NextResponse.redirect(url);
} catch (error) {
return NextResponse.json(
{ error: error instanceof Error ? error.message : '获取播放地址失败' },
{ status: 500 }
);
}
}
+75
View File
@@ -24,6 +24,12 @@ import {
parsePan123NetdiskId,
refreshPan123NetdiskSession,
} from '@/lib/netdisk/pan123-session-cache';
import {
createPan115NetdiskSession,
getPan115NetdiskSession,
parsePan115NetdiskId,
refreshPan115NetdiskSession,
} from '@/lib/netdisk/pan115-session-cache';
import {
createQuarkNetdiskSession,
getQuarkNetdiskSession,
@@ -32,6 +38,7 @@ import {
} from '@/lib/netdisk/quark-session-cache';
import {
LEGACY_QUARK_TEMP_SOURCE,
NETDISK_115_SOURCE,
NETDISK_123_SOURCE,
NETDISK_BAIDU_SOURCE,
NETDISK_MOBILE_SOURCE,
@@ -630,6 +637,74 @@ export async function GET(request: NextRequest) {
}
}
if (sourceCode === NETDISK_115_SOURCE) {
try {
const config = await getConfig();
const pan115Config = config.NetDiskConfig?.Pan115;
if (!pan115Config?.Enabled || !pan115Config.Cookie) {
throw new Error('115网盘未配置或未启用');
}
let session = refreshPan115NetdiskSession(id) || getPan115NetdiskSession(id);
if (!session) {
const payload = parsePan115NetdiskId(id);
const { listPan115ShareVideos } = await import('@/lib/netdisk/pan115.client');
const result = await listPan115ShareVideos(payload.shareUrl, payload.passcode || '');
session = createPan115NetdiskSession({
title: title || result.title,
shareUrl: payload.shareUrl,
passcode: payload.passcode,
files: result.files,
});
}
if (!session) {
throw new Error('115网盘播放信息恢复失败');
}
const pan115Session = session;
const { parseVideoFileName } = await import('@/lib/video-parser');
const parsedFiles = pan115Session.files
.map((file, index) => {
const parsed = parseVideoFileName(file.name);
return {
...file,
originalIndex: index,
sortEpisode: parsed.episode || index + 1,
isOVA: parsed.isOVA,
displayTitle: formatNetdiskEpisodeTitle(parsed, file.name),
};
})
.sort((a, b) => {
if (a.isOVA && !b.isOVA) return 1;
if (!a.isOVA && b.isOVA) return -1;
return a.sortEpisode !== b.sortEpisode
? a.sortEpisode - b.sortEpisode
: a.name.localeCompare(b.name, 'zh-Hans-CN', { numeric: true, sensitivity: 'base' });
});
return NextResponse.json({
source: NETDISK_115_SOURCE,
source_name: '115网盘',
id: pan115Session.id,
title: title || pan115Session.title,
poster: '',
year: '',
douban_id: 0,
desc: `115网盘分享:${pan115Session.shareUrl}`,
episodes: parsedFiles.map((file) => (
`/api/netdisk/115/play?id=${encodeURIComponent(pan115Session.id)}&episodeIndex=${file.originalIndex}`
)),
episodes_titles: parsedFiles.map((file) => file.displayTitle),
proxyMode: false,
});
} catch (error) {
return NextResponse.json(
{ error: (error as Error).message },
{ status: 500 }
);
}
}
if (sourceCode === NETDISK_QUARK_SOURCE || sourceCode === LEGACY_QUARK_TEMP_SOURCE) {
try {
const config = await getConfig();
+15 -2
View File
@@ -72,7 +72,7 @@ function HomeClient() {
const [toast, setToast] = useState<ToastProps | null>(null);
const detectNetdiskLink = (url: string): {
provider: 'quark' | 'mobile' | 'baidu' | 'tianyi' | '123' | 'uc';
provider: 'quark' | 'mobile' | 'baidu' | 'tianyi' | '123' | 'uc' | '115';
shareUrl: string;
passcode?: string;
} | null => {
@@ -146,6 +146,17 @@ function HomeClient() {
return { provider: 'mobile', shareUrl: trimmed };
}
if (/https:\/\/(?:115|anxia|115cdn)\.com\/s\//i.test(trimmed)) {
return {
provider: '115',
shareUrl: trimmed,
passcode: pickPasscode(
trimmed.match(/[?&](?:password|pwd|passcode)=([^&]+)/i)?.[1],
inlinePasscode(trimmed)
),
};
}
return null;
};
@@ -168,6 +179,8 @@ function HomeClient() {
? 'netdisk-baidu'
: netdisk.provider === 'tianyi'
? 'netdisk-tianyi'
: netdisk.provider === '115'
? 'netdisk-115'
: netdisk.provider === 'uc'
? 'netdisk-uc'
: netdisk.provider === '123'
@@ -860,7 +873,7 @@ function HomeClient() {
</div>
<div className='text-xs text-gray-500 dark:text-gray-400'>
UC123 线
UC123115 线
</div>
<input
value={directPlayUrl}
+1
View File
@@ -2504,6 +2504,7 @@ function PlayPageClient() {
const isSpecialLazyPlayUrl =
isXiaoyaLazyPlayUrl ||
newUrl.startsWith('/api/openlist/play') ||
newUrl.startsWith('/api/netdisk/115/play') ||
newUrl.startsWith('/api/netdisk/123/play') ||
newUrl.startsWith('/api/netdisk/quark/play') ||
newUrl.startsWith('/api/netdisk/uc/play') ||