import { getCookie } from 'cookies-next'; import dayjs from 'dayjs'; import duration from 'dayjs/plugin/duration'; import { NextApiRequest, NextApiResponse } from 'next'; import { Client } from 'sabnzbd-api'; import { getConfig } from '../../../../tools/config/getConfig'; import { NzbgetClient } from '../../../../server/api/routers/usenet/nzbget/nzbget-client'; import { findAppProperty } from '~/tools/client/app-properties'; dayjs.extend(duration); export interface UsenetPauseRequestParams { appId: string; } async function Post(req: NextApiRequest, res: NextApiResponse) { try { const configName = getCookie('config-name', { req }); const config = getConfig(configName?.toString() ?? 'default'); const { appId } = req.query as any as UsenetPauseRequestParams; const app = config.apps.find((x) => x.id === appId); if (!app) { throw new Error(`App with ID "${req.query.appId}" could not be found.`); } let result; switch (app.integration?.type) { case 'nzbGet': { const url = new URL(app.url); const options = { host: url.hostname, port: url.port || (url.protocol === 'https:' ? '443' : '80'), login: findAppProperty(app, 'username'), hash: findAppProperty(app, 'password'), }; const nzbGet = NzbgetClient(options); result = await new Promise((resolve, reject) => { nzbGet.pauseDownload(false, (err: any, result: any) => { if (!err) { resolve(result); } else { reject(err); } }); }); break; } case 'sabnzbd': { const apiKey = findAppProperty(app, 'apiKey'); if (!apiKey) { throw new Error(`API Key for app "${app.name}" is missing`); } const { origin } = new URL(app.url); result = await new Client(origin, apiKey).queuePause(); break; } default: throw new Error(`App type "${app.integration?.type}" unrecognized.`); } return res.status(200).json(result); } catch (err) { return res.status(500).send((err as any).message); } } export default async (req: NextApiRequest, res: NextApiResponse) => { // Filter out if the reuqest is a POST or a GET if (req.method === 'POST') { return Post(req, res); } return res.status(405).json({ statusCode: 405, message: 'Method not allowed', }); };