12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- // Copyright 2019 getensh.com. All rights reserved.
- // Use of this source code is governed by getensh.com.
- package msg_package
- import (
- "context"
- "encoding/json"
- "fmt"
- "git.getensh.com/common/gopkgs/database"
- "git.getensh.com/common/gopkgs/logger"
- "go.uber.org/zap"
- "google.golang.org/grpc/status"
- "gorm.io/gorm"
- "property-common/errors"
- dbmodel "property-common/model"
- pb_v1 "property-common/pb/v1"
- )
- func checkMsgPackageInfoParam(req *pb_v1.MsgPackageInfoRequest) error {
- if req.Id == 0 {
- return status.Error(10003, "id 不能为空")
- }
- return nil
- }
- //
- func MsgPackageInfo(ctx context.Context, req *pb_v1.MsgPackageInfoRequest) (reply *pb_v1.MsgPackageInfoReply, err error) {
- reply = &pb_v1.MsgPackageInfoReply{}
- // 捕获各个task中的异常并返回给调用者
- defer func() {
- if r := recover(); r != nil {
- err = fmt.Errorf("%+v", r)
- e := &status.Status{}
- if er := json.Unmarshal([]byte(err.Error()), e); er != nil {
- logger.Error("err",
- zap.String("system_err", err.Error()),
- zap.Stack("stacktrace"))
- }
- }
- }()
- // 参数检查
- err = checkMsgPackageInfoParam(req)
- if err != nil {
- return nil, err
- }
- p := &dbmodel.TMsgPackage{}
- where := map[string]interface{}{
- "id": req.Id,
- }
- err = p.Find(database.DB(), where)
- if err != nil && err != gorm.ErrRecordNotFound {
- return nil, errors.DataBaseError
- }
- if p.ID == 0 {
- return nil, errors.ErrRecordNotFound
- }
- // 获取套餐的应用id
- reply.MsgCount = p.MsgCount
- reply.Id = p.ID
- reply.Name = p.Name
- reply.Comment = p.Comment
- reply.Price = p.Price
- return reply, nil
- }
|