net.mingsoft.comment.action.CommentAction Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2012-present 铭软科技(mingsoft.net)
* 本软件及相关文档文件(以下简称“软件”)的版权归 铭软科技 所有
* 遵循 铭软科技《服务协议》中的《保密条款》
*/
package net.mingsoft.comment.action;
import cn.hutool.core.bean.BeanUtil;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.date.DateUtil;
import cn.hutool.json.JSONUtil;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import net.mingsoft.base.entity.ResultData;
import net.mingsoft.base.util.BundleUtil;
import net.mingsoft.basic.action.BaseAction;
import net.mingsoft.basic.annotation.LogAnn;
import net.mingsoft.basic.bean.EUListBean;
import net.mingsoft.basic.constant.e.BusinessTypeEnum;
import net.mingsoft.basic.constant.e.CookieConstEnum;
import net.mingsoft.basic.entity.ManagerEntity;
import net.mingsoft.basic.exception.BusinessException;
import net.mingsoft.basic.util.BasicUtil;
import net.mingsoft.comment.bean.CommentBean;
import net.mingsoft.comment.biz.ICommentBiz;
import net.mingsoft.comment.entity.CommentEntity;
import net.mingsoft.mdiy.entity.DictEntity;
import net.mingsoft.mdiy.util.DictUtil;
import net.mingsoft.people.biz.IPeopleUserBiz;
import net.mingsoft.people.entity.PeopleUserEntity;
import org.apache.commons.lang3.StringUtils;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.*;
import springfox.documentation.annotations.ApiIgnore;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.*;
/**
* 评论表管理控制层
*
* @author 铭飞开源团队
* @date 2019年7月16日
*/
@Api(tags = {"后端-评论模块接口"})
@Controller
@RequestMapping("/${ms.manager.path}/comment")
public class CommentAction extends BaseAction {
/**
* 注入评论表业务层
*/
@Autowired
private ICommentBiz commentBiz;
/**
* 会员业务层层
*/
@Autowired
private IPeopleUserBiz peopleUserBiz;
/**
* 返回主界面index
*
* @param response
* @param request
* @return
*/
@ApiIgnore
@GetMapping("/index")
@RequiresPermissions("comment:comment:view")
public String index(HttpServletResponse response, HttpServletRequest request) {
return "/comment/index";
}
/**
* 返回回复界面reply
*
* @param response
* @param request
* @return
*/
@ApiIgnore
@RequiresPermissions("comment:comment:reply")
@GetMapping("/reply")
public String reply(HttpServletResponse response, HttpServletRequest request) {
return "/comment/reply";
}
/**
* 返回form
*
* @param response
* @param request
* @return
*/
@ApiIgnore
@GetMapping("/form")
@RequiresPermissions("comment:comment:view")
public String form(HttpServletResponse response, HttpServletRequest request) {
return "/comment/form";
}
/**
* 查询评论表列表
*
* @param comment 评论表实体
*/
@ApiOperation(value = "查询评论表列表接口")
@ApiImplicitParams({
@ApiImplicitParam(name = "peopleName", value = "评论者昵称", required = false, paramType = "query"),
@ApiImplicitParam(name = "peopleId", value = "评论者编号", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentId", value = "评论id", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentAudit", value = "0默认 显示 1:审核不通过", required = false, paramType = "query"),
@ApiImplicitParam(name = "dataTitle", value = "业务名称", required = false, paramType = "query"),
@ApiImplicitParam(name = "dataType", value = "评论类型", required = true, paramType = "query"),
@ApiImplicitParam(name = "commentStartTime", value = "开始时间", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentEndTime", value = "结束时间", required = false, paramType = "query"),
})
@PostMapping(value ="/list")
@ResponseBody
@RequiresPermissions("comment:comment:view")
public ResultData list(@ModelAttribute @ApiIgnore CommentBean comment, HttpServletResponse response, HttpServletRequest request, @ApiIgnore ModelMap model, BindingResult result) {
// 判断评论类型
DictEntity dict = DictUtil.get("评论类型", comment.getDataType(), null);
if (dict == null) {
throw new BusinessException(BundleUtil.getBaseString("err.error",
BundleUtil.getString(net.mingsoft.comment.constant.Const.RESOURCES, "comment.type")));
}
comment.setDataType(dict.getDictValue());
// 开始时间
String startTime = comment.getCommentStartTime();
// 结束时间
String endTime = comment.getCommentEndTime();
// dataTitle 需要能够模糊查询
String dataTitle = comment.getDataTitle();
if (StringUtils.isNotBlank(dataTitle)){
comment.setDataTitle(null);
}
LambdaQueryWrapper wrapper = new LambdaQueryWrapper<>(comment);
wrapper.like(StringUtils.isNotBlank(dataTitle),CommentEntity::getDataTitle, dataTitle);
wrapper.ge(StringUtils.isNotBlank(startTime), CommentEntity::getCommentTime, DateUtil.format(DateUtil.parse(startTime), "yyyy-MM-dd HH:mm:ss"))
.le(StringUtils.isNotBlank(endTime), CommentEntity::getCommentTime, DateUtil.format(DateUtil.parse(endTime), "yyyy-MM-dd HH:mm:ss"));
// 判断没有topId才走commentId查询
if (StringUtils.isEmpty(comment.getTopId())) {
wrapper.isNull(StringUtils.isBlank(comment.getCommentId()), CommentEntity::getCommentId)
.eq(StringUtils.isNotBlank(comment.getCommentId()), CommentEntity::getCommentId, comment.getCommentId());
}
// 根据时间排序
wrapper.orderByDesc(CommentEntity::getCommentTime);
BasicUtil.startPage();
List commentEntityList = commentBiz.list(wrapper);
// 列表页才转bean
if (StringUtils.isBlank(comment.getTopId())){
List commentBeans = new ArrayList<>();
commentEntityList.forEach(commentEntity -> {
CommentBean commentBean = new CommentBean();
BeanUtil.copyProperties(commentEntity,commentBean);
LambdaQueryWrapper wrapper1 = new LambdaQueryWrapper<>();
// 0 未审核 1 审核通过
wrapper1.eq(CommentEntity::getCommentAudit,0)
.eq(CommentEntity::getTopId,commentEntity.getId())
.eq(CommentEntity::getDataTitle,commentEntity.getDataTitle());
long count = commentBiz.count(wrapper1);
commentBean.setUnAuditedChildCommentCount(count);
commentBeans.add(commentBean);
});
EUListBean list = new EUListBean(commentBeans, (int) BasicUtil.endPage(commentEntityList).getTotal());
return ResultData.build().success(list);
}
EUListBean list = new EUListBean(commentEntityList, (int) BasicUtil.endPage(commentEntityList).getTotal());
return ResultData.build().success(list);
}
@ApiOperation(value = "发布会员评论")
@ApiImplicitParams({
@ApiImplicitParam(name = "dataId", value = "数据id", required = true, paramType = "query"),
@ApiImplicitParam(name = "dataType", value = "业务类型", required = true, paramType = "query"),
@ApiImplicitParam(name = "commentId", value = "父评论id", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentPoints", value = "评价打分", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentContent", value = "评论的内容", required = true, paramType = "query"),
@ApiImplicitParam(name = "commentPicture", value = "图片", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentFileJson", value = "附件json", required = false, paramType = "query"),
@ApiImplicitParam(name = "rand_code", value = "会员模式默认验证码非必须", required = false, paramType = "query")
})
@PostMapping("/peopleSave")
@ResponseBody
@RequiresPermissions("comment:comment:save")
public ResultData peopleSave(@ModelAttribute @ApiIgnore CommentEntity comment, HttpServletRequest request, HttpServletResponse response) {
// 便于后台提交数据完整
Integer peopleId = comment.getPeopleId();
PeopleUserEntity peopleUserEntity = (PeopleUserEntity) peopleUserBiz.getEntity(peopleId);
// 设置会员相关信息
if (peopleUserEntity != null){
Map commentPeopleInfo = new HashMap();
// 这里可以根据业务需求填充用户数据
commentPeopleInfo.put("puIcon",peopleUserEntity.getPuIcon());
String peopleInfo = JSONUtil.toJsonStr(commentPeopleInfo);
comment.setPeopleInfo(peopleInfo);
comment.setPeopleName(peopleUserEntity.getPuNickname());
comment.setPeopleId(peopleUserEntity.getPeopleId());
}
if (StringUtils.isEmpty(comment.getCommentId())) {
comment.setCommentId(null);
}
commentBiz.saveComment(comment);
return ResultData.build().success(JSONUtil.toJsonStr(comment));
}
@ApiOperation(value = "更新评论")
@ApiImplicitParams({
@ApiImplicitParam(name = "dataId", value = "数据id", required = true, paramType = "query"),
@ApiImplicitParam(name = "dataType", value = "业务类型", required = true, paramType = "query"),
@ApiImplicitParam(name = "commentId", value = "父评论id", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentPoints", value = "评价打分", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentContent", value = "评论的内容", required = true, paramType = "query"),
@ApiImplicitParam(name = "commentPicture", value = "图片", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentFileJson", value = "附件json", required = false, paramType = "query"),
@ApiImplicitParam(name = "rand_code", value = "会员模式默认验证码非必须", required = false, paramType = "query")
})
@PostMapping("/update")
@ResponseBody
@RequiresPermissions("comment:comment:update")
public ResultData update(@ModelAttribute @ApiIgnore CommentEntity comment, HttpServletRequest request, HttpServletResponse response) {
if (StringUtils.isBlank(comment.getId())){
return ResultData.build().error(getResString("err.empty",getResString("id")));
}
// 便于后台修改数据
Integer peopleId = comment.getPeopleId();
PeopleUserEntity peopleUserEntity = (PeopleUserEntity) peopleUserBiz.getEntity(peopleId);
// 设置会员相关信息
if (peopleUserEntity != null){
Map commentPeopleInfo = new HashMap();
// 这里可以根据业务需求填充用户数据
commentPeopleInfo.put("puIcon",peopleUserEntity.getPuIcon());
String peopleInfo = JSONUtil.toJsonStr(commentPeopleInfo);
comment.setPeopleInfo(peopleInfo);
comment.setPeopleName(peopleUserEntity.getPuNickname());
comment.setPeopleId(peopleUserEntity.getPeopleId());
}
commentBiz.updateById(comment);
return ResultData.build().success(JSONUtil.toJsonStr(comment));
}
@ApiOperation(value = "批量删除评论表")
@LogAnn(title = "批量删除评论表", businessType = BusinessTypeEnum.DELETE)
@PostMapping("/delete")
@ResponseBody
@RequiresPermissions("comment:comment:del")
public ResultData delete(@RequestBody List comments, HttpServletResponse response, HttpServletRequest request) {
// 这里会通过主外键,级联删除子评论数据
if (CollUtil.isEmpty(comments)){
return ResultData.build().error(getResString("err.not.exist",this.getResString("comment")));
}
String[] ids = new String[comments.size()];
for (int i = 0; i < comments.size(); i++) {
String id = comments.get(i).getId();
// 传递的是id
if (StringUtils.isNotBlank(id)){
commentBiz.deleteById(id);
}
}
return ResultData.build().success();
}
@ApiOperation(value = "评论回复")
@ApiImplicitParams({
@ApiImplicitParam(name = "dataType", value = "评论类型", required = true, paramType = "query"),
@ApiImplicitParam(name = "commentId", value = "父评论id", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentContent", value = "评论的内容", required = true, paramType = "query"),
@ApiImplicitParam(name = "commentPoints", value = "评价打分", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentPicture", value = "图片", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentFileJson", value = "附件json", required = false, paramType = "query"),
})
@LogAnn(title = "评论回复", businessType = BusinessTypeEnum.UPDATE)
@PostMapping("/reply")
@ResponseBody
@RequiresPermissions("comment:comment:reply")
public ResultData reply(@ModelAttribute @ApiIgnore CommentEntity comment) {
//根据评论id查找评论实体
CommentEntity parentComment = (CommentEntity) commentBiz.getById(comment.getCommentId());
if (parentComment != null) {
comment.setCommentId(parentComment.getId());
comment.setDataId(parentComment.getDataId());
comment.setDataTitle(parentComment.getDataTitle());
comment.setPeopleId(0);
ManagerEntity manager = BasicUtil.getManager();
comment.setManagerId(manager.getIntId());
comment.setPeopleName(manager.getManagerNickName());
this.commentBiz.saveComment(comment);
// 获取cookie
String cookie = BasicUtil.getCookie(CookieConstEnum.BACK_COOKIE);
return ResultData.build().success(String.valueOf(cookie));
}
return ResultData.build().error(getResString("err.empty",this.getResString("comment")));
}
/**
* 更新评论表信息评论表
*
* @param comment
*/
@ApiOperation(value = "更新评论表信息")
@LogAnn(title = "更新评论表信息", businessType = BusinessTypeEnum.UPDATE)
@ApiImplicitParams({
@ApiImplicitParam(name = "id", value = "评论Id", required = true, paramType = "query"),
@ApiImplicitParam(name = "commentAudit", value = "0默认 显示 1:审核不通过", required = true, paramType = "query")
})
@PostMapping("/updateComment")
@ResponseBody
@RequiresPermissions("comment:comment:audit")
public ResultData updateComment(@RequestBody CommentEntity comment) {
if (StringUtils.isBlank(comment.getId())) {
return ResultData.build().error(getResString("err.empty", this.getResString("comment")));
}
CommentEntity commentEntity = commentBiz.getById(comment.getId());
if (commentEntity==null){
return ResultData.build().error(getResString("err.empty", this.getResString("comment")));
}
commentEntity.setCommentAudit(comment.getCommentAudit());
commentBiz.updateById(commentEntity);
return ResultData.build().success();
}
@ApiOperation(value = "发布评论")
@ApiImplicitParams({
@ApiImplicitParam(name = "dataId", value = "数据Id", required = true, paramType = "query"),
@ApiImplicitParam(name = "commentId", value = "父评论id", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentLike", value = "点赞字段", dataType = "Integer", required = false, paramType = "query"),
@ApiImplicitParam(name = "dataType", value = "评论类型", required = true, paramType = "query"),
@ApiImplicitParam(name = "dataTitle", value = "评论业务标题", required = true, paramType = "query"),
@ApiImplicitParam(name = "commentPoints", value = "评价打分", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentContent", value = "评论的内容", required = true, paramType = "query"),
@ApiImplicitParam(name = "commentPicture", value = "图片", required = false, paramType = "query"),
@ApiImplicitParam(name = "commentFileJson", value = "附件json", required = false, paramType = "query"),
})
@LogAnn(title = "发布评论", businessType = BusinessTypeEnum.INSERT)
@PostMapping("/save")
@ResponseBody
@RequiresPermissions("comment:comment:save")
public ResultData save(@ModelAttribute @ApiIgnore CommentEntity comment) {
if (comment == null) {
return ResultData.build().error(getResString("err.empty", this.getResString("comment")));
}
// 后台评论 获取管理员信息
ManagerEntity manager = BasicUtil.getManager();
comment.setPeopleName(manager.getManagerNickName());
// 没设置peopleId就要设置managerId 比如领导信箱 需要管理员后台回复的功能
if (comment.getPeopleId()==null){
comment.setManagerId(manager.getIntId());
}
this.commentBiz.saveComment(comment);
return ResultData.build().success(comment);
}
/**
* 根据id获取评论详情及评论人信息
* @param id
* @return
*/
@ApiOperation("获取评论信息")
@ApiImplicitParams({
@ApiImplicitParam(name = "id",value = "主键id",required = true,paramType = "query")
})
@GetMapping("/getComment")
@ResponseBody
@RequiresPermissions("comment:comment:view")
public ResultData getComment(String id){
if (StringUtils.isBlank(id)){
return ResultData.build().error(getResString("err.not.exist",this.getResString("comment")));
}
CommentEntity commentEntity = commentBiz.getById(id);
return ResultData.build().success(commentEntity);
}
}