Files
oneuptime/App/FeatureSet/Workers/Jobs/Alert/KeepCurrentStateConsistent.ts
Nawaz Dhandala ea71c8bd75 feat: Implement Workflow API and Queue Management
- Added ManualAPI for manually triggering workflows via GET and POST requests.
- Introduced WorkflowAPI for updating workflows with authorization checks.
- Created documentation for JavaScript and Webhook components.
- Established WorkflowFeatureSet to initialize routing and job processing.
- Developed QueueWorkflow service for managing workflow queue operations.
- Implemented RunWorkflow service to execute workflows with error handling and logging.
- Added utility for loading component metadata dynamically.
2026-04-01 22:05:19 +01:00

71 lines
2.1 KiB
TypeScript

import { EVERY_DAY } from "Common/Utils/CronTime";
import RunCron from "../../Utils/Cron";
/*
* import logger from "Common/Server/Utils/Logger";
* import ProjectService from "Common/Server/Services/ProjectService";
* import AlertService from "Common/Server/Services/AlertService";
* import Project from "Common/Models/DatabaseModels/Project";
* import Alert from "Common/Models/DatabaseModels/Alert";
*/
RunCron(
"Alert:KeepCurrentStateConsistent",
{ schedule: EVERY_DAY, runOnStartup: true },
async () => {
/*
* try {
* // get all projects, then get all alerts for each project, then refresh the current state of each alert.
* const projects: Array<Project> =
* await ProjectService.getAllActiveProjects({
* select: {
* _id: true,
* },
* });
*/
/*
* for (const project of projects) {
* try {
* if (!project || !project.id) {
* continue;
* }
*/
/*
* const alerts: Array<Alert> = await AlertService.findAllBy({
* query: {
* projectId: project.id,
* },
* select: {
* _id: true,
* },
* props: {
* isRoot: true,
* },
* });
*/
/*
* for (const alert of alerts) {
* try {
* if (!alert || !alert.id) {
* continue;
* }
* await AlertService.refreshAlertCurrentStatus(alert.id!);
* } catch (err) {
* logger.error("Error in Alert:KeepCurrentStateConsistent job");
* logger.error(err);
* continue;
* }
* }
* } catch (err) {
* logger.error("Error in Alert:KeepCurrentStateConsistent job");
* logger.error(err);
* continue;
* }
* }
* } catch (err) {
* logger.error("Error in Alert:KeepCurrentStateConsistent job");
* logger.error(err);
* }
*/
},
);