f
This commit is contained in:
@@ -1,56 +0,0 @@
|
|||||||
package ivyz
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"encoding/json"
|
|
||||||
"errors"
|
|
||||||
|
|
||||||
"tyapi-server/internal/domains/api/dto"
|
|
||||||
"tyapi-server/internal/domains/api/services/processors"
|
|
||||||
"tyapi-server/internal/infrastructure/external/zhicha"
|
|
||||||
)
|
|
||||||
|
|
||||||
// ProcessIVYZ5E3FRequest IVYZ5E3F API处理方法 - 婚姻评估查询
|
|
||||||
func ProcessIVYZ5E3FRequest(ctx context.Context, params []byte, deps *processors.ProcessorDependencies) ([]byte, error) {
|
|
||||||
var paramsDto dto.IVYZ5E3FReq
|
|
||||||
if err := json.Unmarshal(params, ¶msDto); err != nil {
|
|
||||||
return nil, errors.Join(processors.ErrSystem, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := deps.Validator.ValidateStruct(paramsDto); err != nil {
|
|
||||||
return nil, errors.Join(processors.ErrInvalidParam, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
encryptedName, err := deps.ZhichaService.Encrypt(paramsDto.Name)
|
|
||||||
if err != nil {
|
|
||||||
return nil, errors.Join(processors.ErrSystem, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
encryptedIDCard, err := deps.ZhichaService.Encrypt(paramsDto.IDCard)
|
|
||||||
if err != nil {
|
|
||||||
return nil, errors.Join(processors.ErrSystem, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
reqData := map[string]interface{}{
|
|
||||||
"name": encryptedName,
|
|
||||||
"idCard": encryptedIDCard,
|
|
||||||
"authorized": paramsDto.Authorized,
|
|
||||||
}
|
|
||||||
|
|
||||||
respData, err := deps.ZhichaService.CallAPI(ctx, "ZCI029", reqData)
|
|
||||||
if err != nil {
|
|
||||||
if errors.Is(err, zhicha.ErrDatasource) {
|
|
||||||
return nil, errors.Join(processors.ErrDatasource, err)
|
|
||||||
} else {
|
|
||||||
return nil, errors.Join(processors.ErrSystem, err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 将响应数据转换为JSON字节
|
|
||||||
respBytes, err := json.Marshal(respData)
|
|
||||||
if err != nil {
|
|
||||||
return nil, errors.Join(processors.ErrSystem, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return respBytes, nil
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user