mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 07:28:37 +08:00
更新Plex深度链接构建逻辑
This commit is contained in:
@@ -155,8 +155,8 @@ function buildDeepLinkUrl(appType: AppType, params: string | DoubanAppParams): s
|
|||||||
* - 媒体项: web/index.html#!/server/{machineIdentifier}/details?key={item_id}&X-Plex-Token={token}
|
* - 媒体项: web/index.html#!/server/{machineIdentifier}/details?key={item_id}&X-Plex-Token={token}
|
||||||
*
|
*
|
||||||
* Plex官方APP URL格式:
|
* Plex官方APP URL格式:
|
||||||
* - 媒体库: http://[PMS_IP_Address]:32400/library/sections/29/all?X-Plex-Token=YourTokenGoesHere
|
* plex://play/?metadataKey=/library/metadata/$SOME_ID&server=$SERVER_ID
|
||||||
* - 媒体项: http://[PMS_IP_ADDRESS]:32400/library/metadata/1668?X-Plex-Token=YourTokenGoesHere
|
* 例如: plex://play/?metadataKey=/library/metadata/123&server=456
|
||||||
*
|
*
|
||||||
* @param playUrl 播放链接
|
* @param playUrl 播放链接
|
||||||
*/
|
*/
|
||||||
@@ -216,12 +216,12 @@ function buildPlexDeepLink(playUrl: string): string {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 构建深度链接
|
// 构建深度链接 - 使用新的官方格式
|
||||||
if (mediaId) {
|
if (mediaId && machineIdentifier) {
|
||||||
// http://[PMS_IP_ADDRESS]:32400/library/metadata/1668?X-Plex-Token=YourTokenGoesHere
|
// plex://play/?metadataKey=/library/metadata/$SOME_ID&server=$SERVER_ID
|
||||||
let deepLink = `plex://library/metadata/${mediaId}`
|
let deepLink = `plex://play/?metadataKey=/library/metadata/${mediaId}&server=${machineIdentifier}`
|
||||||
if (plexToken) {
|
if (plexToken) {
|
||||||
deepLink += `?X-Plex-Token=${plexToken}`
|
deepLink += `&X-Plex-Token=${plexToken}`
|
||||||
}
|
}
|
||||||
console.log('Plex深度链接构建成功:', {
|
console.log('Plex深度链接构建成功:', {
|
||||||
originalUrl: playUrl,
|
originalUrl: playUrl,
|
||||||
@@ -232,6 +232,22 @@ function buildPlexDeepLink(playUrl: string): string {
|
|||||||
plexToken,
|
plexToken,
|
||||||
deepLink,
|
deepLink,
|
||||||
})
|
})
|
||||||
|
alert(deepLink)
|
||||||
|
return deepLink
|
||||||
|
}
|
||||||
|
|
||||||
|
// 如果有媒体ID但没有机器标识符,尝试使用旧的格式作为降级
|
||||||
|
if (mediaId) {
|
||||||
|
let deepLink = `plex://library/metadata/${mediaId}`
|
||||||
|
if (plexToken) {
|
||||||
|
deepLink += `?X-Plex-Token=${plexToken}`
|
||||||
|
}
|
||||||
|
console.log('Plex深度链接构建成功(降级格式):', {
|
||||||
|
originalUrl: playUrl,
|
||||||
|
mediaId,
|
||||||
|
plexToken,
|
||||||
|
deepLink,
|
||||||
|
})
|
||||||
return deepLink
|
return deepLink
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user