mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-31 19:26:02 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			72 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package service
 | |
| 
 | |
| import (
 | |
| 	"github.com/1Panel-dev/1Panel/backend/app/dto"
 | |
| 	"github.com/1Panel-dev/1Panel/backend/app/dto/request"
 | |
| 	"github.com/1Panel-dev/1Panel/backend/app/dto/response"
 | |
| 	"github.com/1Panel-dev/1Panel/backend/app/model"
 | |
| 	"github.com/1Panel-dev/1Panel/backend/buserr"
 | |
| 	"github.com/1Panel-dev/1Panel/backend/constant"
 | |
| 	"gopkg.in/square/go-jose.v2/json"
 | |
| )
 | |
| 
 | |
| type WebsiteDnsAccountService struct {
 | |
| }
 | |
| 
 | |
| func (w WebsiteDnsAccountService) Page(search dto.PageInfo) (int64, []response.WebsiteDnsAccountDTO, error) {
 | |
| 	total, accounts, err := websiteDnsRepo.Page(search.Page, search.PageSize, commonRepo.WithOrderBy("created_at desc"))
 | |
| 	var accountDTOs []response.WebsiteDnsAccountDTO
 | |
| 	for _, account := range accounts {
 | |
| 		auth := make(map[string]string)
 | |
| 		_ = json.Unmarshal([]byte(account.Authorization), &auth)
 | |
| 		accountDTOs = append(accountDTOs, response.WebsiteDnsAccountDTO{
 | |
| 			WebsiteDnsAccount: account,
 | |
| 			Authorization:     auth,
 | |
| 		})
 | |
| 	}
 | |
| 	return total, accountDTOs, err
 | |
| }
 | |
| 
 | |
| func (w WebsiteDnsAccountService) Create(create request.WebsiteDnsAccountCreate) (request.WebsiteDnsAccountCreate, error) {
 | |
| 	authorization, err := json.Marshal(create.Authorization)
 | |
| 	if err != nil {
 | |
| 		return request.WebsiteDnsAccountCreate{}, err
 | |
| 	}
 | |
| 
 | |
| 	if err := websiteDnsRepo.Create(model.WebsiteDnsAccount{
 | |
| 		Name:          create.Name,
 | |
| 		Type:          create.Type,
 | |
| 		Authorization: string(authorization),
 | |
| 	}); err != nil {
 | |
| 		return request.WebsiteDnsAccountCreate{}, err
 | |
| 	}
 | |
| 
 | |
| 	return create, nil
 | |
| }
 | |
| 
 | |
| func (w WebsiteDnsAccountService) Update(update request.WebsiteDnsAccountUpdate) (request.WebsiteDnsAccountUpdate, error) {
 | |
| 	authorization, err := json.Marshal(update.Authorization)
 | |
| 	if err != nil {
 | |
| 		return request.WebsiteDnsAccountUpdate{}, err
 | |
| 	}
 | |
| 
 | |
| 	if err := websiteDnsRepo.Save(model.WebsiteDnsAccount{
 | |
| 		BaseModel: model.BaseModel{
 | |
| 			ID: update.ID,
 | |
| 		},
 | |
| 		Name:          update.Name,
 | |
| 		Type:          update.Type,
 | |
| 		Authorization: string(authorization),
 | |
| 	}); err != nil {
 | |
| 		return request.WebsiteDnsAccountUpdate{}, err
 | |
| 	}
 | |
| 
 | |
| 	return update, nil
 | |
| }
 | |
| 
 | |
| func (w WebsiteDnsAccountService) Delete(id uint) error {
 | |
| 	if ssls, _ := websiteSSLRepo.List(websiteSSLRepo.WithByDnsAccountId(id)); len(ssls) > 0 {
 | |
| 		return buserr.New(constant.ErrAccountCannotDelete)
 | |
| 	}
 | |
| 	return websiteDnsRepo.DeleteBy(commonRepo.WithByID(id))
 | |
| }
 |