You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.4 KiB
49 lines
1.4 KiB
import { AnomalyId, getAnomalyIdByName, loadAnomalyById } from '../services/anomalyType'; |
|
import { getAlertsAnomalies, saveAlertsAnomalies } from '../services/alerts'; |
|
|
|
import * as Router from 'koa-router'; |
|
|
|
|
|
function getAlert(ctx: Router.IRouterContext) { |
|
|
|
let anomalyId: AnomalyId = ctx.request.body.query.anomaly_id; |
|
let anomaly = loadAnomalyById(anomalyId) |
|
if (anomaly == null) { |
|
anomalyId = getAnomalyIdByName(anomalyId.toLowerCase()); |
|
} |
|
|
|
let alertsAnomalies = getAlertsAnomalies(); |
|
let pos = alertsAnomalies.indexOf(anomalyId); |
|
|
|
let enable: boolean = (pos !== -1); |
|
ctx.response.body = { enable }; |
|
|
|
} |
|
|
|
function changeAlert(ctx: Router.IRouterContext) { |
|
|
|
let anomalyId: AnomalyId = ctx.request.body.anomaly_id; |
|
let enable: boolean = ctx.body.enable; |
|
|
|
let anomaly = loadAnomalyById(anomalyId) |
|
if (anomaly == null) { |
|
anomalyId = getAnomalyIdByName(anomalyId.toLowerCase()); |
|
} |
|
|
|
let alertsAnomalies = getAlertsAnomalies(); |
|
let pos: number = alertsAnomalies.indexOf(anomalyId); |
|
if(enable && pos == -1) { |
|
alertsAnomalies.push(anomalyId); |
|
saveAlertsAnomalies(alertsAnomalies); |
|
} else if(!enable && pos > -1) { |
|
alertsAnomalies.splice(pos, 1); |
|
saveAlertsAnomalies(alertsAnomalies); |
|
} |
|
ctx.response.body = { status: 'Ok' }; |
|
} |
|
|
|
export const router = new Router(); |
|
|
|
router.get('/', getAlert); |
|
router.post('/', changeAlert); |
|
|
|
|