1
Fork 0
poke/server.js

120 lines
3.7 KiB
JavaScript
Raw Normal View History

2022-02-28 12:33:58 -05:00
/*
2022-02-28 12:35:26 -05:00
Copyright (C) 2021-2022 POKETUBE & LIGHTTUBE CONTRUBUTORS (https://gitlab.com/kuylar/lighttube,https://github.com/iamashley0/poketube.)
2022-02-28 12:33:58 -05:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see https://www.gnu.org/licenses/.
*/
2021-07-07 08:35:33 -04:00
const path = require("path");
2022-03-06 12:59:53 -05:00
const moment = require("moment");
2021-07-07 08:35:33 -04:00
const templateDir = path.resolve(`${process.cwd()}${path.sep}html`);
var express = require("express");
var app = express();
app.engine("html", require("ejs").renderFile);
2022-03-02 15:09:56 -05:00
var dislike_api = `https://returnyoutubedislikeapi.com/votes?videoId=`
2021-07-07 08:35:33 -04:00
app.set("view engine", "html");
2022-03-06 11:16:42 -05:00
const lyricsFinder = require("./src/lyrics.js");
2022-02-23 13:54:21 -05:00
const renderTemplate = async (res, req, template, data = {}) => {
res.render(
path.resolve(`${templateDir}${path.sep}${template}`),
Object.assign(data)
);
2021-07-07 08:35:33 -04:00
};
2022-02-23 13:54:21 -05:00
const fetch = require("node-fetch");
2022-03-02 15:09:56 -05:00
const fetcher = require("./src/fetcher.js");
2022-03-07 11:09:55 -05:00
app.get("/watchnew", async function (req, res) {
var url = req.query.v;
var uu = `https://www.youtube.com/watch?v=${url}`;
2022-03-02 15:09:56 -05:00
2022-03-07 11:09:55 -05:00
const json = await fetch(
`https://yt-proxy-api.herokuapp.com/get_player_info?v=${url}`
).then((res) => res.json());
const lyrics = await lyricsFinder(json.title);
if (lyrics == undefined) lyrics = "Lyrics not found";
renderTemplate(res, req, "youtubenew.ejs", {
url: json.formats[1].url,
title: json,
video: json,
date: json.upload_date,
lyrics: lyrics.replace(/\n/g, " <br> "),
});
});
2022-02-23 13:54:21 -05:00
app.get("/watch", async function (req, res) {
2021-07-07 08:35:33 -04:00
var url = req.query.v;
2022-03-02 15:09:56 -05:00
var e = req.query.e;
2021-07-11 12:15:06 -04:00
var uu = `https://www.youtube.com/watch?v=${url}`;
2021-07-07 08:35:33 -04:00
2022-02-23 13:54:21 -05:00
var opts = {
maxResults: 1,
key: process.env.yt,
};
2022-03-06 08:52:37 -05:00
var fetching = await fetcher(url)
2022-03-02 15:09:56 -05:00
const dislike = await fetch(`${dislike_api}${url}`).then((res) => res.json());
const dislikes = dislike.dislikes
2022-03-06 08:52:37 -05:00
const j = fetching.video.Player.Formats.Format
if(j[1].URL){
var url = j[1].URL
} else if(j[1].URL){
var s = j.formats
const lastItem = s[s.length - 1];
var url = lastItem.URL
}
2022-03-02 15:09:56 -05:00
2022-03-06 08:52:37 -05:00
const json = fetching.video.Player
const engagement = fetching.engagement
const lyrics = await lyricsFinder(json.Title);
if (lyrics == undefined) lyrics = "Lyrics not found";
2022-02-23 13:54:21 -05:00
renderTemplate(res, req, "youtubenew.ejs", {
2022-03-06 08:52:37 -05:00
url: url,
engagement:engagement,
2022-02-13 06:15:42 -05:00
title: json,
2022-03-06 08:52:37 -05:00
a:json,
video: json,
2022-03-06 12:59:53 -05:00
date: moment(json.uploadDate).format("LL"),
2022-03-02 15:09:56 -05:00
e:e,
2022-02-23 13:54:21 -05:00
lyrics: lyrics.replace(/\n/g, " <br> "),
});
});
2022-02-23 13:54:21 -05:00
app.get("/", function (req, res) {
renderTemplate(res, req, "ytmain.ejs");
2021-07-07 08:35:33 -04:00
});
2022-03-07 11:09:55 -05:00
app.get("/channel", function (req, res) {
renderTemplate(res, req, "channel.ejs");
});
app.get("/domains", function (req, res) {
renderTemplate(res, req, "domains.ejs");
});
2022-03-06 12:59:53 -05:00
app.get("/api/search", async (req, res) => {
2022-02-23 13:54:21 -05:00
const query = req.query.query;
2022-02-13 06:15:42 -05:00
if (!query) {
2022-02-23 13:54:21 -05:00
return res.redirect("/");
2022-02-13 06:15:42 -05:00
}
2022-03-06 08:52:37 -05:00
fetcher.searcher(query,res)
2022-03-02 15:09:56 -05:00
});
2022-02-23 13:54:21 -05:00
app.get("/css/:id", (req, res) => {
res.sendFile(__dirname + `/css/${req.params.id}`);
});
2022-03-06 08:52:37 -05:00
app.get("/video/upload", (req, res) => {
2022-03-02 15:25:41 -05:00
res.redirect("https://youtube.com/upload?from=poketube_utc");
});
2022-03-07 11:09:55 -05:00
app.get("*", function (req, res) {
renderTemplate(res, req, "404.ejs");
});
2021-07-07 08:35:33 -04:00
const listener = app.listen(3000);