khinsider 批量下載器

批量下載 downloads.khinsider.com 的原聲帶

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name              khinsider batch downloader
// @name:zh-TW        khinsider 批量下載器
// @namespace         https://blog.maple3142.net/
// @description       batch download for downloads.khinsider.com originalsoundtracks
// @description:zh-TW 批量下載 downloads.khinsider.com 的原聲帶
// @version           0.2.0
// @author            maple3142
// @match             https://downloads.khinsider.com/game-soundtracks/album/*
// @require           https://cdn.jsdelivr.net/npm/[email protected]/dist/ponyfill.min.js
// @require           https://cdn.jsdelivr.net/npm/[email protected]/StreamSaver.min.js
// @require           https://cdn.jsdelivr.net/gh/maple3142/StreamSaver.js/examples/zip-stream.min.js
// @license           MIT
// @connect           23.237.126.42
// @grant             GM_xmlhttpRequest
// ==/UserScript==

function download(url) {
	return new Promise((resolve, reject) => {
		GM_xmlhttpRequest({
			method: 'GET',
			url,
			responseType: 'blob',
			onload: res => resolve(res.response)
		})
	})
}

let started = false
$('a:contains("click to download")').on('click', async e => {
	e.preventDefault()
	$(e.target).text("Don't close this tab until download complete.")
	if (started) return
	started = true
	const title = $('h2')[0].textContent
	const files = $('tr>td.clickable-row:not([align])')
		.toArray()
		.map(el =>
			$(el)
				.find('a')
				.attr('href')
		)
		.map(url => {
			const obj = {}
			obj.pageUrl = url
			obj.blobPromise = fetch(url)
				.then(r => r.text())
				.then(html => {
					obj.url = $(html)
						.find('a:contains("Click here to download as MP3")')
						.attr('href')
					obj.name = decodeURIComponent(obj.url.split('/').pop())
					return download(obj.url)
				})
			return obj
		})
	const ws = streamSaver.createWriteStream(title + '.zip')
	new ZIP({
		async pull(ctrl) {
			const f = files.shift()
			const stream = new Response(await f.blobPromise).body
			ctrl.enqueue({ name: f.name, stream: () => stream })
			if (files.length === 0) ctrl.close()
		}
	})
		.pipeTo(ws)
		.then(console.log, console.error)
})