mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-12 08:25:47 +01:00
119 lines
3.5 KiB
TypeScript
119 lines
3.5 KiB
TypeScript
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 { findAppProperty } from '~/tools/client/app-properties';
|
|
|
|
import { NzbgetClient } from '../../../../server/api/routers/usenet/nzbget/nzbget-client';
|
|
import { NzbgetStatus } from '../../../../server/api/routers/usenet/nzbget/types';
|
|
import { getConfig } from '../../../../tools/config/getConfig';
|
|
|
|
dayjs.extend(duration);
|
|
|
|
export interface UsenetInfoRequestParams {
|
|
appId: string;
|
|
}
|
|
|
|
export interface UsenetInfoResponse {
|
|
paused: boolean;
|
|
sizeLeft: number;
|
|
speed: number;
|
|
eta: number;
|
|
}
|
|
|
|
async function Get(req: NextApiRequest, res: NextApiResponse) {
|
|
try {
|
|
const configName = getCookie('config-name', { req });
|
|
const config = getConfig(configName?.toString() ?? 'default');
|
|
const { appId } = req.query as any as UsenetInfoRequestParams;
|
|
|
|
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 response: UsenetInfoResponse;
|
|
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);
|
|
|
|
const nzbgetStatus: NzbgetStatus = await new Promise((resolve, reject) => {
|
|
nzbGet.status((err: any, result: NzbgetStatus) => {
|
|
if (!err) {
|
|
resolve(result);
|
|
} else {
|
|
reject(err);
|
|
}
|
|
});
|
|
});
|
|
|
|
if (!nzbgetStatus) {
|
|
throw new Error('Error while getting NZBGet status');
|
|
}
|
|
|
|
const bytesRemaining = nzbgetStatus.RemainingSizeMB * 1000000;
|
|
const eta = bytesRemaining / nzbgetStatus.DownloadRate;
|
|
response = {
|
|
paused: nzbgetStatus.DownloadPaused,
|
|
sizeLeft: bytesRemaining,
|
|
speed: nzbgetStatus.DownloadRate,
|
|
eta,
|
|
};
|
|
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);
|
|
|
|
const queue = await new Client(origin, apiKey).queue(0, -1);
|
|
|
|
const [hours, minutes, seconds] = queue.timeleft.split(':');
|
|
const eta = dayjs.duration({
|
|
hour: parseInt(hours, 10),
|
|
minutes: parseInt(minutes, 10),
|
|
seconds: parseInt(seconds, 10),
|
|
} as any);
|
|
|
|
response = {
|
|
paused: queue.paused,
|
|
sizeLeft: parseFloat(queue.mbleft) * 1024 * 1024,
|
|
speed: parseFloat(queue.kbpersec) * 1000,
|
|
eta: eta.asSeconds(),
|
|
};
|
|
break;
|
|
}
|
|
default:
|
|
throw new Error(`App type "${app.integration?.type}" unrecognized.`);
|
|
}
|
|
|
|
return res.status(200).json(response);
|
|
} 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 === 'GET') {
|
|
return Get(req, res);
|
|
}
|
|
return res.status(405).json({
|
|
statusCode: 405,
|
|
message: 'Method not allowed',
|
|
});
|
|
};
|