1Panel/cmd/server/docs/docs.go

12534 lines
380 KiB
Go
Raw Normal View History

2023-01-04 22:31:51 +08:00
// Package docs GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
2022-08-16 23:30:23 +08:00
// This file was generated by swaggo/swag
package docs
2023-01-04 22:31:51 +08:00
import (
"bytes"
"encoding/json"
"strings"
"text/template"
2022-08-16 23:30:23 +08:00
2023-01-04 22:31:51 +08:00
"github.com/swaggo/swag"
)
var doc = `{
2022-08-16 23:30:23 +08:00
"schemes": {{ marshal .Schemes }},
"swagger": "2.0",
"info": {
"description": "{{escape .Description}}",
"title": "{{.Title}}",
2022-12-14 19:39:32 +08:00
"termsOfService": "http://swagger.io/terms/",
2022-08-16 23:30:23 +08:00
"contact": {},
2022-12-14 19:39:32 +08:00
"license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
},
2022-08-16 23:30:23 +08:00
"version": "{{.Version}}"
},
"host": "{{.Host}}",
"basePath": "{{.BasePath}}",
2023-01-04 22:31:51 +08:00
"paths": {
2023-02-10 15:55:56 +08:00
"/apps/:key": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
2023-02-10 15:55:56 +08:00
"description": "通过 key 获取应用信息",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
],
2023-02-10 15:55:56 +08:00
"summary": "Search app by key",
2023-01-04 22:31:51 +08:00
"parameters": [
{
2023-02-10 15:55:56 +08:00
"type": "string",
"description": "app key",
"name": "key",
"in": "path",
"required": true
2023-01-04 22:31:51 +08:00
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.AppDTO"
}
2023-01-04 22:31:51 +08:00
}
}
}
},
"/apps/detail/:appId/:version": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "通过 id 获取应用详情",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
],
"summary": "Search app detail by id",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"type": "integer",
"description": "app id",
"name": "appId",
"in": "path",
"required": true
},
{
"type": "string",
"description": "app 版本",
"name": "version",
"in": "path",
"required": true
2023-01-04 22:31:51 +08:00
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.AppDetailDTO"
}
2023-01-04 22:31:51 +08:00
}
}
}
},
"/apps/install": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "安装应用",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
2023-01-04 22:31:51 +08:00
],
"summary": "Install app",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.AppInstallCreate"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/model.AppInstall"
}
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "app_installs",
"input_colume": "name",
"input_value": "name",
"isList": false,
"output_colume": "app_id",
"output_value": "appId"
},
{
"db": "apps",
"info": "appId",
"isList": false,
"output_colume": "key",
"output_value": "appKey"
}
],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"name"
2023-01-04 22:31:51 +08:00
],
"formatEN": "Install app [appKey]-[name]",
"formatZH": "安装应用 [appKey]-[name]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/apps/installed": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取已安装应用列表",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
2023-01-04 22:31:51 +08:00
],
"summary": "List app installed",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.AppInstalledSearch"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
}
}
},
"/apps/installed/:appInstallId/versions": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "通过 install id 获取应用更新版本",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
2023-01-04 22:31:51 +08:00
],
"summary": "Search app update version by install id",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"type": "integer",
2023-01-04 22:31:51 +08:00
"description": "request",
"name": "appInstallId",
"in": "path",
"required": true
2023-01-04 22:31:51 +08:00
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
2023-01-04 22:31:51 +08:00
}
}
2023-01-04 22:31:51 +08:00
}
}
},
"/apps/installed/backups": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "查询已安装备份列表分页",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
2023-01-04 22:31:51 +08:00
],
"summary": "Page installed backups",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.AppBackupSearch"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
2023-01-04 22:31:51 +08:00
}
}
}
},
"/apps/installed/backups/del": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除应用备份记录",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
2023-01-04 22:31:51 +08:00
],
"summary": "Delete app backup record",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.AppBackupDelete"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "app_install_backups",
"input_colume": "id",
"input_value": "ids",
"isList": true,
"output_colume": "name",
"output_value": "names"
}
],
"bodyKeys": [
"ids"
],
"formatEN": "Deleting an Application Backup [names]",
"formatZH": "删除应用备份 [names]",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/apps/installed/check/:key": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "检查应用安装情况",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
2023-01-04 22:31:51 +08:00
],
"summary": "Check app installed",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"type": "string",
2023-01-04 22:31:51 +08:00
"description": "request",
"name": "key",
"in": "path",
"required": true
2023-01-04 22:31:51 +08:00
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.AppInstalledCheck"
2023-01-04 22:31:51 +08:00
}
}
}
}
},
"/apps/installed/conf/:key": {
2023-01-04 22:31:51 +08:00
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "通过 key 获取应用默认配置",
"consumes": [
"application/json"
],
2023-01-04 22:31:51 +08:00
"tags": [
"App"
],
"summary": "Search default config by key",
"parameters": [
{
"type": "string",
"description": "request",
"name": "key",
"in": "path",
"required": true
}
2023-01-04 22:31:51 +08:00
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
2023-01-04 22:31:51 +08:00
}
}
}
}
},
"/apps/installed/delete/check/:appInstallId": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除前检查",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
2023-01-04 22:31:51 +08:00
],
"summary": "Check before delete",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"type": "integer",
"description": "App install id",
"name": "appInstallId",
"in": "path",
"required": true
2023-01-04 22:31:51 +08:00
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
2023-01-04 22:31:51 +08:00
}
}
}
},
"/apps/installed/loadpassword/:key": {
2023-01-04 22:31:51 +08:00
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取应用密码",
"consumes": [
"application/json"
],
2023-01-04 22:31:51 +08:00
"tags": [
"App"
],
"summary": "Search app password by key",
"parameters": [
{
"type": "string",
"description": "request",
"name": "key",
"in": "path",
"required": true
}
2023-01-04 22:31:51 +08:00
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
2023-01-04 22:31:51 +08:00
}
}
}
}
},
"/apps/installed/loadport/:key": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取应用端口",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
2023-01-04 22:31:51 +08:00
],
"summary": "Search app port by key",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"type": "string",
2023-01-04 22:31:51 +08:00
"description": "request",
"name": "key",
"in": "path",
"required": true
2023-01-04 22:31:51 +08:00
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "integer"
2023-01-04 22:31:51 +08:00
}
}
}
}
},
"/apps/installed/op": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "操作已安装应用",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
2023-01-04 22:31:51 +08:00
],
"summary": "Operate installed app",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.AppInstalledOperate"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "app_installs",
2023-01-04 22:31:51 +08:00
"input_colume": "id",
"input_value": "installId",
"isList": false,
"output_colume": "app_id",
"output_value": "appId"
},
{
"db": "app_installs",
"input_colume": "id",
"input_value": "installId",
"isList": false,
2023-01-04 22:31:51 +08:00
"output_colume": "name",
"output_value": "appName"
},
{
"db": "apps",
"input_colume": "id",
"input_value": "appId",
"isList": false,
"output_colume": "key",
"output_value": "appKey"
2023-01-04 22:31:51 +08:00
}
],
"bodyKeys": [
"installId",
"operate"
2023-01-04 22:31:51 +08:00
],
"formatEN": "[appKey] App [appName] [operate]",
"formatZH": "[appKey] 应用 [appName] [operate]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/apps/installed/params/:appInstallId": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "通过 install id 获取应用参数",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
2023-01-04 22:31:51 +08:00
],
"summary": "Search params by appInstallId",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"type": "string",
2023-01-04 22:31:51 +08:00
"description": "request",
"name": "appInstallId",
"in": "path",
"required": true
2023-01-04 22:31:51 +08:00
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.AppParam"
}
2023-01-04 22:31:51 +08:00
}
}
}
},
"/apps/installed/port/change": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "修改应用端口",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
2023-01-04 22:31:51 +08:00
],
"summary": "Change app port",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.PortUpdate"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"key",
2023-01-04 22:31:51 +08:00
"name",
"port"
2023-01-04 22:31:51 +08:00
],
"formatEN": "Application port update [key]-[name] =\u003e [port]",
"formatZH": "应用端口修改 [key]-[name] =\u003e [port]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/apps/installed/sync": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "同步已安装应用列表",
2023-01-04 22:31:51 +08:00
"tags": [
"App"
2023-01-04 22:31:51 +08:00
],
"summary": "Sync app installed",
2023-01-04 22:31:51 +08:00
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "Sync the list of installed apps",
"formatZH": "同步已安装应用列表",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/apps/search": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取应用列表",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
2023-01-04 22:31:51 +08:00
],
"summary": "List apps",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.AppSearch"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
}
}
},
"/apps/services/:key": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "通过 key 获取应用 service",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"App"
2023-01-04 22:31:51 +08:00
],
"summary": "Search app service by key",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"type": "string",
2023-01-04 22:31:51 +08:00
"description": "request",
"name": "key",
"in": "path",
"required": true
2023-01-04 22:31:51 +08:00
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
2023-01-04 22:31:51 +08:00
}
}
}
}
},
"/apps/sync": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "同步应用列表",
"tags": [
"App"
],
"summary": "Sync app list",
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "App store synchronization",
"formatZH": "应用商店同步",
"paramKeys": []
}
}
},
"/auth/captcha": {
"get": {
"description": "加载验证码",
"tags": [
"Auth"
],
"summary": "Load captcha",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.CaptchaResponse"
}
}
}
}
},
"/auth/init": {
"post": {
"description": "初始化用户",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Auth"
2023-01-04 22:31:51 +08:00
],
"summary": "Init user",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.InitUser"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
}
}
},
"/auth/login": {
"post": {
"description": "用户登录",
"consumes": [
2023-01-04 22:31:51 +08:00
"application/json"
],
"tags": [
"Auth"
],
"summary": "User login",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.Login"
}
}
2023-01-04 22:31:51 +08:00
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.UserLoginInfo"
2023-01-04 22:31:51 +08:00
}
}
}
}
},
"/auth/logout": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "用户登出",
"tags": [
"Auth"
],
"summary": "User logout",
"responses": {
"200": {
"description": ""
}
}
}
},
"/auth/mfalogin": {
"post": {
"description": "用户 mfa 登录",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Auth"
2023-01-04 22:31:51 +08:00
],
"summary": "User login with mfa",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.MFALogin"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.UserLoginInfo"
}
}
}
}
},
"/auth/status": {
"get": {
"description": "判断是否为首次登录",
"tags": [
"Auth"
],
"summary": "Check is First login",
2023-01-04 22:31:51 +08:00
"responses": {
"200": {
"description": ""
}
}
}
},
"/containers": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建容器",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container"
2023-01-04 22:31:51 +08:00
],
"summary": "Create container",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ContainerCreate"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name",
"image"
],
"formatEN": "create container [name][image]",
"formatZH": "创建容器 [name][image]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/containers/compose": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建容器编排",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Compose"
2023-01-04 22:31:51 +08:00
],
"summary": "Create compose",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ComposeCreate"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"name"
2023-01-04 22:31:51 +08:00
],
"formatEN": "create compose [name]",
"formatZH": "创建 compose [name]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/containers/compose/operate": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "容器编排操作",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Compose"
2023-01-04 22:31:51 +08:00
],
"summary": "Operate compose",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ComposeOperation"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"name",
"operation"
2023-01-04 22:31:51 +08:00
],
"formatEN": "compose [operation] [name]",
"formatZH": "compose [operation] [name]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/containers/compose/search": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取编排列表分页",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Compose"
2023-01-04 22:31:51 +08:00
],
"summary": "Page composes",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SearchWithPage"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
2023-01-04 22:31:51 +08:00
}
}
}
},
"/containers/compose/update": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新容器编排",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Compose"
2023-01-04 22:31:51 +08:00
],
"summary": "Update compose",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ComposeUpdate"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name"
],
"formatEN": "update compose information [name]",
"formatZH": "更新 compose [name]",
"paramKeys": []
}
}
},
"/containers/daemonjson": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 docker 配置信息",
"produces": [
"application/json"
],
"tags": [
"Container Docker"
],
"summary": "Load docker daemon.json",
2023-01-04 22:31:51 +08:00
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.DaemonJsonConf"
2023-01-04 22:31:51 +08:00
}
}
}
}
},
"/containers/daemonjson/file": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 docker 配置信息(表单)",
"produces": [
2023-01-04 22:31:51 +08:00
"application/json"
],
"tags": [
"Container Docker"
2023-01-04 22:31:51 +08:00
],
"summary": "Load docker daemon.json",
2023-01-04 22:31:51 +08:00
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
2023-01-04 22:31:51 +08:00
}
}
}
}
},
"/containers/daemonjson/update": {
2023-02-13 15:48:18 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "修改 docker 配置信息",
2023-02-13 15:48:18 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Docker"
2023-02-13 15:48:18 +08:00
],
"summary": "Update docker daemon.json",
2023-02-13 15:48:18 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.DaemonJsonConf"
2023-02-13 15:48:18 +08:00
}
}
],
"responses": {
"200": {
"description": ""
2023-02-13 15:48:18 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "Updated the docker daemon.json configuration",
"formatZH": "更新 docker daemon.json 配置",
"paramKeys": []
2023-02-13 15:48:18 +08:00
}
}
},
"/containers/daemonjson/update/byfile": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "上传替换 docker 配置文件",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Docker"
2023-01-04 22:31:51 +08:00
],
"summary": "Update docker daemon.json by upload file",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.DaemonJsonUpdateByFile"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "Updated the docker daemon.json configuration",
"formatZH": "更新 docker daemon.json 配置",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/containers/docker/operate": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "Docker 操作",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Docker"
2023-01-04 22:31:51 +08:00
],
"summary": "Operate docker",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.DockerOperation"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"operation"
2023-01-04 22:31:51 +08:00
],
"formatEN": "[operation] docker service",
"formatZH": "docker 服务 [operation]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/containers/docker/status": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 docker 服务状态",
"produces": [
2023-01-04 22:31:51 +08:00
"application/json"
],
"tags": [
"Container Docker"
2023-01-04 22:31:51 +08:00
],
"summary": "Load docker status",
"responses": {
"200": {
"description": "OK",
2023-01-04 22:31:51 +08:00
"schema": {
"type": "string"
}
}
}
}
},
"/containers/image": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取镜像列表",
"produces": [
"application/json"
],
"tags": [
"Container Image"
2023-01-04 22:31:51 +08:00
],
"summary": "List images",
2023-01-04 22:31:51 +08:00
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
2023-01-04 22:31:51 +08:00
}
}
}
}
},
"/containers/image/build": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "构建镜像",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Image"
2023-01-04 22:31:51 +08:00
],
"summary": "Build image",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ImageBuild"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
}
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"name"
2023-01-04 22:31:51 +08:00
],
"formatEN": "build image [name]",
"formatZH": "构建镜像 [name]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/containers/image/load": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "导入镜像",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Image"
2023-01-04 22:31:51 +08:00
],
"summary": "Load image",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ImageLoad"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"path"
],
"formatEN": "load image from [path]",
"formatZH": "从 [path] 加载镜像",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/containers/image/pull": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "拉取镜像",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Image"
2023-01-04 22:31:51 +08:00
],
"summary": "Pull image",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ImagePull"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
}
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "image_repos",
"input_colume": "id",
"input_value": "repoID",
"isList": false,
"output_colume": "name",
"output_value": "reponame"
}
],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"repoID",
"imageName"
2023-01-04 22:31:51 +08:00
],
"formatEN": "image pull [reponame][imageName]",
"formatZH": "镜像拉取 [reponame][imageName]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/containers/image/push": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "推送镜像",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Image"
2023-01-04 22:31:51 +08:00
],
"summary": "Push image",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ImagePush"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
}
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "image_repos",
"input_colume": "id",
"input_value": "repoID",
"isList": false,
"output_colume": "name",
"output_value": "reponame"
}
],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"repoID",
"tagName",
"name"
2023-01-04 22:31:51 +08:00
],
"formatEN": "push [tagName] to [reponame][name]",
"formatZH": "[tagName] 推送到 [reponame][name]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/containers/image/remove": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除镜像",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Image"
2023-01-04 22:31:51 +08:00
],
"summary": "Delete image",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.BatchDelete"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"names"
],
"formatEN": "remove image [names]",
"formatZH": "移除镜像 [names]",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/containers/image/save": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "导出镜像",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Image"
2023-01-04 22:31:51 +08:00
],
"summary": "Save image",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ImageSave"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"tagName",
"path",
"name"
2023-01-04 22:31:51 +08:00
],
"formatEN": "save [tagName] as [path]/[name]",
"formatZH": "保留 [tagName] 为 [path]/[name]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/containers/image/search": {
"post": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取镜像列表分页",
"consumes": [
"application/json"
],
2023-01-04 22:31:51 +08:00
"produces": [
"application/json"
],
"tags": [
"Container Image"
2023-01-04 22:31:51 +08:00
],
"summary": "Page images",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
2023-01-04 22:31:51 +08:00
"schema": {
"$ref": "#/definitions/dto.SearchWithPage"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
}
}
}
},
"/containers/image/tag": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "Tag 镜像",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Image"
2023-01-04 22:31:51 +08:00
],
"summary": "Tag image",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ImageTag"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "image_repos",
"input_colume": "id",
"input_value": "repoID",
"isList": false,
"output_colume": "name",
"output_value": "reponame"
}
],
"bodyKeys": [
"repoID",
"targetName"
],
"formatEN": "tag image [reponame][targetName]",
"formatZH": "tag 镜像 [reponame][targetName]",
"paramKeys": []
}
}
},
"/containers/inspect": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "容器详情",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container"
2023-01-04 22:31:51 +08:00
],
"summary": "Container inspect",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.InspectReq"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
}
2023-01-04 22:31:51 +08:00
}
}
}
},
"/containers/network": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建容器网络",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Network"
2023-01-04 22:31:51 +08:00
],
"summary": "Create network",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.NetworkCreat"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name"
],
"formatEN": "create container network [name]",
"formatZH": "创建容器网络 name",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/containers/network/del": {
"post": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除容器网络",
"consumes": [
2023-01-04 22:31:51 +08:00
"application/json"
],
"tags": [
"Container Network"
2023-01-04 22:31:51 +08:00
],
"summary": "Delete network",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
2023-01-04 22:31:51 +08:00
"schema": {
"$ref": "#/definitions/dto.BatchDelete"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"names"
],
"formatEN": "delete container network [names]",
"formatZH": "删除容器网络 [names]",
"paramKeys": []
}
}
},
"/containers/network/search": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取容器网络列表分页",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"Container Network"
],
"summary": "Page networks",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SearchWithPage"
}
}
2023-01-04 22:31:51 +08:00
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
2023-01-04 22:31:51 +08:00
}
}
2023-01-04 22:31:51 +08:00
}
}
},
"/containers/operate": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "容器操作",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container"
2023-01-04 22:31:51 +08:00
],
"summary": "Operate Container",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ContainerOperation"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name",
"operation",
"newName"
],
"formatEN": "container [operation] [name] [newName]",
"formatZH": "容器 [name] 执行 [operation] [newName]",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/containers/repo": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取镜像仓库列表",
"produces": [
"application/json"
],
"tags": [
"Container Image-repo"
],
"summary": "List image repos",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
}
},
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建镜像仓库",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
2023-01-04 22:31:51 +08:00
"tags": [
"Container Image-repo"
2023-01-04 22:31:51 +08:00
],
"summary": "Create image repo",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ImageRepoCreate"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name"
],
"formatEN": "create image repo [name]",
"formatZH": "创建镜像仓库 [name]",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/containers/repo/del": {
"post": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除镜像仓库",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
2023-01-04 22:31:51 +08:00
"tags": [
"Container Image-repo"
2023-01-04 22:31:51 +08:00
],
"summary": "Delete image repo",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ImageRepoDelete"
}
2023-01-04 22:31:51 +08:00
}
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "image_repos",
"input_colume": "id",
"input_value": "ids",
"isList": true,
"output_colume": "name",
"output_value": "names"
}
],
"bodyKeys": [
"ids"
],
"formatEN": "delete image repo [names]",
"formatZH": "删除镜像仓库 [names]",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/containers/repo/search": {
"post": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取镜像仓库列表分页",
"consumes": [
2023-01-04 22:31:51 +08:00
"application/json"
],
"produces": [
"application/json"
],
2023-01-04 22:31:51 +08:00
"tags": [
"Container Image-repo"
],
"summary": "Page image repos",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SearchWithPage"
}
}
2023-01-04 22:31:51 +08:00
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
2023-01-04 22:31:51 +08:00
}
}
}
}
},
"/containers/repo/update": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新镜像仓库",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"produces": [
"application/json"
2023-01-04 22:31:51 +08:00
],
"tags": [
"Container Image-repo"
],
"summary": "Update image repo",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ImageRepoUpdate"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "image_repos",
"input_column": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"id"
2023-01-04 22:31:51 +08:00
],
"formatEN": "update image repo information [name]",
"formatZH": "更新镜像仓库 [name]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/containers/search": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取容器列表分页",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
2023-01-04 22:31:51 +08:00
"tags": [
"Container"
2023-01-04 22:31:51 +08:00
],
"summary": "Page containers",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.PageContainer"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
2023-01-04 22:31:51 +08:00
}
}
}
},
"/containers/search/log": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "容器日志",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container"
2023-01-04 22:31:51 +08:00
],
"summary": "Container logs",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ContainerLog"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
2023-01-04 22:31:51 +08:00
}
}
}
}
},
"/containers/stats/:id": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "容器监控信息",
2023-01-04 22:31:51 +08:00
"tags": [
"Container"
2023-01-04 22:31:51 +08:00
],
"summary": "Container stats",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"type": "integer",
"description": "容器id",
"name": "id",
"in": "path",
"required": true
2023-01-04 22:31:51 +08:00
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.ContainterStats"
2023-01-04 22:31:51 +08:00
}
}
2023-01-04 22:31:51 +08:00
}
}
},
"/containers/template": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取容器编排模版列表",
"produces": [
2023-01-04 22:31:51 +08:00
"application/json"
],
"tags": [
"Container Compose-template"
2023-01-04 22:31:51 +08:00
],
"summary": "List compose templates",
2023-01-04 22:31:51 +08:00
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
2023-01-04 22:31:51 +08:00
}
}
},
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建容器编排模版",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Compose-template"
2023-01-04 22:31:51 +08:00
],
"summary": "Create compose template",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ComposeTemplateCreate"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name"
2023-01-04 22:31:51 +08:00
],
"formatEN": "create compose template [name]",
"formatZH": "创建 compose 模版 [name]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/containers/template/del": {
"post": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除容器编排模版",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Compose-template"
2023-01-04 22:31:51 +08:00
],
"summary": "Delete compose template",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.BatchDelete"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "compose_templates",
"input_colume": "id",
"input_value": "ids",
"isList": true,
"output_colume": "name",
"output_value": "names"
}
],
"bodyKeys": [
"ids"
],
"formatEN": "delete compose template [names]",
"formatZH": "删除 compose 模版 [names]",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/containers/template/search": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取容器编排模版列表分页",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"tags": [
"Container Compose-template"
2023-01-04 22:31:51 +08:00
],
"summary": "Page compose templates",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
2023-02-07 18:48:32 +08:00
"$ref": "#/definitions/dto.SearchWithPage"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
}
}
}
},
"/containers/template/update": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新容器编排模版",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Compose-template"
2023-01-04 22:31:51 +08:00
],
"summary": "Update compose template",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ComposeTemplateUpdate"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "compose_templates",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"id"
2023-01-04 22:31:51 +08:00
],
"formatEN": "update compose template information [name]",
"formatZH": "更新 compose 模版 [name]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/containers/volume": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建容器存储卷",
"consumes": [
"application/json"
],
"tags": [
"Container Volume"
],
"summary": "Create volume",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.VolumeCreat"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"name"
2023-01-04 22:31:51 +08:00
],
"formatEN": "create container volume [name]",
"formatZH": "创建容器存储卷 [name]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/containers/volume/del": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除容器存储卷",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Container Volume"
2023-01-04 22:31:51 +08:00
],
"summary": "Delete volume",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.BatchDelete"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"names"
2023-01-04 22:31:51 +08:00
],
"formatEN": "delete container volume [names]",
"formatZH": "删除容器存储卷 [names]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/containers/volume/search": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取容器存储卷列表",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
2023-01-04 22:31:51 +08:00
"tags": [
"Container Volume"
2023-01-04 22:31:51 +08:00
],
"summary": "List volumes",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.PageInfo"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
2023-01-04 22:31:51 +08:00
}
}
2023-01-04 22:31:51 +08:00
}
},
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取容器存储卷分页",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
2023-01-04 22:31:51 +08:00
"tags": [
"Container Volume"
2023-01-04 22:31:51 +08:00
],
"summary": "Page volumes",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SearchWithPage"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
2023-01-04 22:31:51 +08:00
}
}
2023-01-04 22:31:51 +08:00
}
}
},
"/cronjobs": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建计划任务",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Cronjob"
2023-01-04 22:31:51 +08:00
],
"summary": "Create cronjob",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.CronjobCreate"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"type",
"name"
],
"formatEN": "create cronjob [type][name]",
"formatZH": "创建计划任务 [type][name]",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/cronjobs/del": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除计划任务",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Cronjob"
2023-01-04 22:31:51 +08:00
],
"summary": "Delete cronjob",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.BatchDeleteReq"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "cronjobs",
"input_colume": "id",
"input_value": "ids",
"isList": true,
"output_colume": "name",
"output_value": "names"
2023-01-04 22:31:51 +08:00
}
],
"bodyKeys": [
"ids"
],
"formatEN": "delete cronjob [names]",
"formatZH": "删除计划任务 [names]",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/cronjobs/download": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "下载计划任务记录",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Cronjob"
2023-01-04 22:31:51 +08:00
],
"summary": "Download cronjob records",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.CronjobDownload"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "job_records",
"input_colume": "id",
"input_value": "recordID",
"isList": false,
"output_colume": "file",
"output_value": "file"
}
],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"recordID"
2023-01-04 22:31:51 +08:00
],
"formatEN": "download the cronjob record [file]",
"formatZH": "下载计划任务记录 [file]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/cronjobs/handle": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "手动执行计划任务",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Cronjob"
2023-01-04 22:31:51 +08:00
],
"summary": "Handle cronjob once",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.OperateByID"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "cronjobs",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"id"
2023-01-04 22:31:51 +08:00
],
"formatEN": "manually execute the cronjob [name]",
"formatZH": "手动执行计划任务 [name]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/cronjobs/search": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取计划任务分页",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Cronjob"
2023-01-04 22:31:51 +08:00
],
"summary": "Page cronjobs",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
2023-02-07 18:48:32 +08:00
"$ref": "#/definitions/dto.SearchWithPage"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
2023-01-04 22:31:51 +08:00
}
}
2023-01-04 22:31:51 +08:00
}
}
},
"/cronjobs/search/records": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取计划任务记录",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Cronjob"
2023-01-04 22:31:51 +08:00
],
"summary": "Page job records",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SearchRecord"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
2023-01-04 22:31:51 +08:00
}
}
2023-01-04 22:31:51 +08:00
}
}
},
"/cronjobs/status": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新计划任务状态",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Cronjob"
2023-01-04 22:31:51 +08:00
],
"summary": "Update cronjob status",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.CronjobUpdateStatus"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "cronjobs",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
"bodyKeys": [
"id",
"status"
],
"formatEN": "change the status of cronjob [name] to [status].",
"formatZH": "修改计划任务 [name] 状态为 [status]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/cronjobs/update": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新计划任务",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Cronjob"
2023-01-04 22:31:51 +08:00
],
"summary": "Update cronjob",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.CronjobUpdate"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "cronjobs",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"id"
2023-01-04 22:31:51 +08:00
],
"formatEN": "update cronjob [name]",
"formatZH": "更新计划任务 [name]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/dashboard/base/:ioOption/:netOption": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取首页基础数据",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Dashboard"
2023-01-04 22:31:51 +08:00
],
"summary": "Load dashboard base info",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"type": "string",
2023-01-04 22:31:51 +08:00
"description": "request",
"name": "ioOption",
"in": "path",
"required": true
},
{
"type": "string",
"description": "request",
"name": "netOption",
"in": "path",
"required": true
2023-01-04 22:31:51 +08:00
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.DashboardBase"
2023-01-04 22:31:51 +08:00
}
}
}
}
},
"/dashboard/current/:ioOption/:netOption": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取首页实时数据",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Dashboard"
2023-01-04 22:31:51 +08:00
],
"summary": "Load dashboard current info",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"type": "string",
2023-01-04 22:31:51 +08:00
"description": "request",
"name": "ioOption",
"in": "path",
"required": true
},
{
"type": "string",
"description": "request",
"name": "netOption",
"in": "path",
"required": true
2023-01-04 22:31:51 +08:00
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.DashboardCurrent"
2023-01-04 22:31:51 +08:00
}
}
2023-01-04 22:31:51 +08:00
}
}
},
"/databases": {
"post": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建 mysql 数据库",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Database Mysql"
2023-01-04 22:31:51 +08:00
],
"summary": "Create mysql database",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.MysqlDBCreate"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name"
],
"formatEN": "create mysql database [name]",
"formatZH": "创建 mysql 数据库 [name]",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/databases/backup": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "备份 mysql 数据库",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Database Mysql"
2023-01-04 22:31:51 +08:00
],
"summary": "Backup mysql database",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.BackupDB"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"mysqlName",
"dbName"
2023-01-04 22:31:51 +08:00
],
"formatEN": "backup mysql database [mysqlName][dbName]",
"formatZH": "备份 mysql 数据库 [mysqlName][dbName]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/databases/baseinfo": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 mysql 基础信息",
"tags": [
"Database Mysql"
],
"summary": "Load mysql base info",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.DBBaseInfo"
}
}
}
}
},
"/databases/change/access": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "修改 mysql 访问权限",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Database Mysql"
2023-01-04 22:31:51 +08:00
],
"summary": "Change mysql access",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ChangeDBInfo"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "database_mysqls",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
2023-01-04 22:31:51 +08:00
"bodyKeys": [
"id"
2023-01-04 22:31:51 +08:00
],
"formatEN": "Update database [name] access",
"formatZH": "更新数据库 [name] 访问权限",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/databases/change/password": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "修改 mysql 密码",
"consumes": [
"application/json"
],
2023-01-04 22:31:51 +08:00
"tags": [
"Database Mysql"
],
"summary": "Change mysql password",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ChangeDBInfo"
}
}
2023-01-04 22:31:51 +08:00
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "database_mysqls",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
"bodyKeys": [
"id"
],
"formatEN": "Update database [name] password",
"formatZH": "更新数据库 [name] 密码",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/databases/conffile/update": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "上传替换 mysql 配置文件",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Database Mysql"
2023-01-04 22:31:51 +08:00
],
"summary": "Update mysql conf by upload file",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.MysqlConfUpdateByFile"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "update the mysql database configuration information",
"formatZH": "更新 mysql 数据库配置信息",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/databases/del": {
"post": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除 mysql 数据库",
"consumes": [
"application/json"
],
2023-01-04 22:31:51 +08:00
"tags": [
"Database Mysql"
],
"summary": "Delete mysql database",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.MysqlDBDelete"
}
}
2023-01-04 22:31:51 +08:00
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "database_mysqls",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
"bodyKeys": [
"id"
],
"formatEN": "delete mysql database [name]",
"formatZH": "删除 mysql 数据库 [name]",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/databases/del/check": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "Mysql 数据库删除前检查",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Database Mysql"
2023-01-04 22:31:51 +08:00
],
"summary": "Check before delete mysql database",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.OperateByID"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
2023-01-04 22:31:51 +08:00
}
}
},
"/databases/description/update": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新 mysql 数据库库描述信息",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Database Mysql"
2023-01-04 22:31:51 +08:00
],
"summary": "Update mysql database description",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.UpdateDescription"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "database_mysqls",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
"bodyKeys": [
"id",
"description"
],
"formatEN": "The description of the mysql database [name] is modified =\u003e [description]",
"formatZH": "mysql 数据库 [name] 描述信息修改 [description]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/databases/options": {
"get": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 mysql 数据库列表",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Database Mysql"
2023-01-04 22:31:51 +08:00
],
"summary": "List mysql database names",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.PageInfo"
}
2023-01-04 22:31:51 +08:00
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
2023-01-04 22:31:51 +08:00
}
}
}
}
},
"/databases/recover": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "Mysql 数据库恢复",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Database Mysql"
2023-01-04 22:31:51 +08:00
],
"summary": "Recover mysql database",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.RecoverDB"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"mysqlName",
"dbName",
"backupName"
],
"formatEN": "恢复 mysql 数据库 [mysqlName][dbName] [backupName]",
"formatZH": "恢复 mysql 数据库 [mysqlName][dbName] [backupName]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/databases/recover/byupload": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "Mysql 数据库从上传文件恢复",
"consumes": [
"application/json"
],
2023-01-04 22:31:51 +08:00
"tags": [
"Database Mysql"
],
"summary": "Recover mysql database by upload file",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.UploadRecover"
}
}
2023-01-04 22:31:51 +08:00
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"fileDir",
"fileName",
"mysqlName",
"dbName"
2023-01-04 22:31:51 +08:00
],
"formatEN": "mysql database recover [fileDir]/[fileName] from [mysqlName][dbName]",
"formatZH": "mysql 数据库从 [fileDir]/[fileName] 恢复 [mysqlName][dbName]",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/databases/redis/backup": {
"post": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "备份 redis 数据库",
2023-01-04 22:31:51 +08:00
"tags": [
"Database Redis"
2023-01-04 22:31:51 +08:00
],
"summary": "Backup redis",
2023-01-04 22:31:51 +08:00
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "backup redis database",
"formatZH": "备份 redis 数据库",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/databases/redis/backup/search": {
"post": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 redis 备份记录分页",
"consumes": [
"application/json"
],
2023-01-04 22:31:51 +08:00
"tags": [
"Database Redis"
2023-01-04 22:31:51 +08:00
],
"summary": "Page redis backups",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
2023-01-04 22:31:51 +08:00
"schema": {
"$ref": "#/definitions/dto.PageInfo"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
}
2023-01-04 22:31:51 +08:00
}
}
},
"/databases/redis/conf": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 redis 配置信息",
"tags": [
"Database Redis"
],
"summary": "Load redis conf",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.RedisConf"
}
}
}
}
},
"/databases/redis/conf/update": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新 redis 配置信息",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Database Redis"
2023-01-04 22:31:51 +08:00
],
"summary": "Update redis conf",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.RedisConfUpdate"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "update the redis database configuration information",
"formatZH": "更新 redis 数据库配置信息",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/databases/redis/conffile/update": {
"post": {
2023-01-04 22:31:51 +08:00
"security": [
{
"ApiKeyAuth": []
}
],
"description": "上传更新 redis 配置信息",
"consumes": [
"application/json"
],
2023-01-04 22:31:51 +08:00
"tags": [
"Database Redis"
2023-01-04 22:31:51 +08:00
],
"summary": "Update redis conf by file",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
2023-01-04 22:31:51 +08:00
"schema": {
"$ref": "#/definitions/dto.RedisConfUpdateByFile"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
2023-01-04 22:31:51 +08:00
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "update the redis database configuration information",
"formatZH": "更新 redis 数据库配置信息",
"paramKeys": []
2023-01-04 22:31:51 +08:00
}
}
},
"/databases/redis/password": {
2023-01-04 22:31:51 +08:00
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新 redis 密码",
2023-01-04 22:31:51 +08:00
"consumes": [
"application/json"
],
"tags": [
"Database Redis"
2023-01-04 22:31:51 +08:00
],
"summary": "Change redis password",
2023-01-04 22:31:51 +08:00
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ChangeDBInfo"
2023-01-04 22:31:51 +08:00
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "change the password of the redis database",
"formatZH": "修改 redis 数据库密码",
2023-01-04 22:31:51 +08:00
"paramKeys": []
}
}
},
"/databases/redis/persistence/conf": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 redis 持久化配置",
"tags": [
"Database Redis"
],
"summary": "Load redis persistence conf",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.RedisPersistence"
}
}
}
}
},
"/databases/redis/persistence/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新 redis 持久化配置",
"consumes": [
"application/json"
],
"tags": [
"Database Redis"
],
"summary": "Update redis persistence conf",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.RedisConfPersistenceUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "redis database persistence configuration update",
"formatZH": "redis 数据库持久化配置更新",
"paramKeys": []
}
}
},
"/databases/redis/recover": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "恢复 redis 数据库",
"tags": [
"Database Redis"
],
"summary": "Recover redis",
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"fileDir",
"fileName"
],
"formatEN": "redis database recover from [fileDir]/[fileName]",
"formatZH": "redis 数据库从 [fileDir]/[fileName] 恢复",
"paramKeys": []
}
}
},
"/databases/redis/status": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 redis 状态信息",
"tags": [
"Database Redis"
],
"summary": "Load redis status info",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.RedisStatus"
}
}
}
}
},
"/databases/remote": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 mysql 远程访问权限",
"tags": [
"Database Mysql"
],
"summary": "Load mysql remote access",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "boolean"
}
}
}
}
},
"/databases/search": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 mysql 数据库列表分页",
"consumes": [
"application/json"
],
"tags": [
"Database Mysql"
],
"summary": "Page mysql databases",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SearchWithPage"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
}
}
}
},
"/databases/status": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 mysql 状态信息",
"tags": [
"Database Mysql"
],
"summary": "Load mysql status info",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.MysqlStatus"
}
}
}
}
},
"/databases/variables": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 mysql 性能参数信息",
"tags": [
"Database Mysql"
],
"summary": "Load mysql variables info",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.MysqlVariables"
}
}
}
}
},
"/databases/variables/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "mysql 性能调优",
"consumes": [
"application/json"
],
"tags": [
"Database Mysql"
],
"summary": "Update mysql variables",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.MysqlVariablesUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "adjust mysql database performance parameters",
"formatZH": "调整 mysql 数据库性能参数",
"paramKeys": []
}
}
},
"/files": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建文件/文件夹",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Create file",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.FileCreate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"path"
],
"formatEN": "Create dir or file [path]",
"formatZH": "创建文件/文件夹 [path]",
"paramKeys": []
}
}
},
"/files/batch/del": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "批量删除文件/文件夹",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Batch delete file",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.FileBatchDelete"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"paths"
],
"formatEN": "Batch delete dir or file [paths]",
"formatZH": "批量删除文件/文件夹 [paths]",
"paramKeys": []
}
}
},
"/files/compress": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "压缩文件",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Compress file",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.FileCompress"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name"
],
"formatEN": "Compress file [name]",
"formatZH": "压缩文件 [name]",
"paramKeys": []
}
}
},
"/files/content": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取文件内容",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Load file content",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.FileOption"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.FileInfo"
}
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"path"
],
"formatEN": "Load file content [path]",
"formatZH": "获取文件内容 [path]",
"paramKeys": []
}
}
},
"/files/decompress": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "解压文件",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Decompress file",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.FileDeCompress"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"path"
],
"formatEN": "Decompress file [path]",
"formatZH": "解压 [path]",
"paramKeys": []
}
}
},
"/files/del": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除文件/文件夹",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Delete file",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.FileDelete"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"path"
],
"formatEN": "Delete dir or file [path]",
"formatZH": "删除文件/文件夹 [path]",
"paramKeys": []
}
}
},
"/files/download": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "下载文件",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Download file",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.FileDownload"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name"
],
"formatEN": "Download file [name]",
"formatZH": "下载文件 [name]",
"paramKeys": []
}
}
},
"/files/loadfile": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "读取文件",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Read file",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.FilePath"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
}
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"path"
],
"formatEN": "Read file [path]",
"formatZH": "读取文件 [path]",
"paramKeys": []
}
}
},
"/files/mode": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "修改文件权限",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Change file mode",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.FileCreate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"path",
"mode"
],
"formatEN": "Change mode [paths] =\u003e [mode]",
"formatZH": "修改权限 [paths] =\u003e [mode]",
"paramKeys": []
}
}
},
"/files/move": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "移动文件",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Move file",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.FileMove"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"oldPaths",
"newPath"
],
"formatEN": "Move [oldPaths] =\u003e [newPath]",
"formatZH": "移动文件 [oldPaths] =\u003e [newPath]",
"paramKeys": []
}
}
},
"/files/rename": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "修改文件名称",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Change file name",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.FileRename"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"oldName",
"newName"
],
"formatEN": "Rename [oldName] =\u003e [newName]",
"formatZH": "重命名 [oldName] =\u003e [newName]",
"paramKeys": []
}
}
},
"/files/save": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新文件内容",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Update file content",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.FileEdit"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"path"
],
"formatEN": "Update file content [path]",
"formatZH": "更新文件内容 [path]",
"paramKeys": []
}
}
},
"/files/search": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取文件列表",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "List files",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.FileOption"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.FileInfo"
}
}
}
}
},
"/files/size": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取文件夹大小",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Load file size",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.DirSizeReq"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"path"
],
"formatEN": "Load file size [path]",
"formatZH": "获取文件夹大小 [path]",
"paramKeys": []
}
}
},
"/files/tree": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "加载文件树",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Load files tree",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.FileOption"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
}
}
},
"/files/upload": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "上传文件",
"tags": [
"File"
],
"summary": "Upload file",
"parameters": [
{
"type": "file",
"description": "request",
"name": "file",
"in": "formData",
"required": true
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"path"
],
"formatEN": "Upload file [path]",
"formatZH": "上传文件 [path]",
"paramKeys": []
}
}
},
"/files/wget": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "下载远端文件",
"consumes": [
"application/json"
],
"tags": [
"File"
],
"summary": "Wget file",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.FileWget"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"url",
"path",
"name"
],
"formatEN": "Download url =\u003e [path]/[name]",
"formatZH": "下载 url =\u003e [path]/[name]",
"paramKeys": []
}
}
},
"/hosts": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建主机",
"consumes": [
"application/json"
],
"tags": [
"Host"
],
"summary": "Create host",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.HostOperate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name",
"addr"
],
"formatEN": "create host [name][addr]",
"formatZH": "创建主机 [name][addr]",
"paramKeys": []
}
}
},
"/hosts/:id": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "加载主机信息",
"consumes": [
"application/json"
],
"tags": [
"Host"
],
"summary": "Load host info",
"parameters": [
{
"type": "integer",
"description": "request",
"name": "id",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.HostInfo"
}
}
}
}
},
"/hosts/command": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取快速命令列表",
"tags": [
"Command"
],
"summary": "List commands",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.CommandInfo"
}
}
}
},
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建快速命令",
"consumes": [
"application/json"
],
"tags": [
"Command"
],
"summary": "Create command",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.CommandOperate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name",
"command"
],
"formatEN": "create quick command [name][command]",
"formatZH": "创建快捷命令 [name][command]",
"paramKeys": []
}
}
},
"/hosts/command/del": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除快速命令",
"consumes": [
"application/json"
],
"tags": [
"Command"
],
"summary": "Delete command",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.BatchDeleteReq"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "commands",
"input_colume": "id",
"input_value": "ids",
"isList": true,
"output_colume": "name",
"output_value": "names"
}
],
"bodyKeys": [
"ids"
],
"formatEN": "delete quick command [names]",
"formatZH": "删除快捷命令 [names]",
"paramKeys": []
}
}
},
"/hosts/command/search": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取快速命令列表分页",
"consumes": [
"application/json"
],
"tags": [
"Command"
],
"summary": "Page commands",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SearchWithPage"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
}
}
}
},
"/hosts/command/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新快速命令",
"consumes": [
"application/json"
],
"tags": [
"Command"
],
"summary": "Update command",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.CommandOperate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name"
],
"formatEN": "update quick command [name]",
"formatZH": "更新快捷命令 [name]",
"paramKeys": []
}
}
},
"/hosts/del": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除主机",
"consumes": [
"application/json"
],
"tags": [
"Host"
],
"summary": "Delete host",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.OperateByID"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "hosts",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "addr",
"output_value": "addr"
}
],
"bodyKeys": [
"id"
],
"formatEN": "delete host [addr]",
"formatZH": "删除主机 [addr]",
"paramKeys": []
}
}
},
"/hosts/group": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建系统组",
"consumes": [
"application/json"
],
"tags": [
"System Group"
],
"summary": "Create group",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.GroupOperate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name",
"type"
],
"formatEN": "create group [name][type]",
"formatZH": "创建组 [name][type]",
"paramKeys": []
}
}
},
"/hosts/group/del": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除系统组",
"consumes": [
"application/json"
],
"tags": [
"System Group"
],
"summary": "Delete group",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.OperateByID"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "groups",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
"bodyKeys": [
"id"
],
"formatEN": "delete group [name]",
"formatZH": "删除组 [name]",
"paramKeys": []
}
}
},
"/hosts/group/search": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "查询系统组",
"consumes": [
"application/json"
],
"tags": [
"System Group"
],
"summary": "List groups",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.GroupSearch"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
}
}
},
"/hosts/group/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新系统组",
"consumes": [
"application/json"
],
"tags": [
"System Group"
],
"summary": "Update group",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.GroupOperate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name",
"type"
],
"formatEN": "update group [name][type]",
"formatZH": "更新组 [name][type]",
"paramKeys": []
}
}
},
"/hosts/search": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "加载主机树",
"consumes": [
"application/json"
],
"tags": [
"Host"
],
"summary": "Load host tree",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SearchForTree"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
}
}
},
"/hosts/test/byid/:id": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "测试主机连接",
"consumes": [
"application/json"
],
"tags": [
"Host"
],
"summary": "Test host conn by host id",
"parameters": [
{
"type": "integer",
"description": "request",
"name": "id",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "boolean"
}
}
}
}
},
"/hosts/test/byinfo": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "测试主机连接",
"consumes": [
"application/json"
],
"tags": [
"Host"
],
"summary": "Test host conn by info",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.HostConnTest"
}
}
],
"responses": {
"200": {
"description": ""
}
}
}
},
"/hosts/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新主机",
"consumes": [
"application/json"
],
"tags": [
"Host"
],
"summary": "Update host",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.HostOperate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name",
"addr"
],
"formatEN": "update host [name][addr]",
"formatZH": "更新主机信息 [name][addr]",
"paramKeys": []
}
}
},
"/logs/clean": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "清空操作日志",
"consumes": [
"application/json"
],
"tags": [
"Logs"
],
"summary": "Clean operation logs",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.CleanLog"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"logType"
],
"formatEN": "Clean the [logType] log information",
"formatZH": "清空 [logType] 日志信息",
"paramKeys": []
}
}
},
"/logs/login": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取系统登录日志列表分页",
"consumes": [
"application/json"
],
"tags": [
"Logs"
],
"summary": "Page login logs",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SearchLgLogWithPage"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
}
}
}
},
"/logs/operation": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取系统操作日志列表分页",
"consumes": [
"application/json"
],
"tags": [
"Logs"
],
"summary": "Page operation logs",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SearchOpLogWithPage"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
}
}
}
},
"/nginx": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 nginx 配置信息",
"tags": [
"Nginx"
],
"summary": "Load nginx conf",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.FileInfo"
}
}
}
}
},
"/nginx/file": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "上传更新 nginx 配置文件",
"consumes": [
"application/json"
],
"tags": [
"Nginx"
],
"summary": "Update nginx conf by upload file",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.NginxConfigFileUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "Update nginx conf",
"formatZH": "更新 nginx 配置",
"paramKeys": []
}
}
},
"/nginx/scope": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取部分 nginx 配置信息",
"consumes": [
"application/json"
],
"tags": [
"Nginx"
],
"summary": "Load partial nginx conf",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.NginxScopeReq"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
}
}
},
"/nginx/status": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 nginx 状态信息",
"tags": [
"Nginx"
],
"summary": "Load nginx status info",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.NginxStatus"
}
}
}
}
},
"/nginx/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新 nginx 配置信息",
"consumes": [
"application/json"
],
"tags": [
"Nginx"
],
"summary": "Update nginx conf",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.NginxConfigUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "websites",
"input_colume": "id",
"input_value": "websiteId",
"isList": false,
"output_colume": "primary_domain",
"output_value": "domain"
}
],
"bodyKeys": [
"websiteId"
],
"formatEN": "Update nginx conf [domain]",
"formatZH": "更新 nginx 配置 [domain]",
"paramKeys": []
}
}
},
"/settings/backup": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建备份账号",
"consumes": [
"application/json"
],
"tags": [
"Backup Account"
],
"summary": "Create backup account",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.BackupOperate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"type"
],
"formatEN": "create backup account [type]",
"formatZH": "创建备份账号 [type]",
"paramKeys": []
}
}
},
"/settings/backup/del": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除备份账号",
"consumes": [
"application/json"
],
"tags": [
"Backup Account"
],
"summary": "Delete backup account",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.BatchDeleteReq"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "backup_accounts",
"input_colume": "id",
"input_value": "ids",
"isList": true,
"output_colume": "type",
"output_value": "types"
}
],
"bodyKeys": [
"ids"
],
"formatEN": "delete backup account [types]",
"formatZH": "删除备份账号 [types]",
"paramKeys": []
}
}
},
"/settings/backup/record/del": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除备份记录",
"consumes": [
"application/json"
],
"tags": [
"Backup Account"
],
"summary": "Delete backup record",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.BatchDeleteReq"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "backup_records",
"input_colume": "id",
"input_value": "ids",
"isList": true,
"output_colume": "file_name",
"output_value": "files"
}
],
"bodyKeys": [
"ids"
],
"formatEN": "delete backup records [files]",
"formatZH": "删除备份记录 [files]",
"paramKeys": []
}
}
},
"/settings/backup/record/download": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "下载备份记录",
"consumes": [
"application/json"
],
"tags": [
"Backup Account"
],
"summary": "Download backup record",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.DownloadRecord"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"source",
"fileName"
],
"formatEN": "download backup records [source][fileName]",
"formatZH": "下载备份记录 [source][fileName]",
"paramKeys": []
}
}
},
"/settings/backup/record/search": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取备份记录列表分页",
"consumes": [
"application/json"
],
"tags": [
"Backup Account"
],
"summary": "Page backup records",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.RecordSearch"
}
}
],
"responses": {
"200": {
"description": ""
}
}
}
},
"/settings/backup/search": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取备份账号列表",
"tags": [
"Backup Account"
],
"summary": "List backup accounts",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
}
},
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 bucket 列表",
"consumes": [
"application/json"
],
"tags": [
"Backup Account"
],
"summary": "List buckets",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.ForBuckets"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
}
}
},
"/settings/backup/search/files": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取备份账号内文件列表",
"consumes": [
"application/json"
],
"tags": [
"Backup Account"
],
"summary": "List files from backup accounts",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.BackupSearchFile"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
}
}
},
"/settings/backup/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新备份账号信息",
"consumes": [
"application/json"
],
"tags": [
"Backup Account"
],
"summary": "Update backup account",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.BackupOperate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"type"
],
"formatEN": "update backup account [types]",
"formatZH": "更新备份账号 [types]",
"paramKeys": []
}
}
},
2023-01-30 21:05:20 +08:00
"/settings/basedir": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取安装根目录",
"tags": [
"System Setting"
],
"summary": "Load local backup dir",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
}
}
}
}
},
"/settings/expired/handle": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "重置过期系统登录密码",
"consumes": [
"application/json"
],
"tags": [
"System Setting"
],
"summary": "Reset system password expired",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.PasswordUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "reset an expired Password",
"formatZH": "重置过期密码",
"paramKeys": []
}
}
},
"/settings/mfa": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 mfa 信息",
"tags": [
"System Setting"
],
"summary": "Load mfa info",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/mfa.Otp"
}
}
}
}
},
"/settings/mfa/bind": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "Mfa 绑定",
"consumes": [
"application/json"
],
"tags": [
"System Setting"
],
"summary": "Bind mfa",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.MfaCredential"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "bind mfa",
"formatZH": "mfa 绑定",
"paramKeys": []
}
}
},
"/settings/monitor/clean": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "清空监控数据",
"tags": [
"System Setting"
],
"summary": "Clean monitor datas",
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "clean monitor datas",
"formatZH": "清空监控数据",
"paramKeys": []
}
}
},
"/settings/password/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新系统登录密码",
"consumes": [
"application/json"
],
"tags": [
"System Setting"
],
"summary": "Update system password",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.PasswordUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "update system password",
"formatZH": "修改系统密码",
"paramKeys": []
}
}
},
"/settings/port/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新系统端口",
"consumes": [
"application/json"
],
"tags": [
"System Setting"
],
"summary": "Update system port",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.PortUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"serverPort"
],
"formatEN": "update system port =\u003e [serverPort]",
"formatZH": "修改系统端口 =\u003e [serverPort]",
"paramKeys": []
}
}
},
"/settings/search": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "加载系统配置信息",
"tags": [
"System Setting"
],
"summary": "Load system setting info",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.SettingInfo"
}
}
}
}
},
"/settings/search/available": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取系统可用状态",
"tags": [
"System Setting"
],
"summary": "Load system available status",
"responses": {
"200": {
"description": ""
}
}
}
},
"/settings/snapshot": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建系统快照",
"consumes": [
"application/json"
],
"tags": [
"System Setting"
],
2023-02-13 15:48:18 +08:00
"summary": "Create system snapshot",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SnapshotCreate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"from",
"description"
],
"formatEN": "Create system backup [description] to [from]",
"formatZH": "创建系统快照 [description] 到 [from]",
"paramKeys": []
}
}
},
"/settings/snapshot/del": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除系统快照",
"consumes": [
"application/json"
],
"tags": [
"System Setting"
],
"summary": "Delete system backup",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.BatchDeleteReq"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "snapshots",
"input_colume": "id",
"input_value": "ids",
"isList": true,
"output_colume": "name",
"output_value": "name"
}
],
"bodyKeys": [
"ids"
],
"formatEN": "Delete system backup [name]",
"formatZH": "删除系统快照 [name]",
"paramKeys": []
}
}
},
2023-02-13 15:48:18 +08:00
"/settings/snapshot/description/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新快照描述信息",
"consumes": [
"application/json"
],
"tags": [
"System Setting"
],
"summary": "Update snapshot description",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.UpdateDescription"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "snapshots",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
"bodyKeys": [
"id",
"description"
],
"formatEN": "The description of the snapshot [name] is modified =\u003e [description]",
"formatZH": "快照 [name] 描述信息修改 [description]",
"paramKeys": []
}
}
},
"/settings/snapshot/import": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "导入已有快照",
"consumes": [
"application/json"
],
"tags": [
"System Setting"
],
"summary": "Import system snapshot",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SnapshotImport"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"from",
"names"
],
"formatEN": "Sync system snapshots [names] from [from]",
"formatZH": "从 [from] 同步系统快照 [names]",
"paramKeys": []
}
}
},
"/settings/snapshot/recover": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "从系统快照恢复",
"consumes": [
"application/json"
],
"tags": [
"System Setting"
],
"summary": "Recover system backup",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SnapshotRecover"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "snapshots",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
"bodyKeys": [
"id"
],
"formatEN": "Recover from system backup [name]",
"formatZH": "从系统快照 [name] 恢复",
"paramKeys": []
}
}
},
"/settings/snapshot/rollback": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "从系统快照回滚",
"consumes": [
"application/json"
],
"tags": [
"System Setting"
],
"summary": "Rollback system backup",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SnapshotRecover"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "snapshots",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
"bodyKeys": [
"id"
],
"formatEN": "Rollback from system backup [name]",
"formatZH": "从系统快照 [name] 回滚",
"paramKeys": []
}
}
},
"/settings/snapshot/search": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取系统快照列表分页",
"consumes": [
"application/json"
],
"tags": [
"System Setting"
],
"summary": "Page system snapshot",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
2023-02-10 15:55:56 +08:00
"$ref": "#/definitions/dto.SearchWithPage"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
}
}
}
},
"/settings/time/sync": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "系统时间同步",
"tags": [
"System Setting"
],
"summary": "Sync system time",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "string"
}
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [],
"formatEN": "sync system time",
"formatZH": "系统时间同步",
"paramKeys": []
}
}
},
"/settings/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新系统配置",
"consumes": [
"application/json"
],
"tags": [
"System Setting"
],
"summary": "Update system setting",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.SettingUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"key",
"value"
],
"formatEN": "update system setting [key] =\u003e [value]",
"formatZH": "修改系统配置 [key] =\u003e [value]",
"paramKeys": []
}
}
},
"/settings/upgrade": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
2023-02-07 18:48:32 +08:00
"description": "系统更新信息",
"tags": [
"System Setting"
],
"summary": "Load upgrade info",
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.UpgradeInfo"
}
}
}
2023-01-30 21:05:20 +08:00
},
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "系统更新",
"consumes": [
"application/json"
],
"tags": [
"System Setting"
],
"summary": "Upgrade",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.Upgrade"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"version"
],
"formatEN": "upgrade service =\u003e [version]",
"formatZH": "更新系统 =\u003e [version]",
"paramKeys": []
}
}
},
"/websites": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建网站",
"consumes": [
"application/json"
],
"tags": [
"Website"
],
"summary": "Create website",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteCreate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"primaryDomain"
],
"formatEN": "Create website [primaryDomain]",
"formatZH": "创建网站 [primaryDomain]",
"paramKeys": []
}
}
},
"/websites/:id": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "通过 id 查询网站",
"consumes": [
"application/json"
],
"tags": [
"Website"
],
"summary": "Search website by id",
"parameters": [
{
"type": "integer",
"description": "request",
"name": "id",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.WebsiteDTO"
}
}
}
}
},
"/websites/:id/https": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 https 配置",
"consumes": [
"application/json"
],
"tags": [
"Website HTTPS"
],
"summary": "Load https conf",
"parameters": [
{
"type": "integer",
"description": "request",
"name": "id",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.WebsiteHTTPS"
}
}
}
},
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新 https 配置",
"consumes": [
"application/json"
],
"tags": [
"Website HTTPS"
],
"summary": "Update https conf",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteHTTPSOp"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.WebsiteHTTPS"
}
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "websites",
"input_colume": "id",
"input_value": "websiteId",
"isList": false,
"output_colume": "primary_domain",
"output_value": "domain"
}
],
"bodyKeys": [
"websiteId"
],
"formatEN": "Update website https [domain] conf",
"formatZH": "更新网站 [domain] https 配置",
"paramKeys": []
}
}
},
"/websites/:id/nginx": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "通过 id 查询网站 nginx",
"consumes": [
"application/json"
],
"tags": [
"Website Nginx"
],
"summary": "Search website nginx by id",
"parameters": [
{
"type": "integer",
"description": "request",
"name": "id",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.FileInfo"
}
}
}
}
},
"/websites/acme": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建网站 acme",
"consumes": [
"application/json"
],
"tags": [
"Website Acme"
],
"summary": "Create website acme account",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteAcmeAccountCreate"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.WebsiteAcmeAccountDTO"
}
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"email"
],
"formatEN": "Create website acme [email]",
"formatZH": "创建网站 acme [email]",
"paramKeys": []
}
}
},
"/websites/acme/del": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除网站 acme",
"consumes": [
"application/json"
],
"tags": [
"Website Acme"
],
"summary": "Delete website acme account",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteResourceReq"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "website_acme_accounts",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "email",
"output_value": "email"
}
],
"bodyKeys": [
"id"
],
"formatEN": "Delete website acme [email]",
"formatZH": "删除网站 acme [email]",
"paramKeys": []
}
}
},
"/websites/acme/search": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取网站 acme 列表分页",
"consumes": [
"application/json"
],
"tags": [
"Website Acme"
],
"summary": "Page website acme accounts",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.PageInfo"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
}
}
}
},
"/websites/backup": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "备份网站",
"consumes": [
"application/json"
],
"tags": [
"Website"
],
"summary": "Backup website",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteResourceReq"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "websites",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "primary_domain",
"output_value": "domain"
}
],
"bodyKeys": [
"id"
],
"formatEN": "Backup website [domain]",
"formatZH": "备份网站 [domain]",
"paramKeys": []
}
}
},
"/websites/check": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "网站创建前检查",
"consumes": [
"application/json"
],
"tags": [
"Website"
],
"summary": "Check before create website",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteInstallCheckReq"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
}
}
},
"/websites/config": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取 nginx 配置",
"consumes": [
"application/json"
],
"tags": [
"Website Nginx"
],
"summary": "Load nginx conf",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.NginxScopeReq"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.WebsiteNginxConfig"
}
}
}
}
},
"/websites/config/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新 nginx 配置",
"consumes": [
"application/json"
],
"tags": [
"Website Nginx"
],
"summary": "Update nginx conf",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.NginxConfigUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "websites",
"input_colume": "id",
"input_value": "websiteId",
"isList": false,
"output_colume": "primary_domain",
"output_value": "domain"
}
],
"bodyKeys": [
"websiteId"
],
"formatEN": "Nginx conf update [domain]",
"formatZH": "nginx 配置修改 [domain]",
"paramKeys": []
}
}
},
"/websites/default/server": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "操作网站日志",
"consumes": [
"application/json"
],
"tags": [
"Website"
],
"summary": "Change default server",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteDefaultUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "websites",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "primary_domain",
"output_value": "domain"
}
],
"bodyKeys": [
"id",
"operate"
],
"formatEN": "Change default server =\u003e [domain]",
"formatZH": "修改默认 server =\u003e [domain]",
"paramKeys": []
}
}
},
"/websites/del": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除网站",
"consumes": [
"application/json"
],
"tags": [
"Website"
],
"summary": "Delete website",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteDelete"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "websites",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "primary_domain",
"output_value": "domain"
}
],
"bodyKeys": [
"id"
],
"formatEN": "Delete website [domain]",
"formatZH": "删除网站 [domain]",
"paramKeys": []
}
}
},
"/websites/dns": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建网站 dns",
"consumes": [
"application/json"
],
"tags": [
"Website DNS"
],
"summary": "Create website dns account",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteDnsAccountCreate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name"
],
"formatEN": "Create website dns [name]",
"formatZH": "创建网站 dns [name]",
"paramKeys": []
}
}
},
"/websites/dns/del": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除网站 dns",
"consumes": [
"application/json"
],
"tags": [
"Website DNS"
],
"summary": "Delete website dns account",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteResourceReq"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "website_dns_accounts",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
"bodyKeys": [
"id"
],
"formatEN": "Delete website dns [name]",
"formatZH": "删除网站 dns [name]",
"paramKeys": []
}
}
},
"/websites/dns/search": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取网站 dns 列表分页",
"consumes": [
"application/json"
],
"tags": [
"Website DNS"
],
"summary": "Page website dns accounts",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/dto.PageInfo"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
}
}
}
},
"/websites/dns/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新网站 dns",
"consumes": [
"application/json"
],
"tags": [
"Website DNS"
],
"summary": "Update website dns account",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteDnsAccountUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name"
],
"formatEN": "Update website dns [name]",
"formatZH": "更新网站 dns [name]",
"paramKeys": []
}
}
},
"/websites/domains": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建网站域名",
"consumes": [
"application/json"
],
"tags": [
"Website Domain"
],
"summary": "Create website domain",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteDomainCreate"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/model.WebsiteDomain"
}
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"domain"
],
"formatEN": "Create domain [domain]",
"formatZH": "创建域名 [domain]",
"paramKeys": []
}
}
},
"/websites/domains/:websiteId": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "通过网站 id 查询域名",
"consumes": [
"application/json"
],
"tags": [
"Website Domain"
],
"summary": "Search website domains by websiteId",
"parameters": [
{
"type": "integer",
"description": "request",
"name": "websiteId",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
}
}
},
"/websites/domains/del": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除网站域名",
"consumes": [
"application/json"
],
"tags": [
"Website Domain"
],
"summary": "Delete website domain",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteDomainDelete"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "website_domains",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "domain",
"output_value": "domain"
}
],
"bodyKeys": [
"id"
],
"formatEN": "Delete domain [domain]",
"formatZH": "删除域名 [domain]",
"paramKeys": []
}
}
},
"/websites/groups": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取网站组",
"tags": [
"Website Group"
],
"summary": "List website groups",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
}
},
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建网站组",
"consumes": [
"application/json"
],
"tags": [
"Website Group"
],
"summary": "Create website group",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteGroupCreate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name"
],
"formatEN": "Create website groups [name]",
"formatZH": "创建网站组 [name]",
"paramKeys": []
}
}
},
"/websites/groups/del": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除网站组",
"consumes": [
"application/json"
],
"tags": [
"Website Group"
],
"summary": "Delete website group",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteResourceReq"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "website_groups",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "name",
"output_value": "name"
}
],
"bodyKeys": [
"id"
],
"formatEN": "Delete website group [name]",
"formatZH": "删除网站组 [name]",
"paramKeys": []
}
}
},
"/websites/groups/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新网站组",
"consumes": [
"application/json"
],
"tags": [
"Website Group"
],
"summary": "Update website group",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteGroupUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"name"
],
"formatEN": "Update website groups [name]",
"formatZH": "更新网站组 [name]",
"paramKeys": []
}
}
},
"/websites/list": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取网站列表",
"tags": [
"Website"
],
"summary": "List websites",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
}
}
},
"/websites/log": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "操作网站日志",
"consumes": [
"application/json"
],
"tags": [
"Website"
],
"summary": "Operate website log",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteLogReq"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.WebsiteLog"
}
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "websites",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "primary_domain",
"output_value": "domain"
}
],
"bodyKeys": [
"id",
"operate"
],
"formatEN": "[domain][operate] logs",
"formatZH": "[domain][operate] 日志",
"paramKeys": []
}
}
},
"/websites/nginx/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新 网站 nginx 配置",
"consumes": [
"application/json"
],
"tags": [
"Website Nginx"
],
"summary": "Update website nginx conf",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteNginxUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "websites",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "primary_domain",
"output_value": "domain"
}
],
"bodyKeys": [
"id"
],
"formatEN": "[domain] Nginx conf update",
"formatZH": "[domain] Nginx 配置修改",
"paramKeys": []
}
}
},
"/websites/operate": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "操作网站",
"consumes": [
"application/json"
],
"tags": [
"Website"
],
"summary": "Operate website",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteOp"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "websites",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "primary_domain",
"output_value": "domain"
}
],
"bodyKeys": [
"id",
"operate"
],
"formatEN": "[operate] website [domain]",
"formatZH": "[operate] 网站 [domain]",
"paramKeys": []
}
}
},
"/websites/options": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取网站列表",
"tags": [
"Website"
],
"summary": "List website names",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
}
}
},
"/websites/recover": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "从备份恢复网站",
"consumes": [
"application/json"
],
"tags": [
"Website"
],
"summary": "Recover website",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteRecover"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"websiteName",
"backupName"
],
"formatEN": "[websiteName] recover from backups [backupName]",
"formatZH": "[websiteName] 从备份恢复 [backupName]",
"paramKeys": []
}
}
},
"/websites/recover/byupload": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "从上传恢复网站",
"consumes": [
"application/json"
],
"tags": [
"Website"
],
"summary": "Recover website by upload",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteRecoverByFile"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"websiteName",
"fileDir",
"fileName"
],
"formatEN": "[websiteName] recover from uploads [fileDir]/[fileName]",
"formatZH": "[websiteName] 从上传恢复 [fileDir]/[fileName]",
"paramKeys": []
}
}
},
"/websites/search": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取网站列表分页",
"consumes": [
"application/json"
],
"tags": [
"Website"
],
"summary": "Page websites",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteSearch"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/dto.PageResult"
}
}
}
}
},
"/websites/ssl": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "创建网站 ssl",
"consumes": [
"application/json"
],
"tags": [
"Website SSL"
],
"summary": "Create website ssl",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteSSLCreate"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/request.WebsiteSSLCreate"
}
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"primaryDomain"
],
"formatEN": "Create website ssl [primaryDomain]",
"formatZH": "创建网站 ssl [primaryDomain]",
"paramKeys": []
}
}
},
"/websites/ssl/:id": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "通过 id 查询 ssl",
"consumes": [
"application/json"
],
"tags": [
"Website SSL"
],
"summary": "Search website ssl by id",
"parameters": [
{
"type": "integer",
"description": "request",
"name": "id",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": ""
}
}
}
},
"/websites/ssl/del": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "删除网站 ssl",
"consumes": [
"application/json"
],
"tags": [
"Website SSL"
],
"summary": "Delete website ssl",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteResourceReq"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "website_ssls",
"input_colume": "id",
"input_value": "id",
"isList": false,
"output_colume": "primary_domain",
"output_value": "domain"
}
],
"bodyKeys": [
"id"
],
"formatEN": "Delete ssl [domain]",
"formatZH": "删除 ssl [domain]",
"paramKeys": []
}
}
},
"/websites/ssl/renew": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "重置网站 ssl",
"consumes": [
"application/json"
],
"tags": [
"Website SSL"
],
"summary": "Reset website ssl",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteSSLRenew"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "website_ssls",
"input_colume": "id",
"input_value": "SSLId",
"isList": false,
"output_colume": "primary_domain",
"output_value": "domain"
}
],
"bodyKeys": [
"SSLId"
],
"formatEN": "Renew ssl [domain]",
"formatZH": "重置 ssl [domain]",
"paramKeys": []
}
}
},
"/websites/ssl/resolve": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "解析网站 ssl",
"consumes": [
"application/json"
],
"tags": [
"Website SSL"
],
"summary": "Resolve website ssl",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteDNSReq"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "anrry"
}
}
}
}
},
"/websites/ssl/search": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取网站 ssl 列表分页",
"consumes": [
"application/json"
],
"tags": [
"Website SSL"
],
"summary": "Page website ssl",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteSSLSearch"
}
}
],
"responses": {
"200": {
"description": ""
}
}
}
},
"/websites/ssl/website/:websiteId": {
"get": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "通过网站 id 查询 ssl",
"consumes": [
"application/json"
],
"tags": [
"Website SSL"
],
"summary": "Search website ssl by website id",
"parameters": [
{
"type": "integer",
"description": "request",
"name": "websiteId",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"description": ""
}
}
}
},
"/websites/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新网站",
"consumes": [
"application/json"
],
"tags": [
"Website"
],
"summary": "Update website",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [],
"bodyKeys": [
"primaryDomain"
],
"formatEN": "Update website [primaryDomain]",
"formatZH": "更新网站 [primaryDomain]",
"paramKeys": []
}
}
},
"/websites/waf/config": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取网站 waf 配置",
"consumes": [
"application/json"
],
"tags": [
"Website WAF"
],
"summary": "Load websit waf conf",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteWafReq"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/response.WebsiteWafConfig"
}
}
}
}
},
"/websites/waf/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新 网站 waf 配置",
"consumes": [
"application/json"
],
"tags": [
"Website WAF"
],
"summary": "Update website waf conf",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.WebsiteWafUpdate"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "websites",
"input_colume": "id",
"input_value": "websiteId",
"isList": false,
"output_colume": "primary_domain",
"output_value": "domain"
}
],
"bodyKeys": [
"websiteId"
],
"formatEN": "WAF conf update [domain]",
"formatZH": "WAF 配置修改 [domain]",
"paramKeys": []
}
}
}
},
"definitions": {
"dto.BackupDB": {
"type": "object",
"required": [
"dbName",
"mysqlName"
],
"properties": {
"dbName": {
"type": "string"
},
"mysqlName": {
"type": "string"
}
}
},
"dto.BackupOperate": {
"type": "object",
"required": [
"type",
"vars"
],
"properties": {
"accessKey": {
"type": "string"
},
"bucket": {
"type": "string"
},
"credential": {
"type": "string"
},
"id": {
"type": "integer"
},
"type": {
"type": "string"
},
"vars": {
"type": "string"
}
}
},
2023-02-13 15:48:18 +08:00
"dto.BackupSearchFile": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
}
}
},
"dto.BatchDelete": {
"type": "object",
"required": [
"names"
],
"properties": {
"names": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"dto.BatchDeleteReq": {
"type": "object",
"required": [
"ids"
],
"properties": {
"ids": {
"type": "array",
"items": {
"type": "integer"
}
}
}
},
"dto.CaptchaResponse": {
"type": "object",
"properties": {
"captchaID": {
"type": "string"
},
"imagePath": {
"type": "string"
}
}
},
"dto.ChangeDBInfo": {
"type": "object",
"required": [
"value"
],
"properties": {
"id": {
"type": "integer"
},
"value": {
"type": "string"
}
}
},
"dto.CleanLog": {
"type": "object",
"required": [
"logType"
],
"properties": {
"logType": {
"type": "string",
"enum": [
"login",
"operation"
]
}
}
},
"dto.CommandInfo": {
"type": "object",
"properties": {
"command": {
"type": "string"
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
}
}
},
"dto.CommandOperate": {
"type": "object",
"required": [
"command",
"name"
],
"properties": {
"command": {
"type": "string"
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
}
}
},
"dto.ComposeCreate": {
"type": "object",
"required": [
"from",
"name"
],
"properties": {
"file": {
"type": "string"
},
"from": {
"type": "string",
"enum": [
"edit",
"path",
"template"
]
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"template": {
"type": "integer"
}
}
},
"dto.ComposeOperation": {
"type": "object",
"required": [
"name",
"operation",
"path"
],
"properties": {
"name": {
"type": "string"
},
"operation": {
"type": "string",
"enum": [
"start",
"stop",
"down"
]
},
"path": {
"type": "string"
}
}
},
"dto.ComposeTemplateCreate": {
"type": "object",
"required": [
"name"
],
"properties": {
"content": {
"type": "string"
},
"description": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"dto.ComposeTemplateUpdate": {
"type": "object",
"properties": {
"content": {
"type": "string"
},
"description": {
"type": "string"
},
"id": {
"type": "integer"
}
}
},
"dto.ComposeUpdate": {
"type": "object",
"required": [
"content",
"name",
"path"
],
"properties": {
"content": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
}
}
},
"dto.ContainerCreate": {
"type": "object",
"properties": {
"autoRemove": {
"type": "boolean"
},
"cmd": {
"type": "array",
"items": {
"type": "string"
}
},
"env": {
"type": "array",
"items": {
"type": "string"
}
},
"exposedPorts": {
"type": "array",
"items": {
"$ref": "#/definitions/dto.PortHelper"
}
},
"image": {
"type": "string"
},
"labels": {
"type": "array",
"items": {
"type": "string"
}
},
"memory": {
"type": "integer"
},
"name": {
"type": "string"
},
"nanoCPUs": {
"type": "integer"
},
"publishAllPorts": {
"type": "boolean"
},
"restartPolicy": {
"type": "string"
},
"volumes": {
"type": "array",
"items": {
"$ref": "#/definitions/dto.VolumeHelper"
}
}
}
},
"dto.ContainerLog": {
"type": "object",
"required": [
"containerID",
"mode"
],
"properties": {
"containerID": {
"type": "string"
},
"mode": {
"type": "string"
}
}
},
"dto.ContainerOperation": {
"type": "object",
"required": [
"name",
"operation"
],
"properties": {
"name": {
"type": "string"
},
"newName": {
"type": "string"
},
"operation": {
"type": "string",
"enum": [
"start",
"stop",
"restart",
"kill",
"pause",
"unpause",
"rename",
"remove"
]
}
}
},
"dto.ContainterStats": {
"type": "object",
"properties": {
"cache": {
"type": "number"
},
"cpuPercent": {
"type": "number"
},
"ioRead": {
"type": "number"
},
"ioWrite": {
"type": "number"
},
"memory": {
"type": "number"
},
"networkRX": {
"type": "number"
},
"networkTX": {
"type": "number"
},
"shotTime": {
"type": "string"
}
}
},
"dto.CronjobCreate": {
"type": "object",
"required": [
"name",
"specType",
"type"
],
"properties": {
"day": {
"type": "integer",
"maximum": 31,
"minimum": 1
},
"dbName": {
"type": "string"
},
"exclusionRules": {
"type": "string"
},
"hour": {
"type": "integer",
"maximum": 23,
"minimum": 0
},
"keepLocal": {
"type": "boolean"
},
"minute": {
"type": "integer",
"maximum": 59,
"minimum": 0
},
"name": {
"type": "string"
},
"retainCopies": {
"type": "integer",
"minimum": 1
},
"script": {
"type": "string"
},
"sourceDir": {
"type": "string"
},
"specType": {
"type": "string"
},
"targetDirID": {
"type": "integer"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
},
"website": {
"type": "string"
},
"week": {
"type": "integer",
"maximum": 7,
"minimum": 1
}
}
},
"dto.CronjobDownload": {
"type": "object",
"required": [
"backupAccountID",
"recordID"
],
"properties": {
"backupAccountID": {
"type": "integer"
},
"recordID": {
"type": "integer"
}
}
},
"dto.CronjobUpdate": {
"type": "object",
"required": [
"id",
"name",
"specType"
],
"properties": {
"day": {
"type": "integer",
"maximum": 31,
"minimum": 1
},
"dbName": {
"type": "string"
},
"exclusionRules": {
"type": "string"
},
"hour": {
"type": "integer",
"maximum": 23,
"minimum": 0
},
"id": {
"type": "integer"
},
"keepLocal": {
"type": "boolean"
},
"minute": {
"type": "integer",
"maximum": 59,
"minimum": 0
},
"name": {
"type": "string"
},
"retainCopies": {
"type": "integer",
"minimum": 1
},
"script": {
"type": "string"
},
"sourceDir": {
"type": "string"
},
"specType": {
"type": "string"
},
"targetDirID": {
"type": "integer"
},
"url": {
"type": "string"
},
"website": {
"type": "string"
},
"week": {
"type": "integer",
"maximum": 7,
"minimum": 1
}
}
},
"dto.CronjobUpdateStatus": {
"type": "object",
"required": [
"id",
"status"
],
"properties": {
"id": {
"type": "integer"
},
"status": {
"type": "string"
}
}
},
"dto.DBBaseInfo": {
"type": "object",
"properties": {
"containerName": {
"type": "string"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
}
}
},
"dto.DaemonJsonConf": {
"type": "object",
"properties": {
"cgroupDriver": {
"type": "string"
},
"insecureRegistries": {
"type": "array",
"items": {
"type": "string"
}
},
"liveRestore": {
"type": "boolean"
},
"registryMirrors": {
"type": "array",
"items": {
"type": "string"
}
},
"status": {
"type": "string"
},
"version": {
"type": "string"
}
}
},
"dto.DaemonJsonUpdateByFile": {
"type": "object",
"required": [
"path"
],
"properties": {
"file": {
"type": "string"
},
"path": {
"type": "string"
}
}
},
"dto.DashboardBase": {
"type": "object",
"properties": {
"appInstalldNumber": {
"type": "integer"
},
"cpuCores": {
"type": "integer"
},
"cpuLogicalCores": {
"type": "integer"
},
"cpuModelName": {
"type": "string"
},
"cronjobNumber": {
"type": "integer"
},
"currentInfo": {
"$ref": "#/definitions/dto.DashboardCurrent"
},
"databaseNumber": {
"type": "integer"
},
"dateeaseID": {
"type": "integer"
},
"haloID": {
"type": "integer"
},
"hostname": {
"type": "string"
},
"jumpserverID": {
"type": "integer"
},
"kernelArch": {
"type": "string"
},
"kernelVersion": {
"type": "string"
},
"kubeoperatorID": {
"type": "integer"
},
"kubepiID": {
"type": "integer"
},
"metersphereID": {
"type": "integer"
},
"os": {
"type": "string"
},
"platform": {
"type": "string"
},
"platformFamily": {
"type": "string"
},
"platformVersion": {
"type": "string"
},
"virtualizationSystem": {
"type": "string"
},
"websiteNumber": {
"type": "integer"
}
}
},
"dto.DashboardCurrent": {
"type": "object",
"properties": {
"MemoryUsedPercent": {
"type": "number"
},
"cpuPercent": {
"type": "array",
"items": {
"type": "number"
}
},
"cpuTotal": {
"type": "integer"
},
"cpuUsed": {
"type": "number"
},
"cpuUsedPercent": {
"type": "number"
},
"free": {
"type": "integer"
},
"inodesFree": {
"type": "integer"
},
"inodesTotal": {
"type": "integer"
},
"inodesUsed": {
"type": "integer"
},
"inodesUsedPercent": {
"type": "number"
},
"ioCount": {
"type": "integer"
},
"ioReadBytes": {
"type": "integer"
},
"ioTime": {
"type": "integer"
},
"ioWriteBytes": {
"type": "integer"
},
"load1": {
"type": "number"
},
"load15": {
"type": "number"
},
"load5": {
"type": "number"
},
"loadUsagePercent": {
"type": "number"
},
"memoryAvailable": {
"type": "integer"
},
"memoryTotal": {
"type": "integer"
},
"memoryUsed": {
"type": "integer"
},
"netBytesRecv": {
"type": "integer"
},
"netBytesSent": {
"type": "integer"
},
"procs": {
"type": "integer"
},
"shotTime": {
"type": "string"
},
"timeSinceUptime": {
"type": "string"
},
"total": {
"type": "integer"
},
"uptime": {
"type": "integer"
},
"used": {
"type": "integer"
},
"usedPercent": {
"type": "number"
}
}
},
"dto.DockerOperation": {
"type": "object",
"required": [
"operation"
],
"properties": {
"operation": {
"type": "string",
"enum": [
"start",
"restart",
"stop"
]
}
}
},
"dto.DownloadRecord": {
"type": "object",
"required": [
"fileDir",
"fileName",
"source"
],
"properties": {
"fileDir": {
"type": "string"
},
"fileName": {
"type": "string"
},
"source": {
"type": "string",
"enum": [
"OSS",
"S3",
"SFTP",
"MINIO",
"LOCAL"
]
}
}
},
"dto.FilePath": {
"type": "object",
"required": [
"path"
],
"properties": {
"path": {
"type": "string"
}
}
},
"dto.ForBuckets": {
"type": "object",
"required": [
"credential",
"type",
"vars"
],
"properties": {
"accessKey": {
"type": "string"
},
"credential": {
"type": "string"
},
"type": {
"type": "string"
},
"vars": {
"type": "string"
}
}
},
"dto.GroupOperate": {
"type": "object",
"required": [
"name",
"type"
],
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
}
}
},
"dto.GroupSearch": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
}
}
},
"dto.HostConnTest": {
"type": "object",
"required": [
"addr",
"port",
"user"
],
"properties": {
"addr": {
"type": "string"
},
"authMode": {
"type": "string",
"enum": [
"password",
"key"
]
},
"password": {
"type": "string"
},
"port": {
"type": "integer",
"maximum": 65535,
"minimum": 1
},
"privateKey": {
"type": "string"
},
"user": {
"type": "string"
}
}
},
"dto.HostInfo": {
"type": "object",
"properties": {
"addr": {
"type": "string"
},
"authMode": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"description": {
"type": "string"
},
"groupBelong": {
"type": "string"
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"user": {
"type": "string"
}
}
},
"dto.HostOperate": {
"type": "object",
"required": [
"addr",
"groupBelong",
"port",
"user"
],
"properties": {
"addr": {
"type": "string"
},
"authMode": {
"type": "string",
"enum": [
"password",
"key"
]
},
"description": {
"type": "string"
},
"groupBelong": {
"type": "string"
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"password": {
"type": "string"
},
"port": {
"type": "integer",
"maximum": 65535,
"minimum": 1
},
"privateKey": {
"type": "string"
},
"user": {
"type": "string"
}
}
},
"dto.ImageBuild": {
"type": "object",
"required": [
"dockerfile",
"from",
"name"
],
"properties": {
"dockerfile": {
"type": "string"
},
"from": {
"type": "string"
},
"name": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"dto.ImageLoad": {
"type": "object",
"required": [
"path"
],
"properties": {
"path": {
"type": "string"
}
}
},
"dto.ImagePull": {
"type": "object",
"required": [
"imageName"
],
"properties": {
"imageName": {
"type": "string"
},
"repoID": {
"type": "integer"
}
}
},
"dto.ImagePush": {
"type": "object",
"required": [
"name",
"repoID",
"tagName"
],
"properties": {
"name": {
"type": "string"
},
"repoID": {
"type": "integer"
},
"tagName": {
"type": "string"
}
}
},
"dto.ImageRepoCreate": {
"type": "object",
"required": [
"name"
],
"properties": {
"auth": {
"type": "boolean"
},
"downloadUrl": {
"type": "string"
},
"name": {
"type": "string"
},
"password": {
"type": "string"
},
"protocol": {
"type": "string"
},
"username": {
"type": "string"
}
}
},
"dto.ImageRepoDelete": {
"type": "object",
"required": [
"ids"
],
"properties": {
"deleteInsecure": {
"type": "boolean"
},
"ids": {
"type": "array",
"items": {
"type": "integer"
}
}
}
},
"dto.ImageRepoUpdate": {
"type": "object",
"properties": {
"auth": {
"type": "boolean"
},
"downloadUrl": {
"type": "string"
},
"id": {
"type": "integer"
},
"password": {
"type": "string"
},
"protocol": {
"type": "string"
},
"username": {
"type": "string"
}
}
},
"dto.ImageSave": {
"type": "object",
"required": [
"name",
"path",
"tagName"
],
"properties": {
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"tagName": {
"type": "string"
}
}
},
"dto.ImageTag": {
"type": "object",
"required": [
"sourceID",
"targetName"
],
"properties": {
"repoID": {
"type": "integer"
},
"sourceID": {
"type": "string"
},
"targetName": {
"type": "string"
}
}
},
"dto.InitUser": {
"type": "object",
"required": [
"name",
"password"
],
"properties": {
"name": {
"type": "string"
},
"password": {
"type": "string"
}
}
},
"dto.InspectReq": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"type": {
"type": "string"
}
}
},
"dto.Login": {
"type": "object",
"required": [
"name",
"password"
],
"properties": {
"authMethod": {
"type": "string"
},
"captcha": {
"type": "string"
},
"captchaID": {
"type": "string"
},
"name": {
"type": "string"
},
"password": {
"type": "string"
}
}
},
"dto.MFALogin": {
"type": "object",
"required": [
"name",
"password",
"secret"
],
"properties": {
"authMethod": {
"type": "string"
},
"code": {
"type": "string"
},
"name": {
"type": "string"
},
"password": {
"type": "string"
},
"secret": {
"type": "string"
}
}
},
"dto.MfaCredential": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"secret": {
"type": "string"
}
}
},
"dto.MysqlConfUpdateByFile": {
"type": "object",
"required": [
"mysqlName"
],
"properties": {
"file": {
"type": "string"
},
"mysqlName": {
"type": "string"
}
}
},
"dto.MysqlDBCreate": {
"type": "object",
"required": [
"format",
"name",
"password",
"permission",
"username"
],
"properties": {
"description": {
"type": "string"
},
"format": {
"type": "string",
"enum": [
"utf8mb4",
"utf8",
"gbk",
"big5"
]
},
"name": {
"type": "string"
},
"password": {
"type": "string"
},
"permission": {
"type": "string"
},
"username": {
"type": "string"
}
}
},
"dto.MysqlDBDelete": {
"type": "object",
"required": [
"id"
],
"properties": {
"deleteBackup": {
"type": "boolean"
},
"forceDelete": {
"type": "boolean"
},
"id": {
"type": "integer"
}
}
},
"dto.MysqlStatus": {
"type": "object",
"properties": {
"Aborted_clients": {
"type": "string"
},
"Aborted_connects": {
"type": "string"
},
"Bytes_received": {
"type": "string"
},
"Bytes_sent": {
"type": "string"
},
"Com_commit": {
"type": "string"
},
"Com_rollback": {
"type": "string"
},
"Connections": {
"type": "string"
},
"Created_tmp_disk_tables": {
"type": "string"
},
"Created_tmp_tables": {
"type": "string"
},
"File": {
"type": "string"
},
"Innodb_buffer_pool_pages_dirty": {
"type": "string"
},
"Innodb_buffer_pool_read_requests": {
"type": "string"
},
"Innodb_buffer_pool_reads": {
"type": "string"
},
"Key_read_requests": {
"type": "string"
},
"Key_reads": {
"type": "string"
},
"Key_write_requests": {
"type": "string"
},
"Key_writes": {
"type": "string"
},
"Max_used_connections": {
"type": "string"
},
"Open_tables": {
"type": "string"
},
"Opened_files": {
"type": "string"
},
"Opened_tables": {
"type": "string"
},
"Position": {
"type": "string"
},
"Qcache_hits": {
"type": "string"
},
"Qcache_inserts": {
"type": "string"
},
"Questions": {
"type": "string"
},
"Run": {
"type": "string"
},
"Select_full_join": {
"type": "string"
},
"Select_range_check": {
"type": "string"
},
"Sort_merge_passes": {
"type": "string"
},
"Table_locks_waited": {
"type": "string"
},
"Threads_cached": {
"type": "string"
},
"Threads_connected": {
"type": "string"
},
"Threads_created": {
"type": "string"
},
"Threads_running": {
"type": "string"
},
"Uptime": {
"type": "string"
}
}
},
"dto.MysqlVariables": {
"type": "object",
"properties": {
"binlog_cache_size": {
"type": "string"
},
"innodb_buffer_pool_size": {
"type": "string"
},
"innodb_log_buffer_size": {
"type": "string"
},
"join_buffer_size": {
"type": "string"
},
"key_buffer_size": {
"type": "string"
},
"long_query_time": {
"type": "string"
},
"max_connections": {
"type": "string"
},
"max_heap_table_size": {
"type": "string"
},
"query_cache_size": {
"type": "string"
},
"query_cache_type": {
"type": "string"
},
"read_buffer_size": {
"type": "string"
},
"read_rnd_buffer_size": {
"type": "string"
},
"slow_query_log": {
"type": "string"
},
"sort_buffer_size": {
"type": "string"
},
"table_open_cache": {
"type": "string"
},
"thread_cache_size": {
"type": "string"
},
"thread_stack": {
"type": "string"
},
"tmp_table_size": {
"type": "string"
}
}
},
"dto.MysqlVariablesUpdate": {
"type": "object",
"properties": {
"param": {
"type": "string"
},
"value": {}
}
},
"dto.NetworkCreat": {
"type": "object",
"properties": {
"driver": {
"type": "string"
},
"gateway": {
"type": "string"
},
"ipRange": {
"type": "string"
},
"labels": {
"type": "array",
"items": {
"type": "string"
}
},
"name": {
"type": "string"
},
"options": {
"type": "array",
"items": {
"type": "string"
}
},
"subnet": {
"type": "string"
}
}
},
"dto.OperateByID": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "integer"
}
}
},
"dto.PageContainer": {
"type": "object",
"required": [
"page",
"pageSize"
],
"properties": {
"filters": {
"type": "string"
},
2023-02-07 18:48:32 +08:00
"name": {
"type": "string"
},
"page": {
"type": "integer"
},
"pageSize": {
"type": "integer"
}
}
},
"dto.PageInfo": {
"type": "object",
"required": [
"page",
"pageSize"
],
"properties": {
"page": {
"type": "integer"
},
"pageSize": {
"type": "integer"
}
}
},
"dto.PageResult": {
"type": "object",
"properties": {
"items": {},
"total": {
"type": "integer"
}
}
},
"dto.PasswordUpdate": {
"type": "object",
"required": [
"newPassword",
"oldPassword"
],
"properties": {
"newPassword": {
"type": "string"
},
"oldPassword": {
"type": "string"
}
}
},
"dto.PortHelper": {
"type": "object",
"properties": {
"containerPort": {
"type": "integer"
},
"hostPort": {
"type": "integer"
}
}
},
"dto.PortUpdate": {
"type": "object",
"required": [
"serverPort"
],
"properties": {
"serverPort": {
"type": "integer",
"maximum": 65535,
"minimum": 1
}
}
},
"dto.RecordSearch": {
"type": "object",
"required": [
"name",
"page",
"pageSize",
"type"
],
"properties": {
"detailName": {
"type": "string"
},
"name": {
"type": "string"
},
"page": {
"type": "integer"
},
"pageSize": {
"type": "integer"
},
"type": {
"type": "string"
}
}
},
"dto.RecoverDB": {
"type": "object",
"required": [
"backupName",
"dbName",
"mysqlName"
],
"properties": {
"backupName": {
"type": "string"
},
"dbName": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"mysqlName": {
"type": "string"
}
}
},
"dto.RedisConf": {
"type": "object",
"properties": {
"containerName": {
"type": "string"
},
"maxclients": {
"type": "string"
},
"maxmemory": {
"type": "string"
},
"name": {
"type": "string"
},
"port": {
"type": "integer"
},
"requirepass": {
"type": "string"
},
"timeout": {
"type": "string"
}
}
},
"dto.RedisConfPersistenceUpdate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"type"
2023-01-04 22:31:51 +08:00
],
"properties": {
"appendfsync": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"appendonly": {
"type": "string"
},
"save": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"aof",
"rbd"
]
}
}
},
"dto.RedisConfUpdate": {
"type": "object",
"properties": {
"maxclients": {
"type": "string"
},
"maxmemory": {
"type": "string"
},
"timeout": {
"type": "string"
}
}
},
"dto.RedisConfUpdateByFile": {
"type": "object",
"properties": {
"file": {
"type": "string"
},
"restartNow": {
"type": "boolean"
}
}
},
"dto.RedisPersistence": {
"type": "object",
"properties": {
"appendfsync": {
"type": "string"
},
"appendonly": {
"type": "string"
},
"save": {
"type": "string"
}
}
},
"dto.RedisStatus": {
"type": "object",
"properties": {
"connected_clients": {
"type": "string"
},
"instantaneous_ops_per_sec": {
"type": "string"
},
"keyspace_hits": {
"type": "string"
},
"keyspace_misses": {
"type": "string"
},
"latest_fork_usec": {
"type": "string"
},
"mem_fragmentation_ratio": {
"type": "string"
},
"tcp_port": {
"type": "string"
},
"total_commands_processed": {
"type": "string"
},
"total_connections_received": {
"type": "string"
},
"uptime_in_days": {
"type": "string"
},
"used_memory": {
"type": "string"
},
"used_memory_peak": {
"type": "string"
},
"used_memory_rss": {
"type": "string"
}
}
},
"dto.SearchForTree": {
"type": "object",
"properties": {
"info": {
"type": "string"
}
}
},
2023-02-07 18:48:32 +08:00
"dto.SearchLgLogWithPage": {
"type": "object",
"required": [
"page",
"pageSize"
],
"properties": {
"ip": {
"type": "string"
},
"page": {
"type": "integer"
},
"pageSize": {
"type": "integer"
},
"status": {
"type": "string"
}
}
},
"dto.SearchOpLogWithPage": {
"type": "object",
"required": [
"page",
"pageSize"
],
"properties": {
"operation": {
"type": "string"
},
"page": {
"type": "integer"
},
"pageSize": {
"type": "integer"
},
"source": {
"type": "string"
},
"status": {
"type": "string"
}
}
},
"dto.SearchRecord": {
"type": "object",
"required": [
"page",
"pageSize"
],
"properties": {
"cronjobID": {
"type": "integer"
},
"endTime": {
"type": "string"
},
"page": {
"type": "integer"
},
"pageSize": {
"type": "integer"
},
"startTime": {
"type": "string"
},
"status": {
"type": "string"
}
}
},
"dto.SearchWithPage": {
"type": "object",
"required": [
"page",
"pageSize"
],
"properties": {
"info": {
"type": "string"
},
"page": {
"type": "integer"
},
"pageSize": {
"type": "integer"
}
}
},
"dto.SettingInfo": {
"type": "object",
"properties": {
"appStoreVersion": {
"type": "string"
},
"complexityVerification": {
"type": "string"
},
"dingVars": {
"type": "string"
},
"email": {
"type": "string"
},
"emailVars": {
"type": "string"
},
"expirationDays": {
"type": "string"
},
"expirationTime": {
"type": "string"
},
"language": {
"type": "string"
},
"localTime": {
"type": "string"
},
"messageType": {
"type": "string"
},
"mfaSecret": {
"type": "string"
},
"mfaStatus": {
"type": "string"
},
"monitorStatus": {
"type": "string"
},
"monitorStoreDays": {
"type": "string"
},
"panelName": {
"type": "string"
},
"port": {
"type": "string"
},
"securityEntrance": {
"type": "string"
},
"serverPort": {
"type": "string"
},
"sessionTimeout": {
"type": "string"
},
"systemVersion": {
"type": "string"
},
"theme": {
"type": "string"
},
"userName": {
"type": "string"
},
"weChatVars": {
"type": "string"
}
}
},
"dto.SettingUpdate": {
"type": "object",
"required": [
"key"
],
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
}
},
"dto.SnapshotCreate": {
"type": "object",
"required": [
"from"
],
"properties": {
"description": {
"type": "string"
},
"from": {
"type": "string",
"enum": [
"OSS",
"S3",
"SFTP",
"MINIO"
]
}
}
},
2023-02-13 15:48:18 +08:00
"dto.SnapshotImport": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"from": {
"type": "string"
},
"names": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"dto.SnapshotRecover": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "integer"
},
"isNew": {
"type": "boolean"
},
"reDownload": {
"type": "boolean"
}
}
},
2023-02-13 15:48:18 +08:00
"dto.UpdateDescription": {
"type": "object",
"required": [
"id"
],
"properties": {
"description": {
"type": "string"
},
"id": {
"type": "integer"
}
}
},
2023-01-30 21:05:20 +08:00
"dto.Upgrade": {
"type": "object",
"properties": {
"version": {
"type": "string"
}
}
},
"dto.UpgradeInfo": {
"type": "object",
"properties": {
"newVersion": {
"type": "string"
},
"releaseNote": {
"type": "string"
}
}
},
"dto.UploadRecover": {
"type": "object",
"required": [
"dbName",
"mysqlName"
],
"properties": {
"dbName": {
"type": "string"
},
"fileDir": {
"type": "string"
},
"fileName": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"mysqlName": {
"type": "string"
}
}
},
"dto.UserLoginInfo": {
"type": "object",
"properties": {
"mfaSecret": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"mfaStatus": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"name": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"token": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"dto.VolumeCreat": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"driver": {
"type": "string"
},
"labels": {
"type": "array",
"items": {
"type": "string"
}
},
"name": {
"type": "string"
},
"options": {
2023-01-04 22:31:51 +08:00
"type": "array",
"items": {
"type": "string"
}
}
}
},
"dto.VolumeHelper": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"containerDir": {
"type": "string"
},
"mode": {
"type": "string"
},
"sourceDir": {
"type": "string"
}
}
},
"files.FileInfo": {
"type": "object",
"properties": {
"content": {
"type": "string"
},
"extension": {
"type": "string"
},
"group": {
"type": "string"
},
"isDir": {
"type": "boolean"
},
"isHidden": {
"type": "boolean"
},
"isSymlink": {
"type": "boolean"
},
"itemTotal": {
"type": "integer"
},
"items": {
2023-01-04 22:31:51 +08:00
"type": "array",
"items": {
"$ref": "#/definitions/files.FileInfo"
2023-01-04 22:31:51 +08:00
}
},
"linkPath": {
"type": "string"
},
"mimeType": {
"type": "string"
},
"modTime": {
"type": "string"
},
"mode": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"size": {
"type": "integer"
},
"type": {
"type": "string"
},
"updateTime": {
"type": "string"
},
"user": {
"type": "string"
2023-01-04 22:31:51 +08:00
}
}
},
"mfa.Otp": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"qrImage": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"secret": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"model.App": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"createdAt": {
"type": "string"
},
"crossVersionUpdate": {
"type": "boolean"
},
"document": {
"type": "string"
},
"github": {
"type": "string"
},
"icon": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"id": {
"type": "integer"
},
"key": {
"type": "string"
},
"limit": {
"type": "integer"
},
2023-01-04 22:31:51 +08:00
"name": {
"type": "string"
},
2023-02-10 15:55:56 +08:00
"recommend": {
"type": "integer"
},
"required": {
"type": "string"
},
"shortDesc": {
"type": "string"
},
"status": {
"type": "string"
},
"type": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"website": {
"type": "string"
2023-01-04 22:31:51 +08:00
}
}
},
"model.AppInstall": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"app": {
"$ref": "#/definitions/model.App"
},
"appDetailId": {
"type": "integer"
},
"appId": {
"type": "integer"
},
"backups": {
"type": "array",
"items": {
"$ref": "#/definitions/model.AppInstallBackup"
}
},
"containerName": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"description": {
"type": "string"
},
"dockerCompose": {
"type": "string"
},
"env": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"httpPort": {
"type": "integer"
},
"httpsPort": {
"type": "integer"
},
2023-01-04 22:31:51 +08:00
"id": {
"type": "integer"
},
"message": {
"type": "string"
},
2023-01-04 22:31:51 +08:00
"name": {
"type": "string"
},
"param": {
"type": "string"
},
"serviceName": {
"type": "string"
},
"status": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"version": {
"type": "string"
2023-01-04 22:31:51 +08:00
}
}
},
"model.AppInstallBackup": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"app_detail_id": {
"type": "integer"
},
"app_install_id": {
"type": "integer"
},
"createdAt": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"id": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"name": {
"type": "string"
},
"param": {
"type": "string"
},
2023-01-04 22:31:51 +08:00
"path": {
"type": "string"
},
"updatedAt": {
"type": "string"
2023-01-04 22:31:51 +08:00
}
}
},
"model.Tag": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"createdAt": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"id": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"updatedAt": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"model.Website": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"accessLog": {
"type": "boolean"
},
"alias": {
"type": "string"
},
"appInstallId": {
"type": "integer"
},
"createdAt": {
"type": "string"
},
"defaultServer": {
"type": "boolean"
},
"domains": {
"type": "array",
"items": {
"$ref": "#/definitions/model.WebsiteDomain"
}
},
"errorLog": {
"type": "boolean"
},
"expireDate": {
"type": "string"
},
"httpConfig": {
"type": "string"
},
"id": {
"type": "integer"
},
"primaryDomain": {
"type": "string"
},
"protocol": {
"type": "string"
},
"proxy": {
"type": "string"
},
"remark": {
"type": "string"
},
"status": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"type": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"updatedAt": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"webSiteGroupId": {
"type": "integer"
},
"webSiteSSL": {
"$ref": "#/definitions/model.WebsiteSSL"
},
"webSiteSSLId": {
"type": "integer"
2023-01-04 22:31:51 +08:00
}
}
},
"model.WebsiteAcmeAccount": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"createdAt": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"email": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"id": {
"type": "integer"
},
"updatedAt": {
"type": "string"
},
"url": {
"type": "string"
2023-01-04 22:31:51 +08:00
}
}
},
"model.WebsiteDomain": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"createdAt": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"domain": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"id": {
"type": "integer"
},
"port": {
"type": "integer"
},
"updatedAt": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"websiteId": {
"type": "integer"
2023-01-04 22:31:51 +08:00
}
}
},
"model.WebsiteSSL": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"acmeAccount": {
"$ref": "#/definitions/model.WebsiteAcmeAccount"
},
"acmeAccountId": {
"type": "integer"
},
"autoRenew": {
2023-01-04 22:31:51 +08:00
"type": "boolean"
},
"certURL": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"createdAt": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"dnsAccountId": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"domains": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"expireDate": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"id": {
2023-01-04 22:31:51 +08:00
"type": "integer"
},
"organization": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"pem": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"primaryDomain": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"privateKey": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"provider": {
"type": "string"
},
"startDate": {
"type": "string"
},
"type": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"websites": {
2023-01-04 22:31:51 +08:00
"type": "array",
"items": {
"$ref": "#/definitions/model.Website"
2023-01-04 22:31:51 +08:00
}
}
}
},
"request.AppBackupDelete": {
"type": "object",
"properties": {
"ids": {
"type": "array",
"items": {
"type": "integer"
}
}
}
},
"request.AppBackupSearch": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"page",
"pageSize"
2023-01-04 22:31:51 +08:00
],
"properties": {
"appInstallID": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"page": {
"type": "integer"
},
"pageSize": {
"type": "integer"
2023-01-04 22:31:51 +08:00
}
}
},
"request.AppInstallCreate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"appDetailId",
"name"
2023-01-04 22:31:51 +08:00
],
"properties": {
"appDetailId": {
"type": "integer"
},
2023-01-04 22:31:51 +08:00
"name": {
"type": "string"
},
"params": {
"type": "object",
"additionalProperties": true
2023-01-04 22:31:51 +08:00
},
"services": {
"type": "object",
"additionalProperties": {
"type": "string"
}
2023-01-04 22:31:51 +08:00
}
}
},
"request.AppInstalledOperate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"installId",
"operate"
],
2023-01-04 22:31:51 +08:00
"properties": {
"backupId": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"deleteBackup": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"detailId": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"forceDelete": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"installId": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"operate": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"request.AppInstalledSearch": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"page",
"pageSize"
2023-01-04 22:31:51 +08:00
],
"properties": {
"name": {
"type": "string"
},
"page": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"pageSize": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"type": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"unused": {
"type": "boolean"
},
"update": {
"type": "boolean"
}
}
},
"request.AppSearch": {
"type": "object",
"required": [
"page",
"pageSize"
],
"properties": {
"name": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"page": {
2023-01-04 22:31:51 +08:00
"type": "integer"
},
"pageSize": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
2023-02-10 15:55:56 +08:00
"recommend": {
"type": "boolean"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
2023-01-04 22:31:51 +08:00
},
"type": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"request.DirSizeReq": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"path"
2023-01-04 22:31:51 +08:00
],
"properties": {
"path": {
"type": "string"
}
}
},
"request.FileBatchDelete": {
"type": "object",
"required": [
"paths"
],
"properties": {
"isDir": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"paths": {
"type": "array",
"items": {
"type": "string"
}
2023-01-04 22:31:51 +08:00
}
}
},
"request.FileCompress": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"dst",
"files",
2023-01-04 22:31:51 +08:00
"name",
"type"
2023-01-04 22:31:51 +08:00
],
"properties": {
"dst": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"files": {
"type": "array",
"items": {
"type": "string"
}
2023-01-04 22:31:51 +08:00
},
"name": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"replace": {
2023-01-04 22:31:51 +08:00
"type": "boolean"
},
"type": {
"type": "string"
}
}
},
"request.FileCreate": {
"type": "object",
"required": [
"mode",
"path"
],
"properties": {
"content": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"isDir": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"isLink": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"isSymlink": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"linkPath": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"mode": {
2023-01-04 22:31:51 +08:00
"type": "integer"
},
"path": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"request.FileDeCompress": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"dst",
"path",
"type"
2023-01-04 22:31:51 +08:00
],
"properties": {
"dst": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"path": {
"type": "string"
},
"type": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"request.FileDelete": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"path"
],
2023-01-04 22:31:51 +08:00
"properties": {
"isDir": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"path": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"request.FileDownload": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"name",
"paths",
"type"
],
2023-01-04 22:31:51 +08:00
"properties": {
"name": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"paths": {
2023-01-04 22:31:51 +08:00
"type": "array",
"items": {
"type": "string"
}
},
"type": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"request.FileEdit": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"content",
2023-01-04 22:31:51 +08:00
"path"
],
"properties": {
"content": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"path": {
"type": "string"
}
}
},
"request.FileMove": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"newPath",
"oldPaths",
"type"
2023-01-04 22:31:51 +08:00
],
"properties": {
"newPath": {
"type": "string"
},
"oldPaths": {
"type": "array",
"items": {
"type": "string"
}
},
"type": {
"type": "string"
2023-01-04 22:31:51 +08:00
}
}
},
"request.FileOption": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
2023-02-07 18:48:32 +08:00
"containSub": {
"type": "boolean"
},
"dir": {
"type": "boolean"
},
"expand": {
"type": "boolean"
},
"page": {
"type": "integer"
},
"pageSize": {
"type": "integer"
},
"path": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"search": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"showHidden": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
}
}
},
"request.FileRename": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"newName",
"oldName"
2023-01-04 22:31:51 +08:00
],
"properties": {
"newName": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"oldName": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"request.FileWget": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"name",
"path",
"url"
2023-01-04 22:31:51 +08:00
],
"properties": {
"name": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"path": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"url": {
"type": "string"
}
}
},
"request.NewAppInstall": {
"type": "object",
"properties": {
"appDetailID": {
"type": "integer"
},
2023-01-04 22:31:51 +08:00
"name": {
"type": "string"
},
"params": {
"type": "object",
"additionalProperties": true
2023-01-04 22:31:51 +08:00
}
}
},
"request.NginxConfigFileUpdate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"backup",
"content",
"filePath"
2023-01-04 22:31:51 +08:00
],
"properties": {
"backup": {
"type": "boolean"
},
"content": {
"type": "string"
},
"filePath": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"request.NginxConfigUpdate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"websiteId"
2023-01-04 22:31:51 +08:00
],
"properties": {
"operate": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"params": {},
"scope": {
"type": "string"
},
"websiteId": {
2023-01-04 22:31:51 +08:00
"type": "integer"
}
}
},
"request.NginxScopeReq": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"scope"
2023-01-04 22:31:51 +08:00
],
"properties": {
"scope": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"websiteId": {
2023-01-04 22:31:51 +08:00
"type": "integer"
}
}
},
"request.PortUpdate": {
"type": "object",
"properties": {
"key": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"name": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"port": {
"type": "integer"
2023-01-04 22:31:51 +08:00
}
}
},
"request.WebsiteAcmeAccountCreate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"email"
2023-01-04 22:31:51 +08:00
],
"properties": {
"email": {
"type": "string"
}
}
},
"request.WebsiteCreate": {
"type": "object",
"required": [
"alias",
"primaryDomain",
"type",
"webSiteGroupID"
],
"properties": {
"alias": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"appID": {
"type": "integer"
},
"appInstall": {
"$ref": "#/definitions/request.NewAppInstall"
},
"appInstallID": {
"type": "integer"
},
"appType": {
"type": "string",
"enum": [
"new",
"installed"
]
},
"otherDomains": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"primaryDomain": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"proxy": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"remark": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"type": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"webSiteGroupID": {
"type": "integer"
2023-01-04 22:31:51 +08:00
}
}
},
"request.WebsiteDNSReq": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"acmeAccountId",
"domains"
2023-01-04 22:31:51 +08:00
],
"properties": {
"acmeAccountId": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"domains": {
2023-01-04 22:31:51 +08:00
"type": "array",
"items": {
"type": "string"
2023-01-04 22:31:51 +08:00
}
}
}
},
"request.WebsiteDefaultUpdate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"id"
],
2023-01-04 22:31:51 +08:00
"properties": {
"id": {
"type": "integer"
}
}
},
"request.WebsiteDelete": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"id"
2023-01-04 22:31:51 +08:00
],
"properties": {
"deleteApp": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"deleteBackup": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"forceDelete": {
"type": "boolean"
},
"id": {
"type": "integer"
2023-01-04 22:31:51 +08:00
}
}
},
"request.WebsiteDnsAccountCreate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"authorization",
"name",
"type"
2023-01-04 22:31:51 +08:00
],
"properties": {
"authorization": {
"type": "object",
"additionalProperties": {
"type": "string"
}
2023-01-04 22:31:51 +08:00
},
"name": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"type": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"request.WebsiteDnsAccountUpdate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"authorization",
"id",
"name",
"type"
],
2023-01-04 22:31:51 +08:00
"properties": {
"authorization": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
2023-01-04 22:31:51 +08:00
"id": {
"type": "integer"
},
"name": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"type": {
"type": "string"
}
}
},
"request.WebsiteDomainCreate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"domain",
"port",
"websiteId"
2023-01-04 22:31:51 +08:00
],
"properties": {
"domain": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"port": {
"type": "integer"
},
"websiteId": {
"type": "integer"
2023-01-04 22:31:51 +08:00
}
}
},
"request.WebsiteDomainDelete": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"id"
2023-01-04 22:31:51 +08:00
],
"properties": {
"id": {
"type": "integer"
2023-01-04 22:31:51 +08:00
}
}
},
"request.WebsiteGroupCreate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"name"
2023-01-04 22:31:51 +08:00
],
"properties": {
"name": {
"type": "string"
2023-01-04 22:31:51 +08:00
}
}
},
"request.WebsiteGroupUpdate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"id"
],
"properties": {
"default": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
2023-01-04 22:31:51 +08:00
}
}
},
"request.WebsiteHTTPSOp": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"enable",
"websiteId"
],
2023-01-04 22:31:51 +08:00
"properties": {
"HttpConfig": {
"type": "string",
"enum": [
"HTTPSOnly",
"HTTPAlso",
"HTTPToHTTPS"
]
2023-01-04 22:31:51 +08:00
},
"SSLProtocol": {
"type": "array",
"items": {
"type": "string"
}
2023-01-04 22:31:51 +08:00
},
"algorithm": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"certificate": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"enable": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"privateKey": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"type": {
"type": "string",
"enum": [
"existed",
"auto",
"manual"
]
2023-01-04 22:31:51 +08:00
},
"websiteId": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"websiteSSLId": {
"type": "integer"
}
}
},
"request.WebsiteInstallCheckReq": {
"type": "object",
"required": [
"InstallIds"
],
"properties": {
"InstallIds": {
"type": "array",
"items": {
"type": "integer"
}
2023-01-04 22:31:51 +08:00
}
}
},
"request.WebsiteLogReq": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"id",
"logType",
"operate"
],
2023-01-04 22:31:51 +08:00
"properties": {
"id": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"logType": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"operate": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"request.WebsiteNginxUpdate": {
"type": "object",
"required": [
"content",
"id"
],
"properties": {
"content": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"id": {
"type": "integer"
}
}
},
"request.WebsiteOp": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"operate": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"request.WebsiteRecover": {
"type": "object",
"required": [
"backupName",
"type",
"websiteName"
],
"properties": {
"backupName": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"type": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"websiteName": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"request.WebsiteRecoverByFile": {
"type": "object",
"required": [
"fileDir",
"fileName",
"type",
"websiteName"
],
"properties": {
"fileDir": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"fileName": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"type": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"websiteName": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"request.WebsiteResourceReq": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"id"
],
2023-01-04 22:31:51 +08:00
"properties": {
"id": {
"type": "integer"
}
2023-01-04 22:31:51 +08:00
}
},
"request.WebsiteSSLCreate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"acmeAccountId",
"autoRenew",
"primaryDomain",
"provider"
],
2023-01-04 22:31:51 +08:00
"properties": {
"acmeAccountId": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"autoRenew": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"dnsAccountId": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"otherDomains": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"primaryDomain": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"provider": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"request.WebsiteSSLRenew": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"SSLId"
2023-01-04 22:31:51 +08:00
],
"properties": {
"SSLId": {
2023-01-04 22:31:51 +08:00
"type": "integer"
}
}
},
"request.WebsiteSSLSearch": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"page",
"pageSize"
],
"properties": {
"page": {
"type": "integer"
},
"pageSize": {
"type": "integer"
}
}
},
"request.WebsiteSearch": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"page",
"pageSize"
],
"properties": {
"name": {
"type": "string"
},
2023-01-04 22:31:51 +08:00
"page": {
"type": "integer"
},
"pageSize": {
"type": "integer"
},
"websiteGroupId": {
"type": "integer"
2023-01-04 22:31:51 +08:00
}
}
},
"request.WebsiteUpdate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"id",
"primaryDomain",
"webSiteGroupID"
],
2023-01-04 22:31:51 +08:00
"properties": {
"expireDate": {
"type": "string"
},
"id": {
"type": "integer"
},
"primaryDomain": {
"type": "string"
},
"remark": {
"type": "string"
},
"webSiteGroupID": {
2023-01-04 22:31:51 +08:00
"type": "integer"
}
}
},
"request.WebsiteWafReq": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"key",
"rule",
"websiteId"
],
2023-01-04 22:31:51 +08:00
"properties": {
"key": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"rule": {
"type": "string"
},
"websiteId": {
2023-01-04 22:31:51 +08:00
"type": "integer"
}
}
},
"request.WebsiteWafUpdate": {
2023-01-04 22:31:51 +08:00
"type": "object",
"required": [
"enable",
"key",
"websiteId"
2023-01-04 22:31:51 +08:00
],
"properties": {
"enable": {
"type": "boolean"
},
"key": {
"type": "string"
},
"websiteId": {
"type": "integer"
}
}
},
"response.AppDTO": {
"type": "object",
"properties": {
"createdAt": {
"type": "string"
},
"crossVersionUpdate": {
"type": "boolean"
},
"document": {
"type": "string"
},
"github": {
"type": "string"
},
"icon": {
"type": "string"
},
"id": {
"type": "integer"
},
"key": {
"type": "string"
},
"limit": {
"type": "integer"
},
"name": {
"type": "string"
},
2023-02-10 15:55:56 +08:00
"recommend": {
"type": "integer"
},
"required": {
"type": "string"
},
"shortDesc": {
"type": "string"
},
"status": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"$ref": "#/definitions/model.Tag"
}
},
"type": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"versions": {
"type": "array",
"items": {
"type": "string"
}
},
"website": {
"type": "string"
}
}
},
"response.AppDetailDTO": {
"type": "object",
"properties": {
"appId": {
"type": "integer"
},
"createdAt": {
"type": "string"
},
"enable": {
"type": "boolean"
},
"id": {
"type": "integer"
},
"lastVersion": {
"type": "string"
},
"params": {},
"readme": {
"type": "string"
},
"status": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"version": {
"type": "string"
}
}
},
"response.AppInstalledCheck": {
"type": "object",
"properties": {
"app": {
"type": "string"
},
"appInstallId": {
"type": "integer"
},
"containerName": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"installPath": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"isExist": {
"type": "boolean"
},
"lastBackupAt": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"name": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"status": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"version": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"response.AppParam": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"label": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"value": {}
2023-01-04 22:31:51 +08:00
}
},
"response.FileInfo": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"content": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"extension": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"group": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"isDir": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"isHidden": {
"type": "boolean"
},
"isSymlink": {
"type": "boolean"
},
"itemTotal": {
2023-01-04 22:31:51 +08:00
"type": "integer"
},
"items": {
"type": "array",
"items": {
"$ref": "#/definitions/files.FileInfo"
}
},
"linkPath": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"mimeType": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"modTime": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"mode": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"name": {
"type": "string"
},
"path": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"size": {
"type": "integer"
},
2023-01-04 22:31:51 +08:00
"type": {
"type": "string"
},
"updateTime": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"user": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"response.NginxParam": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"name": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"params": {
"type": "array",
"items": {
"type": "string"
}
2023-01-04 22:31:51 +08:00
}
}
},
"response.NginxStatus": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"accepts": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"active": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"handled": {
"type": "string"
},
"reading": {
"type": "string"
},
"requests": {
"type": "string"
},
"waiting": {
"type": "string"
},
"writing": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"response.WebsiteAcmeAccountDTO": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"createdAt": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"email": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"id": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"updatedAt": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"url": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
},
"response.WebsiteDTO": {
"type": "object",
"properties": {
"accessLog": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"accessLogPath": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"alias": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"appInstallId": {
"type": "integer"
2023-01-04 22:31:51 +08:00
},
"createdAt": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"defaultServer": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"domains": {
"type": "array",
"items": {
"$ref": "#/definitions/model.WebsiteDomain"
}
2023-01-04 22:31:51 +08:00
},
"errorLog": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"errorLogPath": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"expireDate": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"httpConfig": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"id": {
2023-01-04 22:31:51 +08:00
"type": "integer"
},
"primaryDomain": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"protocol": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"proxy": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"remark": {
"type": "string"
2023-01-04 22:31:51 +08:00
},
"sitePath": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"status": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"type": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"updatedAt": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"webSiteGroupId": {
"type": "integer"
},
"webSiteSSL": {
"$ref": "#/definitions/model.WebsiteSSL"
},
"webSiteSSLId": {
"type": "integer"
2023-01-04 22:31:51 +08:00
}
}
},
"response.WebsiteHTTPS": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"SSL": {
"$ref": "#/definitions/model.WebsiteSSL"
2023-01-04 22:31:51 +08:00
},
"SSLProtocol": {
2023-01-04 22:31:51 +08:00
"type": "array",
"items": {
"type": "string"
}
},
"algorithm": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"enable": {
"type": "boolean"
},
"httpConfig": {
"type": "string"
2023-01-04 22:31:51 +08:00
}
}
},
"response.WebsiteLog": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"content": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"enable": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
}
}
},
"response.WebsiteNginxConfig": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"enable": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"params": {
"type": "array",
"items": {
"$ref": "#/definitions/response.NginxParam"
}
2023-01-04 22:31:51 +08:00
}
}
},
"response.WebsiteWafConfig": {
2023-01-04 22:31:51 +08:00
"type": "object",
"properties": {
"content": {
2023-01-04 22:31:51 +08:00
"type": "string"
},
"enable": {
"type": "boolean"
2023-01-04 22:31:51 +08:00
},
"filePath": {
2023-01-04 22:31:51 +08:00
"type": "string"
}
}
}
}
2022-08-16 23:30:23 +08:00
}`
2023-01-04 22:31:51 +08:00
type swaggerInfo struct {
Version string
Host string
BasePath string
Schemes []string
Title string
Description string
}
2022-08-16 23:30:23 +08:00
// SwaggerInfo holds exported Swagger Info so clients can modify it
2023-01-04 22:31:51 +08:00
var SwaggerInfo = swaggerInfo{
Version: "1.0",
Host: "localhost",
BasePath: "/api/v1",
Schemes: []string{},
Title: "1Panel",
Description: "开源Linux面板",
}
type s struct{}
func (s *s) ReadDoc() string {
sInfo := SwaggerInfo
sInfo.Description = strings.Replace(sInfo.Description, "\n", "\\n", -1)
t, err := template.New("swagger_info").Funcs(template.FuncMap{
"marshal": func(v interface{}) string {
a, _ := json.Marshal(v)
return string(a)
},
"escape": func(v interface{}) string {
// escape tabs
str := strings.Replace(v.(string), "\t", "\\t", -1)
// replace " with \", and if that results in \\", replace that with \\\"
str = strings.Replace(str, "\"", "\\\"", -1)
return strings.Replace(str, "\\\\\"", "\\\\\\\"", -1)
},
}).Parse(doc)
if err != nil {
return doc
}
var tpl bytes.Buffer
if err := t.Execute(&tpl, sInfo); err != nil {
return doc
}
return tpl.String()
2022-08-16 23:30:23 +08:00
}
func init() {
2023-01-04 22:31:51 +08:00
swag.Register("swagger", &s{})
2022-08-16 23:30:23 +08:00
}