mirror of
https://github.com/imputnet/cobalt.git
synced 2025-07-17 02:38:29 +00:00
115 lines
3.2 KiB
JavaScript
115 lines
3.2 KiB
JavaScript
import Cookie from './cookie.js';
|
|
|
|
import { readFile, writeFile } from 'fs/promises';
|
|
import { Green, Yellow } from '../../misc/console-text.js';
|
|
import { parse as parseSetCookie, splitCookiesString } from 'set-cookie-parser';
|
|
import * as cluster from '../../misc/cluster.js';
|
|
import { isCluster } from '../../config.js';
|
|
|
|
const WRITE_INTERVAL = 60000;
|
|
let cookies = {}, dirty = false, intervalId;
|
|
|
|
function writeChanges(cookiePath) {
|
|
if (!dirty) return;
|
|
dirty = false;
|
|
|
|
writeFile(cookiePath, JSON.stringify(cookies, null, 4)).catch(() => {
|
|
clearInterval(intervalId)
|
|
})
|
|
}
|
|
|
|
const setupMain = async (cookiePath) => {
|
|
try {
|
|
cookies = await readFile(cookiePath, 'utf8');
|
|
cookies = JSON.parse(cookies);
|
|
intervalId = setInterval(() => writeChanges(cookiePath), WRITE_INTERVAL);
|
|
|
|
cluster.broadcast({ cookies });
|
|
|
|
console.log(`${Green('[✓]')} cookies loaded successfully!`);
|
|
} catch(e) {
|
|
console.error(`${Yellow('[!]')} failed to load cookies.`);
|
|
console.error('error:', e);
|
|
}
|
|
}
|
|
|
|
const setupWorker = async () => {
|
|
cookies = (await cluster.waitFor('cookies')).cookies;
|
|
}
|
|
|
|
export const setup = async (cookiePath) => {
|
|
if (cluster.isPrimary) {
|
|
await setupMain(cookiePath);
|
|
} else if (cluster.isWorker) {
|
|
await setupWorker();
|
|
}
|
|
|
|
if (isCluster) {
|
|
const messageHandler = (message) => {
|
|
if ('cookieUpdate' in message) {
|
|
const { cookieUpdate } = message;
|
|
|
|
if (cluster.isPrimary) {
|
|
dirty = true;
|
|
cluster.broadcast({ cookieUpdate });
|
|
}
|
|
|
|
const { service, idx, cookie } = cookieUpdate;
|
|
cookies[service][idx] = cookie;
|
|
}
|
|
}
|
|
|
|
if (cluster.isPrimary) {
|
|
cluster.mainOnMessage(messageHandler);
|
|
} else {
|
|
process.on('message', messageHandler);
|
|
}
|
|
}
|
|
}
|
|
|
|
export function getCookie(service) {
|
|
if (!cookies[service] || !cookies[service].length) return;
|
|
|
|
const idx = Math.floor(Math.random() * cookies[service].length);
|
|
|
|
const cookie = cookies[service][idx];
|
|
if (typeof cookie === 'string') {
|
|
cookies[service][idx] = Cookie.fromString(cookie);
|
|
}
|
|
|
|
cookies[service][idx].meta = { service, idx };
|
|
return cookies[service][idx];
|
|
}
|
|
|
|
export function updateCookieValues(cookie, values) {
|
|
let changed = false;
|
|
|
|
for (const [ key, value ] of Object.entries(values)) {
|
|
changed = cookie.set(key, value) || changed;
|
|
}
|
|
|
|
if (changed) {
|
|
dirty = true;
|
|
if (isCluster && cookie.meta) {
|
|
const message = { cookieUpdate: { ...cookie.meta, cookie } };
|
|
cluster.send(message);
|
|
}
|
|
}
|
|
|
|
return changed;
|
|
}
|
|
|
|
export function updateCookie(cookie, headers) {
|
|
if (!cookie) return;
|
|
|
|
const parsed = parseSetCookie(
|
|
splitCookiesString(headers.get('set-cookie')),
|
|
{ decodeValues: false }
|
|
), values = {}
|
|
|
|
cookie.unset(parsed.filter(c => c.expires < new Date()).map(c => c.name));
|
|
parsed.filter(c => !c.expires || c.expires > new Date()).forEach(c => values[c.name] = c.value);
|
|
|
|
updateCookieValues(cookie, values);
|
|
}
|