1
0
mirror of https://git.sr.ht/~cadence/cloudtube synced 2024-09-19 18:57:30 +00:00
cloudtube/api/channels.js

17 lines
508 B
JavaScript
Raw Normal View History

2020-08-29 13:21:48 +00:00
const {render} = require("pinski/plugins")
2020-08-30 13:54:59 +00:00
const constants = require("./utils/constants")
const {fetchChannel} = require("./utils/youtube")
const {getUser} = require("./utils/getuser")
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 data = await fetchChannel(id)
const user = getUser(req)
const subscribed = user.isSubscribed(id)
return render(200, "pug/channel.pug", {data, subscribed})
2020-08-29 13:21:48 +00:00
}
}
]