config: move streamLifespan

This commit is contained in:
wukko
2024-05-16 21:00:11 +06:00
parent d1e8929ee2
commit 9eed3b5b67
3 changed files with 4 additions and 5 deletions

View File

@ -45,6 +45,7 @@ const
rateLimitMax: (process.env.RATELIMIT_MAX && parseInt(process.env.RATELIMIT_MAX)) || 20,
durationLimit: (process.env.DURATION_LIMIT && parseInt(process.env.DURATION_LIMIT)) || 10800,
streamLifespan: 90,
processingPriority: process.platform !== 'win32'
&& process.env.PROCESSING_PRIORITY
@ -55,7 +56,6 @@ export const
services = servicesConfigJson.config,
audioIgnore = servicesConfigJson.audioIgnore,
version = packageJson.version,
streamLifespan = config.streamLifespan,
genericUserAgent = config.genericUserAgent,
repo = packageJson.bugs.url.replace('/issues', ''),
authorInfo = config.authorInfo,

View File

@ -3,7 +3,7 @@ import { randomBytes } from "crypto";
import { nanoid } from "nanoid";
import { decryptStream, encryptStream, generateHmac } from "../sub/crypto.js";
import { streamLifespan, env } from "../config.js";
import { env } from "../config.js";
import { strict as assert } from "assert";
// optional dependency
@ -12,7 +12,7 @@ const freebind = env.freebindCIDR && await import('freebind').catch(() => {});
const M3U_SERVICES = ['dailymotion', 'vimeo', 'rutube'];
const streamCache = new NodeCache({
stdTTL: streamLifespan/1000,
stdTTL: env.streamLifespan/1000,
checkperiod: 10,
deleteOnExpire: true
})
@ -28,7 +28,7 @@ export function createStream(obj) {
const streamID = nanoid(),
iv = randomBytes(16).toString('base64url'),
secret = randomBytes(32).toString('base64url'),
exp = new Date().getTime() + streamLifespan,
exp = new Date().getTime() + env.streamLifespan,
hmac = generateHmac(`${streamID},${exp},${iv},${secret}`, hmacSalt),
streamData = {
exp: exp,