123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- // Copyright 2019 getensh.com. All rights reserved.
- // Use of this source code is governed by getensh.com.
- package neighbor
- import (
- "context"
- "encoding/json"
- "fmt"
- "gorm.io/gorm"
- "property-garden/errors"
- "property-garden/impl/v1/oss_utils"
- dbmodel "property-garden/model"
- pb_v1 "property-garden/pb/v1"
- "property-garden/utils"
- "strings"
- "time"
- "git.getensh.com/common/gopkgs/database"
- "git.getensh.com/common/gopkgs/logger"
- "go.uber.org/zap"
- "google.golang.org/grpc/status"
- )
- func checkNeighborCommentUpdateParam(req *pb_v1.NeighborCommentUpdateRequest) error {
- switch {
- case req.GardenId == 0:
- return status.Error(10003, "小区不能为空")
- case req.Content == "":
- return status.Error(10003, "内容不能为空")
- case req.Id == 0:
- return status.Error(10003, "id 不能为空")
- case req.Uid == 0:
- return status.Error(10003, "uid 不能为空")
- }
- return nil
- }
- func NeighborCommentUpdate(ctx context.Context, req *pb_v1.NeighborCommentUpdateRequest) (reply *pb_v1.NeighborCommentUpdateReply, err error) {
- reply = &pb_v1.NeighborCommentUpdateReply{}
- // 捕获各个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 = checkNeighborCommentUpdateParam(req)
- if err != nil {
- return nil, err
- }
- dbname := utils.GetGardenDbName(req.GardenId)
- // 获取旧数据
- old := dbmodel.NewNeighborComment(dbname)
- where := map[string]interface{}{
- "id": req.Id,
- }
- err = old.Find(database.DB(), where)
- if err != nil && err != gorm.ErrRecordNotFound {
- return nil, errors.DataBaseError
- }
- if old.ID == 0 {
- return nil, errors.ErrRecordNotFound
- }
- if old.Uid != req.Uid {
- return nil, status.Error(10003, "非本人不能修改")
- }
- // 更新新数据
- now := time.Now()
- comment := dbmodel.NewNeighborComment(dbname)
- values := map[string]interface{}{
- "content": req.Content,
- "updated_at": now,
- "pics": utils.StringJoin(req.Pics, ";"),
- }
- where = map[string]interface{}{
- "id": req.Id,
- }
- db := database.DB().Begin()
- err = comment.Update(db, where, values)
- if err != nil {
- db.Rollback()
- return nil, errors.DataBaseError
- }
- if err := oss_utils.OssObjAdd(req.Pics, strings.Split(old.Pics, ";")); err != nil {
- db.Rollback()
- return nil, err
- }
- db.Commit()
- return reply, nil
- }
|