Some checks failed
Build docker and publish / build (20.15.1) (push) Failing after 7m37s
39 lines
1.1 KiB
Go
39 lines
1.1 KiB
Go
package system
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/perfect-panel/server/internal/svc"
|
|
"github.com/perfect-panel/server/internal/types"
|
|
"github.com/perfect-panel/server/pkg/logger"
|
|
"github.com/perfect-panel/server/pkg/tool"
|
|
"github.com/perfect-panel/server/pkg/xerr"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type GetSignatureConfigLogic struct {
|
|
logger.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
// Get Signature Config
|
|
func NewGetSignatureConfigLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetSignatureConfigLogic {
|
|
return &GetSignatureConfigLogic{
|
|
Logger: logger.WithContext(ctx),
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
func (l *GetSignatureConfigLogic) GetSignatureConfig() (resp *types.SignatureConfig, err error) {
|
|
resp = &types.SignatureConfig{}
|
|
configs, err := l.svcCtx.SystemModel.GetSignatureConfig(l.ctx)
|
|
if err != nil {
|
|
l.Errorw("[GetSignatureConfig] Database query error", logger.Field("error", err.Error()))
|
|
return nil, errors.Wrapf(xerr.NewErrCode(xerr.DatabaseQueryError), "get signature config error: %v", err.Error())
|
|
}
|
|
tool.SystemConfigSliceReflectToStruct(configs, resp)
|
|
return resp, nil
|
|
}
|