Private
Public Access
1
0

修复: OSS收藏打开+连接指示器根目录+字段映射+侧边栏重构+文件监听+首屏优化

This commit is contained in:
2026-05-16 17:55:59 +08:00
parent 316e517989
commit d17c20c579
37 changed files with 1667 additions and 1566 deletions

53
cmd/dbread/main.go Normal file
View File

@@ -0,0 +1,53 @@
package main
import (
"encoding/json"
"fmt"
"os"
"path/filepath"
"github.com/glebarez/sqlite"
"gorm.io/gorm"
)
func main() {
home, _ := os.UserHomeDir()
dbPath := filepath.Join(home, ".u-desk", "app.db")
db, err := gorm.Open(sqlite.Open(dbPath), &gorm.Config{})
if err != nil {
fmt.Fprintln(os.Stderr, "open db:", err)
os.Exit(1)
}
// 所有列
type Profile struct {
ID uint `gorm:"primaryKey"`
Name string `gorm:"column:name"`
Type string `gorm:"column:type"`
Host string `gorm:"column:host"`
Port int `gorm:"column:port"`
Username string `gorm:"column:username"`
Provider string `gorm:"column:provider"`
Token string `gorm:"column:token"`
AccessKey string `gorm:"column:access_key"`
SecretKey string `gorm:"column:secret_key"`
Bucket string `gorm:"column:bucket"`
Region string `gorm:"column:region"`
Endpoint string `gorm:"column:endpoint"`
}
var profiles []Profile
db.Table("connection_profiles").Find(&profiles)
// 脱敏 secret_key
for i := range profiles {
if len(profiles[i].SecretKey) > 8 {
profiles[i].SecretKey = profiles[i].SecretKey[:4] + "****"
}
}
b, _ := json.MarshalIndent(profiles, "", " ")
fmt.Println("=== Connection Profiles ===")
fmt.Println(string(b))
}