From f70128f4fc88ac37e6db3186e700d66bce282372 Mon Sep 17 00:00:00 2001 From: wukko Date: Thu, 1 Sep 2022 19:51:18 +0600 Subject: [PATCH] fix small issues --- src/cobalt.js | 8 +++---- src/front/cobalt.js | 9 -------- src/localization/manager.js | 2 +- src/modules/pageRender/elements.js | 2 +- src/modules/services/vimeo.js | 4 ++-- src/modules/servicesPatternTesters.js | 2 +- src/modules/setup.js | 32 +++++++++++++-------------- src/modules/stream/selectQuality.js | 4 ++-- src/modules/stream/stream.js | 2 +- src/modules/stream/types.js | 6 ++--- src/modules/sub/utils.js | 18 +++++++-------- 11 files changed, 40 insertions(+), 49 deletions(-) diff --git a/src/cobalt.js b/src/cobalt.js index 6694b53..04c7051 100644 --- a/src/cobalt.js +++ b/src/cobalt.js @@ -96,10 +96,10 @@ if (fs.existsSync('./.env')) { res.status(500).json({ 'status': 'error', 'text': 'something went wrong.' }) } }); - app.get("/api", async (req, res) => { + app.get("/api", (req, res) => { res.redirect('/api/json') }); - app.get("/", async (req, res) => { + app.get("/", (req, res) => { // redirect masochists to a page where they can install a proper browser if (req.header("user-agent") && req.header("user-agent").includes("Trident")) { if (internetExplorerRedirect.newNT.includes(req.header("user-agent").split('NT ')[1].split(';')[0])) { @@ -118,10 +118,10 @@ if (fs.existsSync('./.env')) { })) } }); - app.get("/favicon.ico", async (req, res) => { + app.get("/favicon.ico", (req, res) => { res.redirect('/icons/favicon.ico'); }); - app.get("/*", async (req, res) => { + app.get("/*", (req, res) => { res.redirect('/') }); app.listen(process.env.port, () => { diff --git a/src/front/cobalt.js b/src/front/cobalt.js index 0e044d4..7599553 100644 --- a/src/front/cobalt.js +++ b/src/front/cobalt.js @@ -185,15 +185,6 @@ function loadSettings() { changeSwitcher(i, sGet(i)) } } -function checkbox(action) { - if (eid(action).checked) { - sSet(action, "true"); - if (action == "alwaysVisibleButton") button(); - } else { - sSet(action, "false"); - if (action == "alwaysVisibleButton") button(); - } -} function toggle(toggle) { let state = sGet(toggle); if (state) { diff --git a/src/localization/manager.js b/src/localization/manager.js index 996be01..4c16ae9 100644 --- a/src/localization/manager.js +++ b/src/localization/manager.js @@ -6,7 +6,7 @@ const locPath = './src/localization/languages' let loc = {} -export async function loadLoc() { +export function loadLoc() { fs.readdir(locPath, (err, files) => { files.forEach(file => { loc[file.split('.')[0]] = loadJson(`${locPath}/${file}`) diff --git a/src/modules/pageRender/elements.js b/src/modules/pageRender/elements.js index 082fe36..f6d5fd6 100644 --- a/src/modules/pageRender/elements.js +++ b/src/modules/pageRender/elements.js @@ -32,7 +32,7 @@ export function popup(obj) { if (Array.isArray(obj.body)) { body = `` for (let i = 0; i < obj.body.length; i++) { - let classes = obj.body[i]["classes"] ? obj.body[i]["classes"] : [] + classes = obj.body[i]["classes"] ? obj.body[i]["classes"] : [] if (i != obj.body.length - 1 && !obj.body[i]["nopadding"]) { classes.push("desc-padding") } diff --git a/src/modules/services/vimeo.js b/src/modules/services/vimeo.js index 220c9f6..5b887d5 100644 --- a/src/modules/services/vimeo.js +++ b/src/modules/services/vimeo.js @@ -16,9 +16,9 @@ export default async function(obj) { let best = all[0] try { if (obj.quality != "max") { - let pref = parseInt(quality[obj.quality]) + let pref = parseInt(quality[obj.quality], 10) for (let i in all) { - let currQuality = parseInt(all[i]["quality"].replace('p', '')) + let currQuality = parseInt(all[i]["quality"].replace('p', ''), 10) if (currQuality < pref) { break; } else if (currQuality == pref) { diff --git a/src/modules/servicesPatternTesters.js b/src/modules/servicesPatternTesters.js index 01b4500..d2cbd9e 100644 --- a/src/modules/servicesPatternTesters.js +++ b/src/modules/servicesPatternTesters.js @@ -1,4 +1,4 @@ -export let testers = { +export const testers = { "twitter": (patternMatch) => (patternMatch["id"] && patternMatch["id"].length < 20), "vk": (patternMatch) => (patternMatch["userId"] && patternMatch["videoId"] && diff --git a/src/modules/setup.js b/src/modules/setup.js index 401eb0f..4aa98a9 100644 --- a/src/modules/setup.js +++ b/src/modules/setup.js @@ -9,6 +9,22 @@ let q = `${Cyan('?')} \x1b[1m`; let ob = { streamSalt: randomBytes(64).toString('hex') } let rl = createInterface({ input: process.stdin, output: process.stdout }); +let final = () => { + if (existsSync(envPath)) { + unlinkSync(envPath) + } + for (let i in ob) { + appendFileSync(envPath, `${i}=${ob[i]}\n`) + } + console.log(Bright("\nI've created a .env file with selfURL, port, and stream salt.")) + console.log(`${Bright("Now I'll run")} ${Cyan("npm install")} ${Bright("to install all dependencies. It shouldn't take long.\n\n")}`) + execSync('npm install', { stdio: [0, 1, 2] }); + console.log(`\n\n${Green("All done!\n")}`) + console.log("You can re-run this script any time to update the configuration.") + console.log("\nYou're now ready to start the main project.\nHave fun!") + rl.close() +} + console.log( `${Cyan("Welcome to cobalt!")}\n${Bright("We'll get you up and running in no time.\nLet's start by creating a ")}${Cyan(".env")}${Bright(" file. You can always change it later.")}` ) @@ -36,19 +52,3 @@ rl.question(q, r1 => { final() }); }) - -let final = () => { - if (existsSync(envPath)) { - unlinkSync(envPath) - } - for (let i in ob) { - appendFileSync(envPath, `${i}=${ob[i]}\n`) - } - console.log(Bright("\nI've created a .env file with selfURL, port, and stream salt.")) - console.log(`${Bright("Now I'll run")} ${Cyan("npm install")} ${Bright("to install all dependencies. It shouldn't take long.\n\n")}`) - execSync('npm install', { stdio: [0, 1, 2] }); - console.log(`\n\n${Green("All done!\n")}`) - console.log("You can re-run this script any time to update the configuration.") - console.log("\nYou're now ready to start the main project.\nHave fun!") - rl.close() -} diff --git a/src/modules/stream/selectQuality.js b/src/modules/stream/selectQuality.js index bfe2001..d21a5f2 100644 --- a/src/modules/stream/selectQuality.js +++ b/src/modules/stream/selectQuality.js @@ -9,8 +9,8 @@ function closest(goal, array) { export default function(service, quality, maxQuality) { if (quality == "max") return maxQuality; - quality = parseInt(mq[quality]) - maxQuality = parseInt(maxQuality) + quality = parseInt(mq[quality], 10) + maxQuality = parseInt(maxQuality, 10) if (quality >= maxQuality || quality == maxQuality) return maxQuality; diff --git a/src/modules/stream/stream.js b/src/modules/stream/stream.js index a575ad2..ee847df 100644 --- a/src/modules/stream/stream.js +++ b/src/modules/stream/stream.js @@ -22,6 +22,6 @@ export default function(res, ip, id, hmac, exp) { res.status(streamInfo.status).json(apiJSON(0, { t: streamInfo.error }).body); } } catch (e) { - internalError(res) + res.status(500).json({ status: "error", text: "Internal Server Error" }); } } diff --git a/src/modules/stream/types.js b/src/modules/stream/types.js index e2ca532..3cc7d56 100644 --- a/src/modules/stream/types.js +++ b/src/modules/stream/types.js @@ -4,7 +4,7 @@ import got from "got"; import { ffmpegArgs, genericUserAgent } from "../config.js"; import { msToTime } from "../sub/utils.js"; -export async function streamDefault(streamInfo, res) { +export function streamDefault(streamInfo, res) { try { res.setHeader('Content-disposition', `attachment; filename="${streamInfo.isAudioOnly ? `${streamInfo.filename}.${streamInfo.audioFormat}` : streamInfo.filename}"`); const stream = got.get(streamInfo.urls, { @@ -23,7 +23,7 @@ export async function streamDefault(streamInfo, res) { res.end(); } } -export async function streamLiveRender(streamInfo, res) { +export function streamLiveRender(streamInfo, res) { try { if (streamInfo.urls.length == 2) { let headers = {}; @@ -79,7 +79,7 @@ export async function streamLiveRender(streamInfo, res) { res.end(); } } -export async function streamAudioOnly(streamInfo, res) { +export function streamAudioOnly(streamInfo, res) { try { let headers = {}; if (streamInfo.service == "bilibili") { diff --git a/src/modules/sub/utils.js b/src/modules/sub/utils.js index 2981c73..ceb4b2a 100644 --- a/src/modules/sub/utils.js +++ b/src/modules/sub/utils.js @@ -21,17 +21,17 @@ export function apiJSON(type, obj) { } } export function msToTime(d) { - let milliseconds = parseInt((d % 1000) / 100), - seconds = parseInt((d / 1000) % 60), - minutes = parseInt((d / (1000 * 60)) % 60), - hours = parseInt((d / (1000 * 60 * 60)) % 24), + let milliseconds = parseInt((d % 1000) / 100, 10), + seconds = parseInt((d / 1000) % 60, 10), + minutes = parseInt((d / (1000 * 60)) % 60, 10), + hours = parseInt((d / (1000 * 60 * 60)) % 24, 10), r; - hours = (hours < 10) ? "0" + hours : hours; - minutes = (minutes < 10) ? "0" + minutes : minutes; - seconds = (seconds < 10) ? "0" + seconds : seconds; - r = hours + ":" + minutes + ":" + seconds; - milliseconds ? r += "." + milliseconds : r += ""; + hours = (hours < 10) ? `0${hours}` : hours; + minutes = (minutes < 10) ? `0${minutes}` : minutes; + seconds = (seconds < 10) ? `0${seconds}` : seconds; + r = `${hours}:${minutes}:${seconds}`; + if (milliseconds) r += `.${milliseconds}`; return r; } export function cleanURL(url, host) {