webio-node/route/api/ipcam.js

173 lines
6.2 KiB
JavaScript
Raw Normal View History

2017-03-27 06:53:34 +00:00
const express = require('express');
const router = express.Router();
const rt = require('../ResTool');
const config = require('../../config.json');
const fs = require('fs');
2017-03-27 08:27:35 +00:00
const mysql = require('../../libs/mysql_pool');
2017-03-27 06:53:34 +00:00
const tool = require('../../includes/apiTool');
const exec = require('child_process').exec;
const so = require('../../includes/storeObject');
const crypt = require('../../libs/crypto');
router
.get('/', (req, res, n) => {
res.send({ name: 'WebIO IPCam API' });
})
2017-05-03 03:16:01 +00:00
.post('*', async(req, res, n) => {
try {
res.db = await mysql.getConn();
2017-05-03 03:16:01 +00:00
} catch (e) {
console.log(`Get DB Connection ERROR ${e}`);
return n('ERR8100');
}
n();
})
2017-05-03 03:16:01 +00:00
.post('/getipcamlist', (req, res, n) => {
if (!config.permission.ipcam) return n('ERR9000');
let query = "select * from ??.??";
2017-05-03 03:16:01 +00:00
let param = [config.db.db1, 'jcioccamset'];
res.db.query(query, param, (err, row) => {
2017-05-03 03:16:01 +00:00
if (err) return rt.err(res, err, n, 'ERR8000');
res.api_res = {
record: tool.checkArray(row)
}
n();
});
2017-03-27 08:27:35 +00:00
})
2017-05-03 03:16:01 +00:00
.post('/addipcam', (req, res, n) => {
if (!config.permission.ipcam) return n('ERR9000');
if (!tool.checkPermission(req)) return n('ERR9000');
2017-03-27 08:27:35 +00:00
let arr = req.body;
2017-05-03 03:16:01 +00:00
if (!arr.data) return n('ERR0000');
if (!arr.data.ip) return n("ERR0010");
if (!arr.data.name) return n('ERR0026');
if (!arr.data.model) return n('ERR0067');
if (!arr.data.maxevents) return n('ERR0068');
if (!arr.data.maximg) return n('ERR0069');
if (!/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/.test(arr.data.ip)) return n('ERR0025');
let u = '';
let obj = so.get(req.headers['x-auth-token'] || '');
if (obj != null && 'user' in obj && 'account' in obj.user) u = obj.user.account;
let active = arr.data.active == 1 ? 1 : 0;
2017-03-27 08:27:35 +00:00
2017-03-27 10:00:21 +00:00
let query = "select count(*) as c from ??.?? where `ip` = ?";
2017-05-03 03:16:01 +00:00
let param = [config.db.db1, 'jcioccamset', arr.data.ip];
2017-03-27 10:00:21 +00:00
res.db.query(query, param, (err, row) => {
2017-05-03 03:16:01 +00:00
if (err || row.length == 0) return rt.err(res, err, n, 'ERR8000');
if (row[0].c >= 1) return n('ERR0027');
let query = "insert into ??.?? (`ip`, `name`, `model`, `maxevents`, `maximg`, `active`, `cuser`, `muser`, `ctime`, `mtime` ) \
values (?, ?, ?, ?, ?, ?, ?, ?, unix_timestamp(), unix_timestamp())";
let param = [config.db.db1, 'jcioccamset', arr.data.ip, arr.data.name, arr.data.model, arr.data.maxevents, arr.data.maximg, active, u, u];
2017-03-27 10:00:21 +00:00
res.db.query(query, param, (err, row) => {
2017-05-03 03:16:01 +00:00
if (err) return rt.err(res, err, n, 'ERR8001');
2017-03-27 10:00:21 +00:00
res.api_res = {
record: []
2017-05-03 03:16:01 +00:00
}
2017-03-27 10:00:21 +00:00
n();
2017-05-03 03:16:01 +00:00
})
})
})
.post('/editipcam', (req, res, n) => {
if (!config.permission.ipcam) return n('ERR9000');
if (!tool.checkPermission(req)) return n('ERR9000');
let arr = req.body;
if (!arr.data) return n('ERR0000');
if (!arr.data.id) return n('ERR0028');
if (!arr.data.ip) return n("ERR0010");
if (!arr.data.name) return n('ERR0026');
if (!arr.data.model) return n('ERR0067');
if (!arr.data.maxevents) return n('ERR0068');
if (!arr.data.maximg) return n('ERR0069');
if (!/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/.test(arr.data.ip)) return n('ERR0025');
let u = '';
let obj = so.get(req.headers['x-auth-token'] || '');
if (obj != null && 'user' in obj && 'account' in obj.user) u = obj.user.account;
let active = arr.data.active == 1 ? 1 : 0;
let query = "select count(*) as c from ??.?? where `ip` = ? and `uid` != ?";
let param = [config.db.db1, 'jcioccamset', arr.data.ip, arr.data.id];
res.db.query(query, param, (err, row) => {
if (err || row.length == 0) return rt.err(res, err, n, 'ERR8000');
if (row[0].c >= 1) return n('ERR0027');
let query = "update ??.?? set \
`ip` = ?, \
`name` = ?, \
`model` = ?, \
`maxevents` = ?, \
`maximg` = ?, \
`active` = ?, \
`muser` = ?, \
`mtime` = unix_timestamp() \
where \
`uid` = ?";
let param = [config.db.db1, 'jcioccamset', arr.data.ip, arr.data.name, arr.data.model, arr.data.maxevents, arr.data.maximg, active, u, arr.data.id];
res.db.query(query, param, (err, row) => {
if (err) return rt.err(res, err, n, 'ERR8002');
res.api_res = {
record: []
}
n();
})
2017-03-27 10:00:21 +00:00
});
})
2017-05-03 03:16:01 +00:00
.post('/delipcam', (req, res, n) => {
if (!config.permission.ipcam) return n('ERR9000');
if (!tool.checkPermission(req)) return n('ERR9000');
2017-03-27 10:00:21 +00:00
let arr = req.body;
2017-05-03 03:16:01 +00:00
if (!arr.data) return n('ERR0000');
if (!arr.data.id) return n('ERR0028');
res.db.query(`use ${config.db.db1}`);
let query = "delete from ??.?? \
where `uid` = ?";
let param = [config.db.db1, 'jcioccamset', arr.data.id];
2017-03-27 10:00:21 +00:00
res.db.query(query, param, (err, row) => {
2017-05-03 03:16:01 +00:00
if (err) return rt.err(res, err, n, 'ERR8003');
2017-03-27 10:00:21 +00:00
res.api_res = {
record: []
2017-05-03 03:16:01 +00:00
}
2017-03-27 10:00:21 +00:00
n();
})
})
2017-05-03 03:16:01 +00:00
.post('/swipcamactive', (req, res, n) => {
if (!config.permission.ipcam) return n('ERR9000');
if (!tool.checkPermission(req)) return n('ERR9000');
2017-03-27 10:00:21 +00:00
let arr = req.body;
2017-05-03 03:16:01 +00:00
if (!arr.data) return n('ERR0000');
if (!arr.data.id) return n('ERR0028');
let query = "update ??.?? set \
`active` = case when `active` = 1 then 0 else 1 end \
where \
`uid` = ?";
let param = [config.db.db1, 'jcioccamset', arr.data.id];
res.db.query(query, param, (err, row) => {
if (err) return rt.err(res, err, n, 'ERR8002');
2017-03-27 10:00:21 +00:00
res.api_res = {
record: []
}
n();
})
2017-03-27 08:27:35 +00:00
})
2017-03-27 06:53:34 +00:00
.all('*', rt.send);
module.exports = router;