mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-23 03:57:48 +01:00
Update src/libpoketube/init/pages-channel-and-download.js
This commit is contained in:
parent
7767c69ad1
commit
51a2f042c1
1 changed files with 39 additions and 25 deletions
|
@ -184,9 +184,7 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get("/web", async (req, res) => {
|
app.get("/web", async (req, res) => {
|
||||||
|
|
||||||
res.redirect("/");
|
res.redirect("/");
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get("/channel/", async (req, res) => {
|
app.get("/channel/", async (req, res) => {
|
||||||
|
@ -260,7 +258,7 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
|
|
||||||
const channelINVUrl = `${apiUrl}${ID}/`;
|
const channelINVUrl = `${apiUrl}${ID}/`;
|
||||||
|
|
||||||
const pronoun = "no pronouns :c"
|
const pronoun = "no pronouns :c";
|
||||||
|
|
||||||
var [tj, shorts, playlist, stream, c, cinv] = await Promise.all([
|
var [tj, shorts, playlist, stream, c, cinv] = await Promise.all([
|
||||||
getChannelData(channelUrl),
|
getChannelData(channelUrl),
|
||||||
|
@ -283,8 +281,6 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
cache[ID] = {
|
cache[ID] = {
|
||||||
result: {
|
result: {
|
||||||
tj,
|
tj,
|
||||||
|
@ -309,9 +305,6 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
);
|
);
|
||||||
const dnoreplace = about?.Description.toString();
|
const dnoreplace = about?.Description.toString();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (continuation) {
|
if (continuation) {
|
||||||
const currentAuthorId = String(cinv.authorId).trim();
|
const currentAuthorId = String(cinv.authorId).trim();
|
||||||
const firstVideoAuthorId = String(tj.videos[0].authorId).trim();
|
const firstVideoAuthorId = String(tj.videos[0].authorId).trim();
|
||||||
|
@ -321,17 +314,38 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const ChannelFirstVideoObject = await fetch(
|
let ChannelFirstVideoObject;
|
||||||
|
|
||||||
|
if (tj && tj.videos && tj.videos.length > 0) {
|
||||||
|
ChannelFirstVideoObject = await fetch(
|
||||||
`${config.invapi}/videos/${tj.videos[0].videoId}`
|
`${config.invapi}/videos/${tj.videos[0].videoId}`
|
||||||
)
|
)
|
||||||
.then((res) => res.text())
|
.then((res) => res.text())
|
||||||
.then((txt) => getJson(txt));
|
.then((txt) => JSON.parse(txt));
|
||||||
|
} else if (shorts && shorts.videos && shorts.videos.length > 0) {
|
||||||
|
ChannelFirstVideoObject = await fetch(
|
||||||
|
`${config.invapi}/videos/${shorts.videos[0].videoId}`
|
||||||
|
)
|
||||||
|
.then((res) => res.text())
|
||||||
|
.then((txt) => JSON.parse(txt));
|
||||||
|
} else if (stream && stream.videos && stream.videos.length > 0) {
|
||||||
|
ChannelFirstVideoObject = await fetch(
|
||||||
|
`${config.invapi}/videos/${stream.videos[0].videoId}`
|
||||||
|
)
|
||||||
|
.then((res) => res.text())
|
||||||
|
.then((txt) => JSON.parse(txt));
|
||||||
|
} else {
|
||||||
|
ChannelFirstVideoObject = {
|
||||||
|
subCountText: "0",
|
||||||
|
authorVerified: false,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
renderTemplate(res, req, "channel.ejs", {
|
renderTemplate(res, req, "channel.ejs", {
|
||||||
ID,
|
ID,
|
||||||
tab,
|
tab,
|
||||||
shorts,
|
shorts,
|
||||||
firstVideo:ChannelFirstVideoObject,
|
firstVideo: ChannelFirstVideoObject,
|
||||||
j: boutJson,
|
j: boutJson,
|
||||||
sort: sort_by,
|
sort: sort_by,
|
||||||
stream,
|
stream,
|
||||||
|
|
Loading…
Reference in a new issue