oneuptime/Ingestor/API/Alive.ts

31 lines
728 B
TypeScript
Raw Normal View History

import ProbeAuthorization from "../Middleware/ProbeAuthorization";
2023-05-02 14:29:22 +00:00
import Express, {
ExpressRequest,
ExpressResponse,
ExpressRouter,
NextFunction,
} from "Common/Server/Utils/Express";
import Response from "Common/Server/Utils/Response";
2023-05-02 14:29:22 +00:00
const router: ExpressRouter = Express.getRouter();
router.post(
"/alive",
ProbeAuthorization.isAuthorizedServiceMiddleware,
async (
req: ExpressRequest,
res: ExpressResponse,
next: NextFunction,
): Promise<void> => {
try {
// middleware marks the probe as alive.
// so we don't need to do anything here.
return Response.sendEmptySuccessResponse(req, res);
} catch (err) {
return next(err);
2023-05-02 14:29:22 +00:00
}
},
2023-05-02 14:29:22 +00:00
);
export default router;