mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
75 lines
3.3 KiB
TypeScript
75 lines
3.3 KiB
TypeScript
import Api from '@/common/Api';
|
|
import config from '@/common/config';
|
|
import { joinClientParams } from '@/common/request';
|
|
|
|
export const machineApi = {
|
|
// 获取权限列表
|
|
list: Api.newGet('/machines'),
|
|
getByCodes: Api.newGet('/machines/simple'),
|
|
tagList: Api.newGet('/machines/tags'),
|
|
getMachinePwd: Api.newGet('/machines/{id}/pwd'),
|
|
info: Api.newGet('/machines/{id}/sysinfo'),
|
|
stats: Api.newGet('/machines/{id}/stats'),
|
|
process: Api.newGet('/machines/{id}/process'),
|
|
// 终止进程
|
|
killProcess: Api.newDelete('/machines/{id}/process'),
|
|
users: Api.newGet('/machines/{id}/users'),
|
|
groups: Api.newGet('/machines/{id}/groups'),
|
|
testConn: Api.newPost('/machines/test-conn'),
|
|
// 保存按钮
|
|
saveMachine: Api.newPost('/machines'),
|
|
// 调整状态
|
|
changeStatus: Api.newPut('/machines/{id}/{status}'),
|
|
// 删除机器
|
|
del: Api.newDelete('/machines/{id}'),
|
|
scripts: Api.newGet('/machines/{machineId}/scripts'),
|
|
runScript: Api.newGet('/machines/scripts/{scriptId}/{ac}/run'),
|
|
saveScript: Api.newPost('/machines/{machineId}/scripts'),
|
|
deleteScript: Api.newDelete('/machines/{machineId}/scripts/{scriptId}'),
|
|
// 获取配置文件列表
|
|
files: Api.newGet('/machines/{id}/files'),
|
|
lsFile: Api.newGet('/machines/{machineId}/files/{fileId}/read-dir'),
|
|
dirSize: Api.newGet('/machines/{machineId}/files/{fileId}/dir-size'),
|
|
fileStat: Api.newGet('/machines/{machineId}/files/{fileId}/file-stat'),
|
|
rmFile: Api.newPost('/machines/{machineId}/files/{fileId}/remove'),
|
|
cpFile: Api.newPost('/machines/{machineId}/files/{fileId}/cp'),
|
|
renameFile: Api.newPost('/machines/{machineId}/files/{fileId}/rename'),
|
|
mvFile: Api.newPost('/machines/{machineId}/files/{fileId}/mv'),
|
|
uploadFile: Api.newPost('/machines/{machineId}/files/{fileId}/upload?' + joinClientParams()),
|
|
fileContent: Api.newGet('/machines/{machineId}/files/{fileId}/read'),
|
|
downloadFile: Api.newGet('/machines/{machineId}/files/{fileId}/download'),
|
|
createFile: Api.newPost('/machines/{machineId}/files/{id}/create-file'),
|
|
// 修改文件内容
|
|
updateFileContent: Api.newPost('/machines/{machineId}/files/{id}/write'),
|
|
// 添加文件or目录
|
|
addConf: Api.newPost('/machines/{machineId}/files'),
|
|
// 删除配置的文件or目录
|
|
delConf: Api.newDelete('/machines/{machineId}/files/{id}'),
|
|
// 机器终端操作记录列表
|
|
termOpRecs: Api.newGet('/machines/{machineId}/term-recs'),
|
|
};
|
|
|
|
export const cronJobApi = {
|
|
list: Api.newGet('/machine-cronjobs'),
|
|
relateMachineIds: Api.newGet('/machine-cronjobs/machine-ids'),
|
|
relateCronJobIds: Api.newGet('/machine-cronjobs/cronjob-ids'),
|
|
save: Api.newPost('/machine-cronjobs'),
|
|
delete: Api.newDelete('/machine-cronjobs/{id}'),
|
|
run: Api.newPost('/machine-cronjobs/run/{key}'),
|
|
execList: Api.newGet('/machine-cronjobs/execs'),
|
|
};
|
|
|
|
export const cmdConfApi = {
|
|
list: Api.newGet('/machine/security/cmd-confs'),
|
|
save: Api.newPost('/machine/security/cmd-confs'),
|
|
delete: Api.newDelete('/machine/security/cmd-confs/{id}'),
|
|
};
|
|
|
|
export function getMachineTerminalSocketUrl(authCertName: any) {
|
|
return `${config.baseWsUrl}/machines/terminal/${authCertName}?${joinClientParams()}`;
|
|
}
|
|
|
|
export function getMachineRdpSocketUrl(authCertName: any) {
|
|
return `${config.baseWsUrl}/machines/rdp/${authCertName}`;
|
|
}
|