mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-22 17:37:51 +01:00
add Region settings :3
This commit is contained in:
parent
48076e81d6
commit
87bdb45f0e
1 changed files with 5 additions and 2 deletions
|
@ -177,12 +177,15 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get("/watch", async (req, res) => {
|
app.get("/watch", async (req, res) => {
|
||||||
const { dm, v, e, r, f, m, quality: q, a, universe } = req.query;
|
const { dm, region, hl, v, e, r, f, m, quality: q, a, universe } = req.query;
|
||||||
|
|
||||||
if (!v) {
|
if (!v) {
|
||||||
return res.redirect("/");
|
return res.redirect("/");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var contentlang = hl || "en-US";
|
||||||
|
var contentregion = region || "US";
|
||||||
|
|
||||||
const isVideoValid = await core.isvalidvideo(v);
|
const isVideoValid = await core.isvalidvideo(v);
|
||||||
if (!isVideoValid) {
|
if (!isVideoValid) {
|
||||||
return res.redirect("/?fromerror=21_video_not_valid");
|
return res.redirect("/?fromerror=21_video_not_valid");
|
||||||
|
@ -193,7 +196,7 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
const secure = ["poketube.fun"].includes(req.hostname);
|
const secure = ["poketube.fun"].includes(req.hostname);
|
||||||
const verify = req.hostname === "pt.zzls.xyz";
|
const verify = req.hostname === "pt.zzls.xyz";
|
||||||
|
|
||||||
core.video(v).then((data) => {
|
core.video(v, contentlang, contentregion).then((data) => {
|
||||||
try {
|
try {
|
||||||
const k = data?.video;
|
const k = data?.video;
|
||||||
const json = data?.json;
|
const json = data?.json;
|
||||||
|
|
Loading…
Reference in a new issue