cloudtube/api/channels.js

42 lines
1.5 KiB
JavaScript
Raw Normal View History

2020-08-29 13:21:48 +00:00
const {render} = require("pinski/plugins")
const {fetchChannel} = require("../utils/youtube")
const {getUser} = require("../utils/getuser")
const converters = require("../utils/converters")
2020-08-29 13:21:48 +00:00
module.exports = [
{
route: `/(c|channel|user)/(.+)`, methods: ["GET"], code: async ({req, fill, url}) => {
const path = fill[0]
const id = fill[1]
2020-08-30 13:54:59 +00:00
const user = getUser(req)
2020-08-31 13:22:16 +00:00
const settings = user.getSettingsOrDefaults()
const data = await fetchChannel(path, id, settings.instance)
const instanceOrigin = settings.instance
2022-01-10 01:18:45 +00:00
// problem with the channel? fetchChannel has collected the necessary information for us.
// we can render a skeleton page, display the message, and provide the option to unsubscribe.
if (data.error) {
const statusCode = data.missing ? 410 : 500
const subscribed = user.isSubscribed(id)
return render(statusCode, "pug/channel-error.pug", {req, settings, data, subscribed, instanceOrigin})
2022-01-10 01:18:45 +00:00
}
// everything is fine
// normalise info, apply watched status
if (!data.second__subCountText && data.subCount) {
data.second__subCountText = converters.subscriberCountToText(data.subCount)
}
2020-12-29 10:07:23 +00:00
const watchedVideos = user.getWatchedVideos()
if (data.latestVideos) {
data.latestVideos.forEach(video => {
converters.normaliseVideoInfo(video)
2020-12-29 10:07:23 +00:00
video.watched = watchedVideos.includes(video.videoId)
})
}
const subscribed = user.isSubscribed(data.authorId)
return render(200, "pug/channel.pug", {req, settings, data, subscribed, instanceOrigin})
2020-08-29 13:21:48 +00:00
}
}
]