1
Fork 0

Update server.js

This commit is contained in:
Ashley 2022-01-23 23:50:14 +03:00 committed by GitHub
parent b856f156b4
commit 81005ac179

View file

@ -12,6 +12,9 @@ const renderTemplate = async (res, req, template, data = {}) => {
); );
}; };
const ytSearch = require('youtube-search');
const fetch = require('node-fetch');
app.get("/watch", function(req, res) { app.get("/watch", function(req, res) {
var url = req.query.v; var url = req.query.v;
var uu = `https://www.youtube.com/watch?v=${url}`; var uu = `https://www.youtube.com/watch?v=${url}`;
@ -25,24 +28,42 @@ app.get("/watch", function(req, res) {
const fetch = require("node-fetch"); const fetch = require("node-fetch");
search(uu, opts, function(err, results) { search(uu, opts, function(err, results) {
var i = results[0].id; var i = results[0].id;
fetch(`https://poketalebot.com/api/ytdl/dowlands/fromurl/get/json?url=${i}`) fetch(`https://yt-proxy-api.herokuapp.com/get_player_info?v=${i}`)
.then(res => res.json()) .then(res => res.json())
.then(json => { .then(json => {
var video = results[0]; var video = results[0];
if (!video) return; if (!video) return;
if (err) console.log(err); if (err) console.log(err);
const tarih = json.upload_date
var h = json.url; var h = json.formats[1].url;
renderTemplate(res, req, "youtube.ejs", { url: h, title: video }); renderTemplate(res, req, "youtube.ejs", { url: h, title: video,video:json,date:tarih });
}); });
}); });
}); });
app.get("/", function(req, res) {
var url = req.query.url;
var search = require("youtube-search");
app.get("/", function(req, res) { if(url){
renderTemplate(res, req, "ytmain.ejs"); var opts = {
}); maxResults: 1,
key: process.env.yt
};
app.get("/api/search", function(req, res) { search(url, opts, function(err, results) {
var h = results[0].id;
var lmao = results[0];
if(err) return
res.redirect(`/watch?v=${h}&title=${lmao.title}&channel=${lmao.channelTitle}&searchquery=${url}&data=${mythe2}${mythe}${mythe3}`);
});
}
if(!url){
renderTemplate(res, req, "ytmain.ejs")
}
});
app.get('/youtube/ara', async (req, res) => {
var url = req.query.query; var url = req.query.query;
var search = require("youtube-search"); var search = require("youtube-search");