mirror of
https://git.sr.ht/~cadence/cloudtube
synced 2024-11-10 02:27:29 +00:00
26 lines
855 B
JavaScript
26 lines
855 B
JavaScript
const {render} = require("pinski/plugins")
|
|
const constants = require("../utils/constants")
|
|
const {fetchChannel} = require("../utils/youtube")
|
|
const {getUser} = require("../utils/getuser")
|
|
|
|
module.exports = [
|
|
{
|
|
route: `/channel/(${constants.regex.ucid})`, methods: ["GET"], code: async ({req, fill}) => {
|
|
const id = fill[0]
|
|
const user = getUser(req)
|
|
const settings = user.getSettingsOrDefaults()
|
|
const data = await fetchChannel(id, settings.instance)
|
|
const subscribed = user.isSubscribed(id)
|
|
const instanceOrigin = settings.instance
|
|
// apply watched status
|
|
const watchedVideos = user.getWatchedVideos()
|
|
if (data.latestVideos) {
|
|
data.latestVideos.forEach(video => {
|
|
video.watched = watchedVideos.includes(video.videoId)
|
|
})
|
|
}
|
|
return render(200, "pug/channel.pug", {data, subscribed, instanceOrigin})
|
|
}
|
|
}
|
|
]
|