mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 06:47:20 +08:00
* Initial plan * feat: 添加操作日志记录功能和前端日志查看页面 Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com> * fix: 修复 HttpLog 中 IP 字符串处理的类型安全问题 Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com> * fix: lint * feat: 完善面板内日志记录,添加网站/数据库/项目/计划任务/备份CRUD日志 Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com> * feat: 完善更多模块的日志记录(证书/SSH/Webhook/用户/设置/安全) Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com> * fix: 改进cert_dns删除方法,在删除前获取实体信息用于日志记录 Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com> * fix: lint * feat: 从session获取操作员ID并在前端显示用户名 Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com> * fix: lint --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com> Co-authored-by: 耗子 <haozi@loli.email>
75 lines
2.1 KiB
Go
75 lines
2.1 KiB
Go
package biz
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/libtnb/utils/crypt"
|
|
"gorm.io/gorm"
|
|
|
|
"github.com/acepanel/panel/internal/app"
|
|
"github.com/acepanel/panel/internal/http/request"
|
|
)
|
|
|
|
type DatabaseUserStatus string
|
|
|
|
const (
|
|
DatabaseUserStatusValid DatabaseUserStatus = "valid"
|
|
DatabaseUserStatusInvalid DatabaseUserStatus = "invalid"
|
|
)
|
|
|
|
type DatabaseUser struct {
|
|
ID uint `gorm:"primaryKey" json:"id"`
|
|
ServerID uint `gorm:"not null;default:0" json:"server_id"`
|
|
Username string `gorm:"not null;default:''" json:"username"`
|
|
Password string `gorm:"not null;default:''" json:"password"`
|
|
Host string `gorm:"not null;default:''" json:"host"` // 仅 mysql
|
|
Status DatabaseUserStatus `gorm:"-:all" json:"status"` // 仅显示
|
|
Privileges []string `gorm:"-:all" json:"privileges"` // 仅显示
|
|
Remark string `gorm:"not null;default:''" json:"remark"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
|
|
Server *DatabaseServer `gorm:"foreignKey:ServerID;references:ID" json:"server"`
|
|
}
|
|
|
|
func (r *DatabaseUser) BeforeSave(tx *gorm.DB) error {
|
|
crypter, err := crypt.NewXChacha20Poly1305([]byte(app.Key))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
r.Password, err = crypter.Encrypt([]byte(r.Password))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
func (r *DatabaseUser) AfterFind(tx *gorm.DB) error {
|
|
crypter, err := crypt.NewXChacha20Poly1305([]byte(app.Key))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
password, err := crypter.Decrypt(r.Password)
|
|
if err == nil {
|
|
r.Password = string(password)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
type DatabaseUserRepo interface {
|
|
Count() (int64, error)
|
|
List(page, limit uint) ([]*DatabaseUser, int64, error)
|
|
Get(id uint) (*DatabaseUser, error)
|
|
Create(ctx context.Context, req *request.DatabaseUserCreate) error
|
|
Update(req *request.DatabaseUserUpdate) error
|
|
UpdateRemark(req *request.DatabaseUserUpdateRemark) error
|
|
Delete(ctx context.Context, id uint) error
|
|
DeleteByNames(serverID uint, names []string) error
|
|
}
|