2020-08-29 13:21:48 +00:00
|
|
|
const {render} = require("pinski/plugins")
|
2020-09-23 12:05:02 +00:00
|
|
|
const constants = require("../utils/constants")
|
|
|
|
const {fetchChannel} = require("../utils/youtube")
|
|
|
|
const {getUser} = require("../utils/getuser")
|
2021-01-12 01:53:30 +00:00
|
|
|
const converters = require("../utils/converters")
|
2020-08-29 13:21:48 +00:00
|
|
|
|
|
|
|
module.exports = [
|
|
|
|
{
|
2020-08-30 13:54:59 +00:00
|
|
|
route: `/channel/(${constants.regex.ucid})`, methods: ["GET"], code: async ({req, fill}) => {
|
2020-08-29 13:21:48 +00:00
|
|
|
const id = fill[0]
|
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(id, settings.instance)
|
2020-08-30 13:54:59 +00:00
|
|
|
const subscribed = user.isSubscribed(id)
|
2020-10-18 08:51:09 +00:00
|
|
|
const instanceOrigin = settings.instance
|
2021-01-12 01:53:30 +00:00
|
|
|
// normalise info, apply watched status
|
2020-12-29 10:07:23 +00:00
|
|
|
const watchedVideos = user.getWatchedVideos()
|
|
|
|
if (data.latestVideos) {
|
|
|
|
data.latestVideos.forEach(video => {
|
2021-01-12 01:53:30 +00:00
|
|
|
converters.normaliseVideoInfo(video)
|
2020-12-29 10:07:23 +00:00
|
|
|
video.watched = watchedVideos.includes(video.videoId)
|
|
|
|
})
|
|
|
|
}
|
2020-10-18 08:51:09 +00:00
|
|
|
return render(200, "pug/channel.pug", {data, subscribed, instanceOrigin})
|
2020-08-29 13:21:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|