mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 01:34:43 -05:00
add lyrics and refactor code
adds lyrics to the page and refactors code
This commit is contained in:
parent
982dd92247
commit
97e1c2094c
1 changed files with 30 additions and 24 deletions
54
server.js
54
server.js
|
@ -4,43 +4,49 @@ var express = require("express");
|
||||||
var app = express();
|
var app = express();
|
||||||
app.engine("html", require("ejs").renderFile);
|
app.engine("html", require("ejs").renderFile);
|
||||||
app.set("view engine", "html");
|
app.set("view engine", "html");
|
||||||
|
const lyricsFinder = require("lyrics-finder");
|
||||||
const renderTemplate = async (res, req, template, data = {}) => {
|
const renderTemplate = async (res, req, template, data = {}) => {
|
||||||
res.render(
|
res.render(path.resolve(`${templateDir}${path.sep}${template}`), Object.assign(data)
|
||||||
path.resolve(`${templateDir}${path.sep}${template}`),
|
);
|
||||||
Object.assign(data)
|
|
||||||
);
|
|
||||||
};
|
};
|
||||||
|
const ytSearch = require('youtube-search');
|
||||||
const search = require('youtube-search');
|
|
||||||
const fetch = require('node-fetch');
|
const fetch = require('node-fetch');
|
||||||
|
const search = require("youtube-search");
|
||||||
|
|
||||||
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}`;
|
||||||
|
var search = require("youtube-search");
|
||||||
|
|
||||||
var opts = {
|
var opts = {
|
||||||
maxResults: 1,
|
maxResults: 1,
|
||||||
key: process.env.yt
|
key: process.env.yt
|
||||||
};
|
};
|
||||||
|
|
||||||
search(uu, opts, function(err, results) {
|
search(uu, opts, async (err, results) => {
|
||||||
var i = results[0].id;
|
if (err != undefined)
|
||||||
fetch(`https://yt-proxy-api.herokuapp.com/get_player_info?v=${i}`)
|
return console.error(err);
|
||||||
.then(res => res.json())
|
if (results.length === 0) return;
|
||||||
.then(json => {
|
|
||||||
var video = results[0];
|
const video = results[0];
|
||||||
if (!video) return;
|
|
||||||
if (err) console.log(err);
|
const json = await fetch(`https://yt-proxy-api.herokuapp.com/get_player_info?v=${video.id}`)
|
||||||
const tarih = json.upload_date
|
.then((res) => res.json());
|
||||||
var h = json.formats[1].url;
|
|
||||||
renderTemplate(res, req, "youtube.ejs", { url: h, title: video,video:json,date:tarih });
|
const lyrics = await lyricsFinder(video.title);
|
||||||
});
|
|
||||||
|
if (lyrics == undefined) lyrics = "Lyrics not found";
|
||||||
|
renderTemplate(res, req, 'youtube.ejs', {
|
||||||
|
url: json.formats[1].url,
|
||||||
|
title: video,
|
||||||
|
video: json,
|
||||||
|
date: json.upload_date,
|
||||||
|
lyrics:lyrics.replace(/\n/g, ' <br> ')
|
||||||
});
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
app.get("/", function(req, res) {
|
app.get("/", function(req, res) {
|
||||||
var url = req.query.url;
|
var url = req.query.url;
|
||||||
var search = require("youtube-search");
|
|
||||||
|
|
||||||
if(url){
|
if(url){
|
||||||
var opts = {
|
var opts = {
|
||||||
|
@ -62,8 +68,8 @@ if(err) return
|
||||||
|
|
||||||
|
|
||||||
app.get('/youtube/ara', async (req, res) => {
|
app.get('/youtube/ara', async (req, res) => {
|
||||||
var url = req.query.query;
|
var url = req.query.query;
|
||||||
|
|
||||||
if (!req.query.query) {
|
if (!req.query.query) {
|
||||||
return res.redirect(`/`);
|
return res.redirect(`/`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue