196 lines
11 KiB
HTML
196 lines
11 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<title>JSDoc: Source: utils/media/ytdlpUtils.js</title>
|
||
|
||
<script src="scripts/prettify/prettify.js"> </script>
|
||
<script src="scripts/prettify/lang-css.js"> </script>
|
||
<!--[if lt IE 9]>
|
||
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||
<![endif]-->
|
||
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
|
||
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
|
||
</head>
|
||
|
||
<body>
|
||
|
||
<div id="main">
|
||
|
||
<h1 class="page-title">Source: utils/media/ytdlpUtils.js</h1>
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<section>
|
||
<article>
|
||
<pre class="prettyprint source linenums"><code>/*Canopy - The next generation of stoner streaming software
|
||
Copyright (C) 2024-2025 Rainbownapkin and the TTN Community
|
||
|
||
This program is free software: you can redistribute it and/or modify
|
||
it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
||
|
||
You should have received a copy of the GNU Affero General Public License
|
||
along with this program. If not, see <https://www.gnu.org/licenses/>.*/
|
||
|
||
//Config
|
||
const config = require('../../../config.json');
|
||
|
||
//Node Imports
|
||
const { create: ytdlpMaker } = require('youtube-dl-exec');
|
||
//Import ytdlp w/ custom path from config so we can force the newest build of yt-dlp from pip
|
||
const ytdlp = ytdlpMaker(config.ytdlpPath);
|
||
const url = require("node:url");
|
||
const validator = require('validator');
|
||
|
||
//Local Imports
|
||
const media = require('../../app/channel/media/media.js');
|
||
const regexUtils = require('../regexUtils.js');
|
||
const loggerUtils = require('../loggerUtils.js')
|
||
|
||
/**
|
||
* Pulls metadata for a single youtube video via YT-DLP
|
||
* @param {String} id - Youtube Video ID
|
||
* @param {String} title - Title to add to the given media object
|
||
* @returns {Media} Media object containing relevant metadata
|
||
*/
|
||
module.exports.fetchYoutubeMetadata = async function(id, title){
|
||
try{
|
||
//Try to pull media from youtube id
|
||
const media = await fetchVideoMetadata(`https://youtu.be/${id}`, title, 'yt');
|
||
|
||
//Return found media
|
||
return media;
|
||
//If something went wrong
|
||
}catch(err){
|
||
//If our IP was banned by youtube
|
||
if(err.message.match("Sign in to confirm you’re not a bot.")){
|
||
//Make our own error with blackjack and hookers
|
||
throw loggerUtils.exceptionSmith("The server's IP address has been banned by youtube. Please contact your server's administrator.", "queue");
|
||
//Otherwise if we don't have a good way to handle it
|
||
}else{
|
||
//toss it back up
|
||
throw err;
|
||
}
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Pulls metadata for a playlist of youtube videos via YT-DLP
|
||
* @param {String} id - Youtube Playlist ID
|
||
* @param {String} title - Title to add to the given media objects
|
||
* @returns {Array} Array of Media objects containing relevant metadata
|
||
*/
|
||
module.exports.fetchYoutubePlaylistMetadata = async function(id, title){
|
||
try{
|
||
//Try to pull media from youtube id
|
||
const media = await fetchPlaylistMetadata(`https://youtu.be/playlist?list=${id}`, title, 'yt');
|
||
|
||
//Return found media
|
||
return media;
|
||
//If something went wrong
|
||
}catch(err){
|
||
//If our IP was banned by youtube
|
||
if(err.message.match("Sign in to confirm you’re not a bot.")){
|
||
//Make our own error with blackjack and hookers
|
||
throw loggerUtils.exceptionSmith("The server's IP address has been banned by youtube. Please contact your server's administrator.", "queue");
|
||
//Otherwise if we don't have a good way to handle it
|
||
}else{
|
||
//toss it back up
|
||
throw err;
|
||
}
|
||
}
|
||
}
|
||
|
||
/* This requires HLS embeds which, in-turn, require daily motion to add us to their CORS exception list
|
||
* Not gonna happen, so we need to use their API for this, or proxy the video
|
||
module.exports.fetchDailymotionMetadata = async function(id, title){
|
||
//Pull media from dailymotion link
|
||
const media = await fetchVideoMetadata(`https://dailymotion.com/video/${id}`, title, 'dm');
|
||
|
||
//Return found media;
|
||
return media;
|
||
}*/
|
||
|
||
/**
|
||
* Generic single video YTDLP function meant to be used by service-sepecific fetchers which will then be used to fetch video metadata
|
||
* @param {String} link - Link to video in question
|
||
* @param {String} title - Title to add to the given media objects
|
||
* @param {String} type - Link type to attach to the resulting media object
|
||
* @returns {Array} Array of Media objects containing relevant metadata
|
||
*/
|
||
async function fetchVideoMetadata(link, title, type, format = 'b'){
|
||
//Create media list
|
||
const mediaList = [];
|
||
|
||
//Pull raw metadata from YT-DLP
|
||
const rawMetadata = await ytdlpFetch(link, format);
|
||
|
||
//Pull data from rawMetadata, sanatizing title to prevent XSS
|
||
const name = validator.escape(validator.trim(rawMetadata.title));
|
||
const rawLink = rawMetadata.requested_downloads[0].url;
|
||
const id = rawMetadata.id;
|
||
|
||
//if we where handed a null title
|
||
if(title == null || title == ''){
|
||
//Create new media object from file info substituting filename for title
|
||
mediaList.push(new media(name, name, link, id, type, Number(rawMetadata.duration), rawLink));
|
||
}else{
|
||
//Create new media object from file info
|
||
mediaList.push(new media(title, name, link, id, type, Number(rawMetadata.duration), rawLink));
|
||
}
|
||
|
||
//Return list of media
|
||
return mediaList;
|
||
}
|
||
|
||
//YT-DLP takes forever to handle playlists, we'll handle this via piped in the future perhaps
|
||
/*async function fetchPlaylistMetadata(link, title, type, format = 'b'){
|
||
}*/
|
||
|
||
//Wrapper function for YT-DLP NPM package with pre-set cli-flags
|
||
/**
|
||
* Basic async YT-DLP Fetch wrapper, ensuring config
|
||
* @param {String} link - Link to fetch using YT-DLP
|
||
* @param {String} format - Format string to hand YT-DLP, defaults to 'b'
|
||
* @returns {Object} Metadata dump from YT-DLP
|
||
*/
|
||
async function ytdlpFetch(link, format = 'b'){
|
||
//return promise from ytdlp
|
||
return ytdlp(link, {
|
||
dumpSingleJson: true,
|
||
format
|
||
});
|
||
}</code></pre>
|
||
</article>
|
||
</section>
|
||
|
||
|
||
|
||
|
||
</div>
|
||
|
||
<nav>
|
||
<h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="activeChannel.html">activeChannel</a></li><li><a href="channelManager.html">channelManager</a></li><li><a href="chat.html">chat</a></li><li><a href="chatBuffer.html">chatBuffer</a></li><li><a href="chatHandler.html">chatHandler</a></li><li><a href="commandPreprocessor.html">commandPreprocessor</a></li><li><a href="commandProcessor.html">commandProcessor</a></li><li><a href="connectedUser.html">connectedUser</a></li><li><a href="media.html">media</a></li><li><a href="playlistHandler.html">playlistHandler</a></li><li><a href="queue.html">queue</a></li><li><a href="queuedMedia.html">queuedMedia</a></li><li><a href="tokebot.html">tokebot</a></li></ul><h3>Global</h3><ul><li><a href="global.html#authenticateSession">authenticateSession</a></li><li><a href="global.html#cache">cache</a></li><li><a href="global.html#channelBanSchema">channelBanSchema</a></li><li><a href="global.html#channelPermissionSchema">channelPermissionSchema</a></li><li><a href="global.html#channelSchema">channelSchema</a></li><li><a href="global.html#chatSchema">chatSchema</a></li><li><a href="global.html#comparePassword">comparePassword</a></li><li><a href="global.html#consoleWarn">consoleWarn</a></li><li><a href="global.html#daysToExpire">daysToExpire</a></li><li><a href="global.html#emailChangeSchema">emailChangeSchema</a></li><li><a href="global.html#emoteSchema">emoteSchema</a></li><li><a href="global.html#errorHandler">errorHandler</a></li><li><a href="global.html#errorMiddleware">errorMiddleware</a></li><li><a href="global.html#escapeRegex">escapeRegex</a></li><li><a href="global.html#exceptionHandler">exceptionHandler</a></li><li><a href="global.html#exceptionSmith">exceptionSmith</a></li><li><a href="global.html#failedAttempts">failedAttempts</a></li><li><a href="global.html#fetchMetadata">fetchMetadata</a></li><li><a href="global.html#fetchVideoMetadata">fetchVideoMetadata</a></li><li><a href="global.html#fetchYoutubeMetadata">fetchYoutubeMetadata</a></li><li><a href="global.html#fetchYoutubePlaylistMetadata">fetchYoutubePlaylistMetadata</a></li><li><a href="global.html#flairSchema">flairSchema</a></li><li><a href="global.html#genCaptcha">genCaptcha</a></li><li><a href="global.html#getLoginAttempts">getLoginAttempts</a></li><li><a href="global.html#getMediaType">getMediaType</a></li><li><a href="global.html#hashIP">hashIP</a></li><li><a href="global.html#hashPassword">hashPassword</a></li><li><a href="global.html#kickoff">kickoff</a></li><li><a href="global.html#killSession">killSession</a></li><li><a href="global.html#lifetime">lifetime</a></li><li><a href="global.html#localExceptionHandler">localExceptionHandler</a></li><li><a href="global.html#mailem">mailem</a></li><li><a href="global.html#markLink">markLink</a></li><li><a href="global.html#maxAttempts">maxAttempts</a></li><li><a href="global.html#mediaSchema">mediaSchema</a></li><li><a href="global.html#passwordResetSchema">passwordResetSchema</a></li><li><a href="global.html#permissionSchema">permissionSchema</a></li><li><a href="global.html#playlistMediaProperties">playlistMediaProperties</a></li><li><a href="global.html#playlistSchema">playlistSchema</a></li><li><a href="global.html#processExpiredAttempts">processExpiredAttempts</a></li><li><a href="global.html#queuedProperties">queuedProperties</a></li><li><a href="global.html#rankEnum">rankEnum</a></li><li><a href="global.html#refreshRawLink">refreshRawLink</a></li><li><a href="global.html#schedule">schedule</a></li><li><a href="global.html#securityCheck">securityCheck</a></li><li><a href="global.html#sendAddressVerification">sendAddressVerification</a></li><li><a href="global.html#socketCriticalExceptionHandler">socketCriticalExceptionHandler</a></li><li><a href="global.html#socketErrorHandler">socketErrorHandler</a></li><li><a href="global.html#socketExceptionHandler">socketExceptionHandler</a></li><li><a href="global.html#spent">spent</a></li><li><a href="global.html#statSchema">statSchema</a></li><li><a href="global.html#throttleAttempts">throttleAttempts</a></li><li><a href="global.html#tokeCommandSchema">tokeCommandSchema</a></li><li><a href="global.html#transporter">transporter</a></li><li><a href="global.html#typeEnum">typeEnum</a></li><li><a href="global.html#userBanSchema">userBanSchema</a></li><li><a href="global.html#userSchema">userSchema</a></li><li><a href="global.html#verify">verify</a></li><li><a href="global.html#yankMedia">yankMedia</a></li><li><a href="global.html#ytdlpFetch">ytdlpFetch</a></li></ul>
|
||
</nav>
|
||
|
||
<br class="clear">
|
||
|
||
<footer>
|
||
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 4.0.4</a> on Sat Sep 06 2025 00:47:13 GMT-0400 (Eastern Daylight Time)
|
||
</footer>
|
||
|
||
<script> prettyPrint(); </script>
|
||
<script src="scripts/linenumber.js"> </script>
|
||
</body>
|
||
</html>
|