2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-07 08:17:14 +08:00
Files
panel/internal/service/backup_account.go
Copilot 0d62d435d9 feat(backup): 新建/更新备份账号时验证 s3、sftp、webdav 存储连接 (#1264)
* Initial plan

* feat(backup): 新建/更新备份账号时验证 s3、sftp、webdav 存储连接

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

* refactor(backup): 优化 validateStorage 函数,统一连接验证逻辑

Co-authored-by: devhaozi <115467771+devhaozi@users.noreply.github.com>

* feat: 优化备份账号保存

* 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>
2026-01-22 01:27:40 +08:00

170 lines
4.1 KiB
Go

package service
import (
"errors"
"net/http"
"github.com/leonelquinteros/gotext"
"github.com/libtnb/chix"
"github.com/acepanel/panel/internal/biz"
"github.com/acepanel/panel/internal/http/request"
"github.com/acepanel/panel/pkg/storage"
"github.com/acepanel/panel/pkg/types"
)
type BackupAccountService struct {
t *gotext.Locale
backupAccountRepo biz.BackupAccountRepo
}
func NewBackupAccountService(t *gotext.Locale, backupAccount biz.BackupAccountRepo) *BackupAccountService {
return &BackupAccountService{
t: t,
backupAccountRepo: backupAccount,
}
}
func (s *BackupAccountService) List(w http.ResponseWriter, r *http.Request) {
req, err := Bind[request.Paginate](r)
if err != nil {
Error(w, http.StatusUnprocessableEntity, "%v", err)
return
}
accounts, total, err := s.backupAccountRepo.List(req.Page, req.Limit)
if err != nil {
Error(w, http.StatusInternalServerError, "%v", err)
return
}
Success(w, chix.M{
"total": total,
"items": accounts,
})
}
func (s *BackupAccountService) Create(w http.ResponseWriter, r *http.Request) {
req, err := Bind[request.BackupAccountCreate](r)
if err != nil {
Error(w, http.StatusUnprocessableEntity, "%v", err)
return
}
if err = s.validateStorage(req.Type, req.Info); err != nil {
Error(w, http.StatusUnprocessableEntity, "%v", err)
return
}
account, err := s.backupAccountRepo.Create(r.Context(), req)
if err != nil {
Error(w, http.StatusInternalServerError, "%v", err)
return
}
Success(w, account)
}
func (s *BackupAccountService) Update(w http.ResponseWriter, r *http.Request) {
req, err := Bind[request.BackupAccountUpdate](r)
if err != nil {
Error(w, http.StatusUnprocessableEntity, "%v", err)
return
}
if err = s.validateStorage(req.Type, req.Info); err != nil {
Error(w, http.StatusUnprocessableEntity, "%v", err)
return
}
if err = s.backupAccountRepo.Update(r.Context(), req); err != nil {
Error(w, http.StatusInternalServerError, "%v", err)
return
}
Success(w, nil)
}
func (s *BackupAccountService) Get(w http.ResponseWriter, r *http.Request) {
req, err := Bind[request.ID](r)
if err != nil {
Error(w, http.StatusUnprocessableEntity, "%v", err)
return
}
account, err := s.backupAccountRepo.Get(req.ID)
if err != nil {
Error(w, http.StatusInternalServerError, "%v", err)
return
}
Success(w, account)
}
func (s *BackupAccountService) Delete(w http.ResponseWriter, r *http.Request) {
req, err := Bind[request.ID](r)
if err != nil {
Error(w, http.StatusUnprocessableEntity, "%v", err)
return
}
if err = s.backupAccountRepo.Delete(r.Context(), req.ID); err != nil {
Error(w, http.StatusInternalServerError, "%v", err)
return
}
Success(w, nil)
}
// validateStorage 验证存储账号配置是否正确
func (s *BackupAccountService) validateStorage(accountType string, info types.BackupAccountInfo) error {
var err error
var client storage.Storage
switch biz.BackupAccountType(accountType) {
case biz.BackupAccountTypeS3:
client, err = storage.NewS3(storage.S3Config{
Region: info.Region,
Bucket: info.Bucket,
AccessKeyID: info.AccessKey,
SecretAccessKey: info.SecretKey,
Endpoint: info.Endpoint,
BasePath: info.Path,
AddressingStyle: storage.S3AddressingStyle(info.Style),
})
if err != nil {
return errors.New(s.t.Get("s3 configuration error: %v", err))
}
case biz.BackupAccountTypeSFTP:
client, err = storage.NewSFTP(storage.SFTPConfig{
Host: info.Host,
Port: info.Port,
Username: info.Username,
Password: info.Password,
PrivateKey: info.PrivateKey,
BasePath: info.Path,
})
if err != nil {
return errors.New(s.t.Get("sftp configuration error: %v", err))
}
case biz.BackupAccountTypeWebDav:
client, err = storage.NewWebDav(storage.WebDavConfig{
URL: info.URL,
Username: info.Username,
Password: info.Password,
BasePath: info.Path,
})
if err != nil {
return errors.New(s.t.Get("webdav configuration error: %v", err))
}
default:
return nil
}
if _, err = client.List(""); err != nil {
return errors.New(s.t.Get("storage connection error: %v", err))
}
return nil
}