mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
152 lines
4.1 KiB
TypeScript
152 lines
4.1 KiB
TypeScript
import { getCsrf, delay } from '@/core/utils'
|
||
import { select, sq } from '@/core/spin-query'
|
||
import { urlChange } from '@/core/observer'
|
||
import { Toast } from '@/core/toast'
|
||
|
||
const importSeries = async (sid, uid, csrf) => {
|
||
// 获取合集所有视频
|
||
const seriesVideos = (
|
||
await fetch(
|
||
`https://api.bilibili.com/x/series/archives?mid=${uid}&series_id=${sid}&only_normal=true&sort=desc&pn=1&ps=99999`,
|
||
).then(r => r.json())
|
||
).data.archives
|
||
|
||
// 合集名
|
||
const seriesName = await sq(
|
||
() => document.getElementsByClassName('item cur')[0].innerHTML,
|
||
t => t !== '',
|
||
)
|
||
|
||
// 创建收藏夹,获取新收藏夹id
|
||
let favId = 0
|
||
for (;;) {
|
||
const response = await fetch('https://api.bilibili.com/x/v3/fav/folder/add', {
|
||
method: 'POST',
|
||
credentials: 'include',
|
||
headers: {
|
||
'Content-Type': 'application/x-www-form-urlencoded',
|
||
},
|
||
body: `title=${seriesName}&csrf=${csrf}&privacy=0`,
|
||
}).then(r => r.json())
|
||
|
||
if (response.code === 0) {
|
||
favId = response.data.id
|
||
break
|
||
} else {
|
||
await delay(2000)
|
||
}
|
||
}
|
||
|
||
const prompt = ' 过久未动即触发风控,等待一段时间自动继续'
|
||
const toast = Toast.info(`0 / ${seriesVideos.length}${prompt}`, '收藏系列')
|
||
// 添加每一个视频至收藏夹
|
||
for (let i = 0; i < seriesVideos.length; i++) {
|
||
// 做个延迟,防止太快而遭服务器拒绝
|
||
await delay(500)
|
||
for (;;) {
|
||
const response = await fetch('https://api.bilibili.com/x/v3/fav/resource/deal', {
|
||
method: 'POST',
|
||
credentials: 'include',
|
||
headers: {
|
||
'Content-Type': 'application/x-www-form-urlencoded',
|
||
},
|
||
body: `rid=${seriesVideos[i].aid}&add_media_ids=${favId}&type=2&csrf=${csrf}`,
|
||
}).then(r => r.json())
|
||
|
||
if (response.code === 0) {
|
||
// 如果请求成功,更新toast
|
||
toast.message = `${i + 1} / ${seriesVideos.length}${prompt}`
|
||
break
|
||
} else {
|
||
// 如果请求失败,等待若干秒后重试
|
||
const delayTime = Math.random() * 2000 + 2000
|
||
console.log(`请求失败,等待${(delayTime / 1000).toFixed(1)}s后重试`)
|
||
await delay(delayTime)
|
||
}
|
||
}
|
||
}
|
||
|
||
// 添加收藏夹任务完成
|
||
toast.duration = 1000
|
||
Toast.success('完成', '收藏系列', 2000)
|
||
}
|
||
|
||
const importCollection = async (sid, csrf) => {
|
||
for (;;) {
|
||
const response = await fetch('https://api.bilibili.com/x/v3/fav/season/fav', {
|
||
method: 'POST',
|
||
credentials: 'include',
|
||
headers: {
|
||
'Content-Type': 'application/x-www-form-urlencoded',
|
||
},
|
||
body: `platform=web&season_id=${sid}&csrf=${csrf}`,
|
||
}).then(r => r.json())
|
||
|
||
if (response.code === 0) {
|
||
Toast.success('成功', '导入合集', 2000)
|
||
break
|
||
} else {
|
||
await delay(2000)
|
||
}
|
||
}
|
||
}
|
||
|
||
const addButton = async () => {
|
||
enum PageType {
|
||
Collection,
|
||
Series,
|
||
}
|
||
|
||
const url = new URL(window.location.href)
|
||
let pageType: PageType
|
||
|
||
// series 或 collection 的 id
|
||
let sid
|
||
if (url.pathname.includes('seriesdetail')) {
|
||
// series id
|
||
sid = url.searchParams.get('sid')
|
||
pageType = PageType.Series
|
||
} else if (url.pathname.includes('collectiondetail')) {
|
||
// collection id
|
||
sid = url.searchParams.get('sid')
|
||
pageType = PageType.Collection
|
||
} else {
|
||
return
|
||
}
|
||
|
||
// 合集作者
|
||
const uid = url.pathname.split('/')[1]
|
||
|
||
// 当前登录用户 我 的验证信息
|
||
const csrf = getCsrf()
|
||
|
||
// add a button
|
||
const pageHead = await select('.page-head')
|
||
const rel = pageHead.children[1]
|
||
const button = document.createElement('a')
|
||
// 什么离谱class名,play打错了可还行
|
||
button.className = 'paly-all-btn'
|
||
button.textContent = '一键收藏'
|
||
button.style.cssText = `
|
||
right: 6rem;
|
||
display: block;
|
||
text-align: center;
|
||
width: 65px;
|
||
`
|
||
pageHead.insertBefore(button, rel)
|
||
|
||
button.onclick = async () => {
|
||
if (pageType === PageType.Series) {
|
||
await importSeries(sid, uid, csrf)
|
||
} else {
|
||
await importCollection(sid, csrf)
|
||
}
|
||
}
|
||
}
|
||
|
||
export const realEntry = () => {
|
||
urlChange(() => {
|
||
addButton()
|
||
})
|
||
}
|