mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 07:10:53 +00:00
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
import UserMiddleware from "../Middleware/UserAuthorization";
|
|
import ProbeService, {
|
|
Service as ProbeServiceType,
|
|
} from "../Services/ProbeService";
|
|
import {
|
|
ExpressRequest,
|
|
ExpressResponse,
|
|
NextFunction,
|
|
} from "../Utils/Express";
|
|
import Response from "../Utils/Response";
|
|
import BaseAPI from "./BaseAPI";
|
|
import LIMIT_MAX from "Common/Types/Database/LimitMax";
|
|
import PositiveNumber from "Common/Types/PositiveNumber";
|
|
import Probe from "Model/Models/Probe";
|
|
|
|
export default class Ingestor extends BaseAPI<Probe, ProbeServiceType> {
|
|
public constructor() {
|
|
super(Probe, ProbeService);
|
|
|
|
this.router.post(
|
|
`${new this.entityType().getCrudApiPath()?.toString()}/global-probes`,
|
|
UserMiddleware.getUserMiddleware,
|
|
async (req: ExpressRequest, res: ExpressResponse, next: NextFunction) => {
|
|
try {
|
|
const probes: Array<Probe> = await ProbeService.findBy({
|
|
query: {
|
|
isGlobalProbe: true,
|
|
},
|
|
select: {
|
|
name: true,
|
|
description: true,
|
|
lastAlive: true,
|
|
iconFileId: true,
|
|
connectionStatus: true,
|
|
},
|
|
props: {
|
|
isRoot: true,
|
|
},
|
|
skip: 0,
|
|
limit: LIMIT_MAX,
|
|
});
|
|
|
|
return Response.sendEntityArrayResponse(
|
|
req,
|
|
res,
|
|
probes,
|
|
new PositiveNumber(probes.length),
|
|
Probe,
|
|
);
|
|
} catch (err) {
|
|
next(err);
|
|
}
|
|
},
|
|
);
|
|
}
|
|
}
|