CommentsServiceImpl.java
6.52 KB
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
package com.cnlive.shenhe.serviceImpl;
import com.alibaba.fastjson.JSONObject;
import com.cnlive.shenhe.entity.ShyComments;
import com.cnlive.shenhe.entity.ShySites;
import com.cnlive.shenhe.entity.ShyUsers;
import com.cnlive.shenhe.mapper.ShyCommentsMapper;
import com.cnlive.shenhe.mapper.ShySitesMapper;
import com.cnlive.shenhe.mapper.ShyUsersMapper;
import com.cnlive.shenhe.utils.AuditPass;
import com.cnlive.shenhe.utils.CommonConst;
import com.cnlive.shenhe.utils.CommonUtils;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import tk.mybatis.mapper.entity.Example;
import java.util.Date;
import java.util.List;
/**
* @Auther: chenhao
* @Date: 2018/12/4 17:30
* @Description:
*/
@Service
public class CommentsServiceImpl {
private static Logger logger = LoggerFactory.getLogger(CommentsServiceImpl.class);
@Autowired
ShyCommentsMapper shyCommentsMapper;
@Autowired
ShySitesMapper shySitesMapper;
@Autowired
ShyUsersMapper shyUsersMapper;
@Autowired
AuditPass Pass;
public List<ShySites> getBusiness(ShySites shySites) {
List<ShySites> sitesList = shySitesMapper.select(shySites);
return sitesList;
}
//**************************************
public List<ShyComments> findshyComments(ShyComments shyComments) {
List<ShyComments> commentsList = shyCommentsMapper.select(shyComments);
return commentsList;
}
public boolean updateshyComments1(ShyComments shyComments) {
int result = shyCommentsMapper.updateByPrimaryKeySelective(shyComments);
if (result == 0) {
return false;
}
return true;
}
public boolean impotComments(ShyComments shyComments) {
int result = shyCommentsMapper.insert(shyComments);
if (result == 0) {
return false;
}
return true;
}
public int updateComment(Integer id, Integer state, String msg) {
ShyComments shyComments = shyCommentsMapper.selectByPrimaryKey(id);
shyComments.setState(state);
shyComments.setMsg(msg);
return shyCommentsMapper.updateByPrimaryKeySelective(shyComments);
}
public PageInfo<ShyComments> getPage(String activity_id, String content, Integer is_hot, Date start_date, Date end_date, String states, String auditor, Integer page, Integer pageSize, String orderByClause, Integer spid) {
Example example = new Example(ShyComments.class);
Example.Criteria criteria = example.createCriteria();
if (CommonUtils.isNotEmpty(orderByClause)) {
example.setOrderByClause(orderByClause);
} else {
example.setOrderByClause("comment_time desc");
}
if (CommonUtils.isNotNull(start_date) && CommonUtils.isNotNull(end_date)) {
criteria.andGreaterThanOrEqualTo("comment_time", start_date);
criteria.andLessThanOrEqualTo("comment_time", end_date);
}
if (CommonUtils.isNotEmpty(content)) {
criteria.andLike("comment_content", "%" + content + "%");
}
if (CommonUtils.isNotEmpty(auditor)) {
criteria.andEqualTo("auditor", auditor);
}
if (CommonUtils.isNotNull(spid)) {
criteria.andEqualTo("spid", spid);
}
if (CommonUtils.isNotNull(is_hot)) {
criteria.andEqualTo("is_hot", is_hot);
}
if (CommonUtils.isNotEmpty(activity_id)) {
criteria.andLike("activity_id", "%" + activity_id + "%");
}
if (CommonUtils.isNotEmpty(states)) {
Example.Criteria criteria1 = example.createCriteria();
String[] stas = states.split(",");
for (String s : stas) {
criteria1.orEqualTo("state", Integer.parseInt(s));
}
example.and(criteria1);
}
PageHelper.startPage(page, pageSize, true);
List<ShyComments> commentsList = shyCommentsMapper.selectByExample(example);
PageInfo<ShyComments> pageInfo = new PageInfo<>(commentsList);
return pageInfo;
}
public ShyComments getDetailsComment(Integer id) {
ShyComments comment = shyCommentsMapper.selectByPrimaryKey(id);
if (comment.getState() != CommonConst.AUDIT_INTT) {
String auditorName = "白名单";
String auditor_id = comment.getAuditor_id();
if (CommonUtils.isNotEmpty(auditor_id)) {
ShyUsers user = new ShyUsers();
user.setUser_id(auditor_id);
user = shyUsersMapper.selectOne(user);
auditorName = user.getUsername() + user.getEmail();
}
comment.setAuditor(auditorName);
}
return comment;
}
public boolean updateState(String ids, Integer state, String userId) {
boolean success = true;
String[] commentIds = ids.split(",");
for (String commentId : commentIds) {
ShyComments comment = shyCommentsMapper.selectByPrimaryKey(Integer.parseInt(commentId));
JSONObject json = new JSONObject();
json.put("activity_id", comment.getActivity_id());
json.put("state", state + 2);
json.put("attr_tags", "");
json.put("msg", "");
JSONObject result = new JSONObject();
try {
result = Pass.commentPass(json, comment.getCallback());
} catch (Exception e) {
logger.error("评论回调失败,activity_id:{}", comment.getActivity_id());
success = false;
break;
}
if (result == null) {
logger.error("评论回调错误,且无返回信息。activity_id:{}", comment.getActivity_id());
success = false;
break;
} else {
Integer code = result.getInteger("errorCode");
if (code != 0) {
logger.error("评论回调错误,activity_id:{},errorCode:{},errorMessage:{}", comment.getActivity_id(), code, result.getString("errorMessage"));
success = false;
break;
}
comment.setState(state);
comment.setAuditor_id(userId);
int i = shyCommentsMapper.updateByPrimaryKeySelective(comment);
if (i != 1) {
success = false;
}
}
}
return success;
}
}