|
|
@ -28,7 +28,7 @@ async function inspection (ctx) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
async function noted (ctx) { |
|
|
|
async function notedInspection (ctx) { |
|
|
|
try { |
|
|
|
const models = ctx.fs.dc.models; |
|
|
|
const { inspectionId } = ctx.request.body |
|
|
@ -53,7 +53,76 @@ async function noted (ctx) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
async function apiError (ctx) { |
|
|
|
try { |
|
|
|
const models = ctx.fs.dc.models; |
|
|
|
const { projectAppId, alarmContent, router, statusCode } = ctx.request.body |
|
|
|
const now = moment().format() |
|
|
|
|
|
|
|
let storageData = { |
|
|
|
projectAppId, alarmContent, router, statusCode |
|
|
|
} |
|
|
|
const existRes = await models.AppAlarm.findOne({ |
|
|
|
where: { |
|
|
|
projectAppId, alarmContent, router, statusCode, |
|
|
|
confirm: null |
|
|
|
} |
|
|
|
}) |
|
|
|
if (existRes) { |
|
|
|
await models.AppAlarm.update({ |
|
|
|
updateTime: now |
|
|
|
}, { |
|
|
|
where: { |
|
|
|
id: existRes.id |
|
|
|
} |
|
|
|
}) |
|
|
|
} else { |
|
|
|
const existCount = await models.AppAlarm.count({ |
|
|
|
where: { |
|
|
|
|
|
|
|
} |
|
|
|
}) |
|
|
|
storageData.serialNumber = 'WEB' + (existCount < 9 ? '0' + (existCount + 1) : existCount) |
|
|
|
storageData.createTime = now |
|
|
|
await models.AppAlarm.create(storageData) |
|
|
|
} |
|
|
|
|
|
|
|
ctx.status = 200; |
|
|
|
} catch (error) { |
|
|
|
ctx.fs.logger.error(`path: ${ctx.path}, error: error`); |
|
|
|
ctx.status = 400; |
|
|
|
ctx.body = { |
|
|
|
message: typeof error == 'string' ? error : undefined |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
async function confirmApiError (ctx) { |
|
|
|
try { |
|
|
|
const models = ctx.fs.dc.models; |
|
|
|
const { confirm, appAlarmId } = ctx.request.body |
|
|
|
|
|
|
|
await models.AppAlarm.update({ |
|
|
|
confirm, |
|
|
|
}, { |
|
|
|
where: { |
|
|
|
id: appAlarmId |
|
|
|
} |
|
|
|
}) |
|
|
|
|
|
|
|
ctx.status = 204; |
|
|
|
} catch (error) { |
|
|
|
ctx.fs.logger.error(`path: ${ctx.path}, error: error`); |
|
|
|
ctx.status = 400; |
|
|
|
ctx.body = { |
|
|
|
message: typeof error == 'string' ? error : undefined |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
module.exports = { |
|
|
|
inspection, |
|
|
|
noted, |
|
|
|
notedInspection, |
|
|
|
apiError, |
|
|
|
confirmApiError, |
|
|
|
}; |