mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 23:45:48 +01:00
94 lines
2.9 KiB
TypeScript
94 lines
2.9 KiB
TypeScript
import axios from 'axios';
|
|
import { NextApiRequest, NextApiResponse } from 'next';
|
|
import { getConfig } from '../../../tools/config/getConfig';
|
|
import { AppIntegrationType } from '../../../types/app';
|
|
|
|
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',
|
|
});
|
|
};
|
|
|
|
async function Get(req: NextApiRequest, res: NextApiResponse) {
|
|
// Parse req.body as a AppItem
|
|
const {
|
|
month: monthString,
|
|
year: yearString,
|
|
configName,
|
|
} = req.query as { month: string; year: string; configName: string };
|
|
|
|
const month = parseInt(monthString, 10);
|
|
const year = parseInt(yearString, 10);
|
|
|
|
if (Number.isNaN(month) || Number.isNaN(year) || !configName) {
|
|
return res.status(400).json({
|
|
statusCode: 400,
|
|
message: 'Missing required parameter in url: year, month or configName',
|
|
});
|
|
}
|
|
|
|
const config = getConfig(configName);
|
|
|
|
const mediaAppIntegrationTypes: AppIntegrationType['type'][] = [
|
|
'sonarr',
|
|
'radarr',
|
|
'readarr',
|
|
'lidarr',
|
|
];
|
|
const mediaApps = config.apps.filter(
|
|
(app) =>
|
|
app.integration && mediaAppIntegrationTypes.includes(app.integration.type)
|
|
);
|
|
|
|
const medias = await Promise.all(
|
|
await mediaApps.map(async (app) => {
|
|
const integration = app.integration!;
|
|
const endpoint = IntegrationTypeEndpointMap.get(integration.type);
|
|
if (!endpoint) {
|
|
return {
|
|
type: integration.type,
|
|
items: [],
|
|
};
|
|
}
|
|
|
|
// Get the origin URL
|
|
let { href: origin } = new URL(app.url);
|
|
if (origin.endsWith('/')) {
|
|
origin = origin.slice(0, -1);
|
|
}
|
|
|
|
const start = new Date(year, month - 1, 1); // First day of month
|
|
const end = new Date(year, month, 0); // Last day of month
|
|
|
|
const apiKey = integration.properties.find((x) => x.field === 'apiKey')?.value;
|
|
if (!apiKey) return { type: integration.type, items: [] };
|
|
return axios
|
|
.get(
|
|
`${origin}${endpoint}?apiKey=${apiKey}&end=${end.toISOString()}&start=${start.toISOString()}`
|
|
)
|
|
.then((x) => ({ type: integration.type, items: x.data as any[] }));
|
|
})
|
|
);
|
|
|
|
// FIXME: I need an integration for each of them
|
|
return res.status(200).json({
|
|
tvShows: medias.filter((m) => m.type === 'sonarr').flatMap((m) => m.items),
|
|
movies: medias.filter((m) => m.type === 'radarr').flatMap((m) => m.items),
|
|
books: medias.filter((m) => m.type === 'readarr').flatMap((m) => m.items),
|
|
musics: medias.filter((m) => m.type === 'lidarr').flatMap((m) => m.items),
|
|
totalCount: medias.reduce((p, c) => p + c.items.length, 0),
|
|
});
|
|
}
|
|
|
|
const IntegrationTypeEndpointMap = new Map<AppIntegrationType['type'], string>([
|
|
['sonarr', '/api/calendar'],
|
|
['radarr', '/api/v3/calendar'],
|
|
['lidarr', '/api/v1/calendar'],
|
|
['readarr', '/api/v1/calendar'],
|
|
]);
|