auto/utils/metadata.js

50 lines
1.7 KiB
JavaScript
Raw Normal View History

2023-03-28 15:52:17 +01:00
const fetch = require('node-fetch')
async function getInstance() {
return 'https://invidious.lain.la'
}
2023-03-28 15:52:17 +01:00
async function getVideoMetadata(id) {
const instance = await getInstance()
const json = await (await fetch(`${instance}/api/v1/videos/${id}?fields=videoId,title,descriptionHtml,videoThumbnails,published,authorId&pretty=1`)).json()
return json
2023-03-28 15:52:17 +01:00
}
async function getChannel(id) {
const instance = await getInstance()
const json = await (await fetch(`${instance}/api/v1/channels/${id}?pretty=1`)).json()
return json
}
2023-03-28 15:52:17 +01:00
async function getChannelVideos(id) {
return new Promise(async (resolve, reject) => {
2023-03-28 15:52:17 +01:00
try {
const videos = []
const instance = 'https://pipedapi.kavin.rocks'
const json = await (await fetch(`${instance}/channel/${id}`)).json()
videos.push(...json.relatedStreams)
if (json.nextpage) await getNextPage(json.nextpage)
else resolve(videos)
async function getNextPage(payload) {
const page = await (await fetch(`${instance}/nextpage/channel/${id}?nextpage=${encodeURIComponent(payload)}`)).json()
videos.push(...page.relatedStreams)
2023-07-17 21:37:15 +01:00
if (videos.length >= 120) resolve(videos)
if (page.nextpage) await getNextPage(page.nextpage)
else resolve(videos)
}
2023-03-28 15:52:17 +01:00
} catch (e) {
resolve(false)
2023-03-28 15:52:17 +01:00
}
})
}
async function getPlaylistVideos(id) {
const instance = 'https://pipedapi.kavin.rocks'
const json = await (await fetch(`${instance}/playlists/${id}`)).json()
return json
2023-03-28 15:52:17 +01:00
}
module.exports = { getInstance, getVideoMetadata, getChannel, getChannelVideos, getPlaylistVideos }