140 lines
2.7 KiB
JavaScript
140 lines
2.7 KiB
JavaScript
const { updateSSH, removeSSH, existSSH, getCommand } = require('../controller/ssh')
|
|
const { getHostList, saveHost, updateHost, removeHost, updateHostSort } = require('../controller/host')
|
|
const { login, getpublicKey, updatePwd, getLoginRecord } = require('../controller/user')
|
|
const { getSupportEmailList, getUserEmailList, updateUserEmailList, removeUserEmail, pushEmail, getNotifyList, updateNotifyList } = require('../controller/notify')
|
|
const { getGroupList, addGroupList, updateGroupList, removeGroup } = require('../controller/group')
|
|
|
|
const ssh = [
|
|
{
|
|
method: 'post',
|
|
path: '/update-ssh',
|
|
controller: updateSSH
|
|
},
|
|
{
|
|
method: 'post',
|
|
path: '/remove-ssh',
|
|
controller: removeSSH
|
|
},
|
|
{
|
|
method: 'post',
|
|
path: '/exist-ssh',
|
|
controller: existSSH
|
|
},
|
|
{
|
|
method: 'get',
|
|
path: '/command',
|
|
controller: getCommand
|
|
}
|
|
]
|
|
const host = [
|
|
{
|
|
method: 'get',
|
|
path: '/host-list',
|
|
controller: getHostList
|
|
},
|
|
{
|
|
method: 'post',
|
|
path: '/host-save',
|
|
controller: saveHost
|
|
},
|
|
{
|
|
method: 'put',
|
|
path: '/host-save',
|
|
controller: updateHost
|
|
},
|
|
{
|
|
method: 'post',
|
|
path: '/host-remove',
|
|
controller: removeHost
|
|
},
|
|
{
|
|
method: 'put',
|
|
path: '/host-sort',
|
|
controller: updateHostSort
|
|
}
|
|
]
|
|
const user = [
|
|
{
|
|
method: 'get',
|
|
path: '/get-pub-pem',
|
|
controller: getpublicKey
|
|
},
|
|
{
|
|
method: 'post',
|
|
path: '/login',
|
|
controller: login
|
|
},
|
|
{
|
|
method: 'put',
|
|
path: '/pwd',
|
|
controller: updatePwd
|
|
},
|
|
{
|
|
method: 'get',
|
|
path: '/get-login-record',
|
|
controller: getLoginRecord
|
|
}
|
|
]
|
|
const notify = [
|
|
{
|
|
method: 'get',
|
|
path: '/support-email',
|
|
controller: getSupportEmailList
|
|
},
|
|
{
|
|
method: 'get',
|
|
path: '/user-email',
|
|
controller: getUserEmailList
|
|
},
|
|
{
|
|
method: 'post',
|
|
path: '/push-email',
|
|
controller: pushEmail
|
|
},
|
|
{
|
|
method: 'post',
|
|
path: '/user-email',
|
|
controller: updateUserEmailList
|
|
},
|
|
{
|
|
method: 'delete',
|
|
path: '/user-email/:email',
|
|
controller: removeUserEmail
|
|
},
|
|
{
|
|
method: 'get',
|
|
path: '/notify',
|
|
controller: getNotifyList
|
|
},
|
|
{
|
|
method: 'put',
|
|
path: '/notify',
|
|
controller: updateNotifyList
|
|
}
|
|
]
|
|
|
|
const group = [
|
|
{
|
|
method: 'get',
|
|
path: '/group',
|
|
controller: getGroupList
|
|
},
|
|
{
|
|
method: 'post',
|
|
path: '/group',
|
|
controller: addGroupList
|
|
},
|
|
{
|
|
method: 'delete',
|
|
path: '/group/:id',
|
|
controller: removeGroup
|
|
},
|
|
{
|
|
method: 'put',
|
|
path: '/group/:id',
|
|
controller: updateGroupList
|
|
}
|
|
]
|
|
|
|
module.exports = [].concat(ssh, host, user, notify, group)
|