mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-04-17 11:31:28 +03:00
@@ -1,4 +1,4 @@
|
|||||||
const { uuid } = require('uuidv4');
|
const { v4: uuid } = require('uuid');
|
||||||
const fs = require('fs-extra');
|
const fs = require('fs-extra');
|
||||||
const { promisify } = require('util');
|
const { promisify } = require('util');
|
||||||
const auth_api = require('./authentication/auth');
|
const auth_api = require('./authentication/auth');
|
||||||
@@ -534,13 +534,7 @@ async function loadConfig() {
|
|||||||
subscriptions.forEach(async sub => subscriptions_api.writeSubscriptionMetadata(sub));
|
subscriptions.forEach(async sub => subscriptions_api.writeSubscriptionMetadata(sub));
|
||||||
subscriptions_api.updateSubscriptionPropertyMultiple(subscriptions, {downloading: false, child_process: null});
|
subscriptions_api.updateSubscriptionPropertyMultiple(subscriptions, {downloading: false, child_process: null});
|
||||||
// runs initially, then runs every ${subscriptionCheckInterval} seconds
|
// runs initially, then runs every ${subscriptionCheckInterval} seconds
|
||||||
const watchSubscriptionsInterval = function() {
|
subscriptions_api.watchSubscriptionsInterval();
|
||||||
watchSubscriptions();
|
|
||||||
const subscriptionsCheckInterval = config_api.getConfigItem('ytdl_subscriptions_check_interval');
|
|
||||||
setTimeout(watchSubscriptionsInterval, subscriptionsCheckInterval*1000);
|
|
||||||
}
|
|
||||||
|
|
||||||
watchSubscriptionsInterval();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// start the server here
|
// start the server here
|
||||||
@@ -570,62 +564,6 @@ function loadConfigValues() {
|
|||||||
utils.updateLoggerLevel(logger_level);
|
utils.updateLoggerLevel(logger_level);
|
||||||
}
|
}
|
||||||
|
|
||||||
function calculateSubcriptionRetrievalDelay(subscriptions_amount) {
|
|
||||||
// frequency is once every 5 mins by default
|
|
||||||
const subscriptionsCheckInterval = config_api.getConfigItem('ytdl_subscriptions_check_interval');
|
|
||||||
let interval_in_ms = subscriptionsCheckInterval * 1000;
|
|
||||||
const subinterval_in_ms = interval_in_ms/subscriptions_amount;
|
|
||||||
return subinterval_in_ms;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function watchSubscriptions() {
|
|
||||||
let subscriptions = await subscriptions_api.getAllSubscriptions();
|
|
||||||
|
|
||||||
if (!subscriptions) return;
|
|
||||||
|
|
||||||
// auto pause deprecated streamingOnly mode
|
|
||||||
const streaming_only_subs = subscriptions.filter(sub => sub.streamingOnly);
|
|
||||||
subscriptions_api.updateSubscriptionPropertyMultiple(streaming_only_subs, {paused: true});
|
|
||||||
|
|
||||||
const valid_subscriptions = subscriptions.filter(sub => !sub.paused && !sub.streamingOnly);
|
|
||||||
|
|
||||||
let subscriptions_amount = valid_subscriptions.length;
|
|
||||||
let delay_interval = calculateSubcriptionRetrievalDelay(subscriptions_amount);
|
|
||||||
|
|
||||||
let current_delay = 0;
|
|
||||||
|
|
||||||
const multiUserMode = config_api.getConfigItem('ytdl_multi_user_mode');
|
|
||||||
for (let i = 0; i < valid_subscriptions.length; i++) {
|
|
||||||
let sub = valid_subscriptions[i];
|
|
||||||
|
|
||||||
// don't check the sub if the last check for the same subscription has not completed
|
|
||||||
if (subscription_timeouts[sub.id]) {
|
|
||||||
logger.verbose(`Subscription: skipped checking ${sub.name} as the last check for ${sub.name} has not completed.`);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!sub.name) {
|
|
||||||
logger.verbose(`Subscription: skipped check for subscription with uid ${sub.id} as name has not been retrieved yet.`);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
logger.verbose('Watching ' + sub.name + ' with delay interval of ' + delay_interval);
|
|
||||||
setTimeout(async () => {
|
|
||||||
const multiUserModeChanged = config_api.getConfigItem('ytdl_multi_user_mode') !== multiUserMode;
|
|
||||||
if (multiUserModeChanged) {
|
|
||||||
logger.verbose(`Skipping subscription ${sub.name} due to multi-user mode change.`);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
await subscriptions_api.getVideosForSub(sub.id);
|
|
||||||
subscription_timeouts[sub.id] = false;
|
|
||||||
}, current_delay);
|
|
||||||
subscription_timeouts[sub.id] = true;
|
|
||||||
current_delay += delay_interval;
|
|
||||||
const subscriptionsCheckInterval = config_api.getConfigItem('ytdl_subscriptions_check_interval');
|
|
||||||
if (current_delay >= subscriptionsCheckInterval * 1000) current_delay = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function getOrigin() {
|
function getOrigin() {
|
||||||
return url_domain.origin;
|
return url_domain.origin;
|
||||||
}
|
}
|
||||||
@@ -1651,6 +1589,7 @@ app.get('/api/stream', optionalJwt, async (req, res) => {
|
|||||||
}
|
}
|
||||||
if (!fs.existsSync(file_path)) {
|
if (!fs.existsSync(file_path)) {
|
||||||
logger.error(`File ${file_path} could not be found! UID: ${uid}, ID: ${file_obj && file_obj.id}`);
|
logger.error(`File ${file_path} could not be found! UID: ${uid}, ID: ${file_obj && file_obj.id}`);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
const stat = fs.statSync(file_path);
|
const stat = fs.statSync(file_path);
|
||||||
const fileSize = stat.size;
|
const fileSize = stat.size;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
const path = require('path');
|
const path = require('path');
|
||||||
const fs = require('fs-extra');
|
const fs = require('fs-extra');
|
||||||
const { uuid } = require('uuidv4');
|
const { v4: uuid } = require('uuid');
|
||||||
|
|
||||||
const db_api = require('./db');
|
const db_api = require('./db');
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ const logger = require('../logger');
|
|||||||
const db_api = require('../db');
|
const db_api = require('../db');
|
||||||
|
|
||||||
const jwt = require('jsonwebtoken');
|
const jwt = require('jsonwebtoken');
|
||||||
const { uuid } = require('uuidv4');
|
const { v4: uuid } = require('uuid');
|
||||||
const bcrypt = require('bcryptjs');
|
const bcrypt = require('bcryptjs');
|
||||||
const fs = require('fs-extra');
|
const fs = require('fs-extra');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
const fs = require('fs-extra')
|
const fs = require('fs-extra')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
const { MongoClient } = require("mongodb");
|
const { MongoClient } = require("mongodb");
|
||||||
const { uuid } = require('uuidv4');
|
|
||||||
const _ = require('lodash');
|
const _ = require('lodash');
|
||||||
|
|
||||||
const config_api = require('./config');
|
const config_api = require('./config');
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
const fs = require('fs-extra');
|
const fs = require('fs-extra');
|
||||||
const { uuid } = require('uuidv4');
|
const { v4: uuid } = require('uuid');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const NodeID3 = require('node-id3')
|
const NodeID3 = require('node-id3')
|
||||||
const Mutex = require('async-mutex').Mutex;
|
const Mutex = require('async-mutex').Mutex;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
const fs = require('fs-extra')
|
const fs = require('fs-extra')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
const { uuid } = require('uuidv4');
|
const { v4: uuid } = require('uuid');
|
||||||
|
|
||||||
const config_api = require('./config');
|
const config_api = require('./config');
|
||||||
const db_api = require('./db');
|
const db_api = require('./db');
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ const logger = require('./logger');
|
|||||||
const utils = require('./utils');
|
const utils = require('./utils');
|
||||||
const consts = require('./consts');
|
const consts = require('./consts');
|
||||||
|
|
||||||
const { uuid } = require('uuidv4');
|
const { v4: uuid } = require('uuid');
|
||||||
|
|
||||||
const fetch = require('node-fetch');
|
const fetch = require('node-fetch');
|
||||||
const { gotify } = require("gotify");
|
const { gotify } = require("gotify");
|
||||||
|
|||||||
4657
backend/package-lock.json
generated
4657
backend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -64,7 +64,7 @@
|
|||||||
"shortid": "^2.2.15",
|
"shortid": "^2.2.15",
|
||||||
"tree-kill": "^1.2.2",
|
"tree-kill": "^1.2.2",
|
||||||
"unzipper": "^0.10.10",
|
"unzipper": "^0.10.10",
|
||||||
"uuidv4": "^6.2.13",
|
"uuid": "^9.0.1",
|
||||||
"winston": "^3.7.2",
|
"winston": "^3.7.2",
|
||||||
"xmlbuilder2": "^3.0.2"
|
"xmlbuilder2": "^3.0.2"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -205,6 +205,64 @@ exports.deleteSubscriptionFile = async (sub, file, deleteForever, file_uid = nul
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let current_sub_index = 0; // To keep track of the current subscription
|
||||||
|
exports.watchSubscriptionsInterval = async () => {
|
||||||
|
const subscriptions_check_interval = config_api.getConfigItem('ytdl_subscriptions_check_interval');
|
||||||
|
let parent_interval = setInterval(() => watchSubscriptions(), subscriptions_check_interval*1000);
|
||||||
|
watchSubscriptions();
|
||||||
|
config_api.config_updated.subscribe(change => {
|
||||||
|
if (!change) return;
|
||||||
|
if (change['key'] === 'ytdl_subscriptions_check_interval' || change['key'] === 'ytdl_multi_user_mode') {
|
||||||
|
current_sub_index = 0; // TODO: start after the last sub check
|
||||||
|
logger.verbose('Resetting sub check schedule due to config change');
|
||||||
|
clearInterval(parent_interval);
|
||||||
|
const new_interval = config_api.getConfigItem('ytdl_subscriptions_check_interval');
|
||||||
|
parent_interval = setInterval(() => watchSubscriptions(), new_interval*1000);
|
||||||
|
watchSubscriptions();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async function watchSubscriptions() {
|
||||||
|
const subscription_ids = await getValidSubscriptionsToCheck();
|
||||||
|
if (subscription_ids.length === 0) {
|
||||||
|
logger.info('Skipping subscription check as no valid subscriptions exist.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
checkSubscription(subscription_ids[current_sub_index]);
|
||||||
|
current_sub_index = (current_sub_index + 1) % subscription_ids.length;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function checkSubscription(sub_id) {
|
||||||
|
let sub = await exports.getSubscription(sub_id);
|
||||||
|
|
||||||
|
// don't check the sub if the last check for the same subscription has not completed
|
||||||
|
if (sub.downloading) {
|
||||||
|
logger.verbose(`Subscription: skipped checking ${sub.name} as it's downloading videos.`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!sub.name) {
|
||||||
|
logger.verbose(`Subscription: skipped check for subscription with uid ${sub.id} as name has not been retrieved yet.`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
await exports.getVideosForSub(sub.id);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function getValidSubscriptionsToCheck() {
|
||||||
|
const subscriptions = await exports.getAllSubscriptions();
|
||||||
|
|
||||||
|
if (!subscriptions) return;
|
||||||
|
|
||||||
|
// auto pause deprecated streamingOnly mode
|
||||||
|
const streaming_only_subs = subscriptions.filter(sub => sub.streamingOnly);
|
||||||
|
exports.updateSubscriptionPropertyMultiple(streaming_only_subs, {paused: true});
|
||||||
|
|
||||||
|
const valid_subscription_ids = subscriptions.filter(sub => !sub.paused && !sub.streamingOnly).map(sub => sub.id);
|
||||||
|
return valid_subscription_ids;
|
||||||
|
}
|
||||||
|
|
||||||
exports.getVideosForSub = async (sub_id) => {
|
exports.getVideosForSub = async (sub_id) => {
|
||||||
const sub = await exports.getSubscription(sub_id);
|
const sub = await exports.getSubscription(sub_id);
|
||||||
if (!sub || sub['downloading']) {
|
if (!sub || sub['downloading']) {
|
||||||
|
|||||||
@@ -13,7 +13,6 @@ const CONSTS = require('./consts');
|
|||||||
const fs = require('fs-extra');
|
const fs = require('fs-extra');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const scheduler = require('node-schedule');
|
const scheduler = require('node-schedule');
|
||||||
const { uuid } = require('uuidv4');
|
|
||||||
|
|
||||||
const TASKS = {
|
const TASKS = {
|
||||||
backup_local_db: {
|
backup_local_db: {
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ const winston = require('winston');
|
|||||||
const path = require('path');
|
const path = require('path');
|
||||||
const util = require('util');
|
const util = require('util');
|
||||||
const fs = require('fs-extra');
|
const fs = require('fs-extra');
|
||||||
const { uuid } = require('uuidv4');
|
const { v4: uuid } = require('uuid');
|
||||||
const NodeID3 = require('node-id3');
|
const NodeID3 = require('node-id3');
|
||||||
const exec = util.promisify(require('child_process').exec);
|
const exec = util.promisify(require('child_process').exec);
|
||||||
|
|
||||||
|
|||||||
@@ -88,13 +88,13 @@ exports.checkForYoutubeDLUpdate = async () => {
|
|||||||
const output_file_path = getYoutubeDLPath();
|
const output_file_path = getYoutubeDLPath();
|
||||||
// get current version
|
// get current version
|
||||||
let current_app_details_exists = fs.existsSync(CONSTS.DETAILS_BIN_PATH);
|
let current_app_details_exists = fs.existsSync(CONSTS.DETAILS_BIN_PATH);
|
||||||
if (!current_app_details_exists) {
|
if (!current_app_details_exists[selected_fork]) {
|
||||||
logger.warn(`Failed to get youtube-dl binary details at location '${CONSTS.DETAILS_BIN_PATH}'. Generating file...`);
|
logger.warn(`Failed to get youtube-dl binary details at location '${CONSTS.DETAILS_BIN_PATH}'. Generating file...`);
|
||||||
updateDetailsJSON(CONSTS.OUTDATED_YOUTUBEDL_VERSION, selected_fork, output_file_path);
|
updateDetailsJSON(CONSTS.OUTDATED_YOUTUBEDL_VERSION, selected_fork, output_file_path);
|
||||||
}
|
}
|
||||||
const current_app_details = JSON.parse(fs.readFileSync(CONSTS.DETAILS_BIN_PATH));
|
const current_app_details = JSON.parse(fs.readFileSync(CONSTS.DETAILS_BIN_PATH));
|
||||||
const current_version = current_app_details['version'];
|
const current_version = current_app_details[selected_fork]['version'];
|
||||||
const current_fork = current_app_details['downloader'];
|
const current_fork = current_app_details[selected_fork]['downloader'];
|
||||||
|
|
||||||
const latest_version = await exports.getLatestUpdateVersion(selected_fork);
|
const latest_version = await exports.getLatestUpdateVersion(selected_fork);
|
||||||
// if the binary does not exist, or default_downloader doesn't match existing fork, or if the fork has been updated, redownload
|
// if the binary does not exist, or default_downloader doesn't match existing fork, or if the fork has been updated, redownload
|
||||||
|
|||||||
16009
package-lock.json
generated
16009
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -78,5 +78,11 @@
|
|||||||
"protractor": "~7.0.0",
|
"protractor": "~7.0.0",
|
||||||
"ts-node": "~3.0.4",
|
"ts-node": "~3.0.4",
|
||||||
"tslint": "~6.1.0"
|
"tslint": "~6.1.0"
|
||||||
}
|
},
|
||||||
|
"overrides": {
|
||||||
|
"ngx-avatars": {
|
||||||
|
"@angular/common": "15.0.1",
|
||||||
|
"@angular/core": "15.0.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user