mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 09:58:26 +01:00
new about section :3
This commit is contained in:
parent
4036e409fa
commit
6dfe6f2cc9
1 changed files with 15 additions and 1 deletions
16
server.js
16
server.js
|
@ -430,7 +430,9 @@ app.get("/search", async (req, res) => {
|
|||
|
||||
app.get("/channel/", async (req, res) => {
|
||||
const ID = req.query.id;
|
||||
|
||||
const tab = req.query.tab;
|
||||
|
||||
|
||||
|
||||
// about
|
||||
const bout = await fetch(config.tubeApi + `channel?id=${ID}&tab=about`);
|
||||
|
@ -441,12 +443,24 @@ app.get("/channel/", async (req, res) => {
|
|||
const channel = await fetch(config.tubeApi + `channel?id=${ID}&tab=videos`);
|
||||
const c = await channel.text();
|
||||
const tj = JSON.parse(toJson(c));
|
||||
|
||||
const summary = await wiki.summary(k.Channel.Metadata.Name);
|
||||
|
||||
var w = "";
|
||||
if (summary.title === "Not found.") {
|
||||
w = "none";
|
||||
}
|
||||
if (summary.title !== "Not found.") {
|
||||
w = summary;
|
||||
}
|
||||
|
||||
const { Subscribers: subscribers } = k.Channel.Metadata;
|
||||
renderTemplate(res, req, "channel.ejs", {
|
||||
ID: ID,
|
||||
tab: tab,
|
||||
j: k,
|
||||
tj: tj,
|
||||
wiki: w,
|
||||
about: k.Channel.Contents.ItemSection.About,
|
||||
subs:
|
||||
typeof subscribers === "string"
|
||||
|
|
Loading…
Reference in a new issue