- SFTP模块:连接/断开/文件CRUD/系统信息采集/base64二进制写入 - 连接池:多服务器同时在线,瞬间切换profile - autoConnect:启动时自动连接所有非本地服务器 - 端口自动回退:listenWithFallback消除TOCTOU,解决端口冲突崩溃 - 文件服务器URL集中管理:file-server.ts消除8+处硬编码端口 - Sidebar设置面板:添加服务器/自动连接/自动刷新开关 - 修复:validateFilePath越界panic、正则预编译 - 修复:注释准确性(RemoveAll/端口8073/动态端口文档)
23 lines
1.0 KiB
Go
23 lines
1.0 KiB
Go
package models
|
||
|
||
import "time"
|
||
|
||
// ConnectionProfile 连接配置模型(SQLite 持久化)
|
||
type ConnectionProfile struct {
|
||
ID uint `gorm:"primaryKey" json:"id"`
|
||
Name string `gorm:"type:varchar(100);not null" json:"name"`
|
||
Host string `gorm:"type:varchar(255)" json:"host"`
|
||
Port int `gorm:"default:22" json:"port"`
|
||
Username string `gorm:"type:varchar(100);default:root" json:"username"`
|
||
Password string `gorm:"type:text" json:"password"`
|
||
KeyPath string `gorm:"type:text" json:"key_path"`
|
||
Type string `gorm:"type:varchar(20);not null;index" json:"type"` // local|remote|sftp
|
||
Token string `gorm:"type:text" json:"token"`
|
||
LastConnected *time.Time `json:"last_connected"`
|
||
SortOrder int `gorm:"default:0" json:"sort_order"`
|
||
CreatedAt time.Time `json:"created_at"`
|
||
UpdatedAt time.Time `json:"updated_at"`
|
||
}
|
||
|
||
func (ConnectionProfile) TableName() string { return "connection_profiles" }
|