1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package com.java110.comment.listener;
 
import com.alibaba.fastjson.JSONObject;
import com.java110.comment.dao.ICommentServiceDao;
import com.java110.utils.constant.BusinessTypeConstant;
import com.java110.utils.constant.StatusConstant;
import com.java110.utils.util.Assert;
import com.java110.core.annotation.Java110Listener;
import com.java110.core.context.DataFlowContext;
import com.java110.entity.center.Business;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
 
import java.util.HashMap;
import java.util.Map;
 
/**
 * 保存 评论 侦听
 * 处理 comment 和 subComment 节点
 * Created by wuxw on 2018/5/18.
 */
@Java110Listener("saveCommentAndSubCommentListener")
@Transactional
public class SaveCommentAndSubCommentListener extends AbstractCommentBusinessServiceDataFlowListener {
 
    private final static Logger logger = LoggerFactory.getLogger(SaveCommentAndSubCommentListener.class);
 
    @Autowired
    ICommentServiceDao commentServiceDaoImpl;
 
    @Override
    public int getOrder() {
        return 2;
    }
 
    @Override
    public String getBusinessTypeCd() {
        return BusinessTypeConstant.BUSINESS_TYPE_SAVE_COMMENT_INFO;
    }
 
    /**
     * 保存评论信息 business 表中
     * @param dataFlowContext 数据对象
     * @param business 当前业务对象
     */
    @Override
    protected void doSaveBusiness(DataFlowContext dataFlowContext, Business business) {
        JSONObject data = business.getDatas();
        Assert.notEmpty(data,"没有datas 节点,或没有子节点需要处理");
 
        //处理 businessShop 节点
        if(data.containsKey("comment")){
            JSONObject comment = data.getJSONObject("comment");
            doComment(business,comment);
            dataFlowContext.addParamOut("commentId",comment.getString("commentId"));
        }
 
        if(data.containsKey("subComment")){
            JSONObject subComment = data.getJSONObject("subComment");
            doSubComment(business,subComment);
        }
 
    }
 
    /**
     * business 数据转移到 instance
     * @param dataFlowContext 数据对象
     * @param business 当前业务对象
     */
    @Override
    protected void doBusinessToInstance(DataFlowContext dataFlowContext, Business business) {
        //todo buy 没有business过程,所以这里不做处理
    }
 
    /**
     * 撤单
     * @param dataFlowContext 数据对象
     * @param business 当前业务对象
     */
    @Override
    protected void doRecover(DataFlowContext dataFlowContext, Business business) {
        String bId = business.getbId();
        //Assert.hasLength(bId,"请求报文中没有包含 bId");
        Map info = new HashMap();
        info.put("bId",bId);
        info.put("statusCd",StatusConstant.STATUS_CD_VALID);
        Map paramIn = new HashMap();
        paramIn.put("bId",bId);
        paramIn.put("statusCd",StatusConstant.STATUS_CD_INVALID);
        //商户信息
        Map comment = commentServiceDaoImpl.getComment(info);
        if(comment != null && !comment.isEmpty()){
            paramIn.put("commentId",comment.get("comment_id").toString());
            commentServiceDaoImpl.updateCommentInstance(paramIn);
            dataFlowContext.addParamOut("commentId",comment.get("comment_id"));
        }
        //评论内容
        Map subComment = commentServiceDaoImpl.getSubComment(info);
        if(subComment != null && !subComment.isEmpty()){
            paramIn.put("subCommentId",subComment.get("sub_comment_id").toString());
            commentServiceDaoImpl.updateSubCommentInstance(paramIn);
            dataFlowContext.addParamOut("subCommentId",subComment.get("sub_comment_id"));
        }
    }
 
 
 
    /**
     * 处理 comment 节点
     * @param business 总的数据节点
     * @param comment 评论信息
     */
    private void doComment(Business business,JSONObject comment){
 
        Assert.jsonObjectHaveKey(comment,"commentId","comment 节点下没有包含 commentId 节点");
 
        Assert.jsonObjectHaveKey(comment,"outId","comment 节点下没有包含 outId 节点");
 
        Assert.jsonObjectHaveKey(comment,"userId","comment 节点下没有包含 userId 节点");
 
        comment.put("bId",business.getbId());
 
        //保存商户信息
        commentServiceDaoImpl.saveCommentInstance(comment);
 
    }
 
    /**
     * 处理 subComment 节点
     * @param business 总的数据节点
     * @param subComment 评论信息
     */
    private void doSubComment(Business business,JSONObject subComment){
 
        Assert.jsonObjectHaveKey(subComment,"commentId","subComment 节点下没有包含 commentId 节点");
 
        Assert.jsonObjectHaveKey(subComment,"subCommentTypeCd","subComment 节点下没有包含 subCommentTypeCd 节点");
 
        Assert.jsonObjectHaveKey(subComment,"commentContext","subComment 节点下没有包含 commentContext 节点");
 
        subComment.put("bId",business.getbId());
 
        //保存商户信息
        commentServiceDaoImpl.saveSubCommentInstance(subComment);
 
    }
 
 
 
 
    @Override
    public ICommentServiceDao getCommentServiceDaoImpl() {
        return commentServiceDaoImpl;
    }
 
    public void setCommentServiceDaoImpl(ICommentServiceDao commentServiceDaoImpl) {
        this.commentServiceDaoImpl = commentServiceDaoImpl;
    }
}