|
@@ -1,6 +1,13 @@
|
|
|
package com.yonge.cooleshow.bbs.controller;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.yonge.cooleshow.auth.api.client.SysUserFeignService;
|
|
|
+import com.yonge.cooleshow.auth.api.entity.SysUser;
|
|
|
+import com.yonge.cooleshow.bbs.dto.BbsPrivateMessageDto;
|
|
|
+import com.yonge.cooleshow.bbs.dto.MessageReadDto;
|
|
|
+import com.yonge.cooleshow.bbs.dto.PrivateMessagePersonVo;
|
|
|
+import com.yonge.cooleshow.bbs.enums.YesOrNoEnum;
|
|
|
+import com.yonge.toolset.base.exception.BizException;
|
|
|
import com.yonge.toolset.base.page.PageInfo;
|
|
|
import com.yonge.cooleshow.common.controller.BaseController;
|
|
|
import com.yonge.cooleshow.common.entity.HttpResponseResult;
|
|
@@ -19,6 +26,10 @@ import com.yonge.cooleshow.bbs.dto.search.BbsPrivateMessageSearch;
|
|
|
import com.yonge.cooleshow.bbs.entity.BbsPrivateMessage;
|
|
|
import com.yonge.cooleshow.bbs.service.BbsPrivateMessageService;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
+
|
|
|
@RestController
|
|
|
@RequestMapping("/bbsPrivateMessage")
|
|
|
@Api(value = "私信", tags = "私信")
|
|
@@ -27,58 +38,84 @@ public class BbsPrivateMessageController extends BaseController {
|
|
|
@Autowired
|
|
|
private BbsPrivateMessageService bbsPrivateMessageService;
|
|
|
|
|
|
- /**
|
|
|
- * 查询单条
|
|
|
- */
|
|
|
- @GetMapping("/detail/{id}")
|
|
|
- @ApiOperation(value = "详情", notes = "传入id")
|
|
|
- public HttpResponseResult<BbsPrivateMessageVo> detail(@PathVariable("id") Long id) {
|
|
|
- return succeed(bbsPrivateMessageService.detail(id));
|
|
|
- }
|
|
|
+ @Autowired
|
|
|
+ private SysUserFeignService sysUserFeignService;
|
|
|
|
|
|
- /**
|
|
|
- * 查询分页
|
|
|
- */
|
|
|
- @PostMapping("/page")
|
|
|
- @ApiOperation(value = "查询分页", notes = "传入bbsPrivateMessageSearch")
|
|
|
- public HttpResponseResult<PageInfo<BbsPrivateMessageVo>> page(@RequestBody BbsPrivateMessageSearch query) {
|
|
|
- IPage<BbsPrivateMessageVo> pages = bbsPrivateMessageService.selectPage(PageUtil.getPage(query), query);
|
|
|
+
|
|
|
+ @PostMapping("/page/person")
|
|
|
+ @ApiOperation(value = "私信人员列表", notes = "传入bbsPrivateMessageSearch")
|
|
|
+ public HttpResponseResult<PageInfo<PrivateMessagePersonVo>> pagePerson(@RequestBody BbsPrivateMessageSearch query) {
|
|
|
+ SysUser user = sysUserFeignService.queryUserInfo();
|
|
|
+ if (user == null || user.getId() == null) {
|
|
|
+ throw new BizException("请重新登录");
|
|
|
+ }
|
|
|
+ query.setUserId(user.getId());
|
|
|
+ IPage<PrivateMessagePersonVo> pages = bbsPrivateMessageService.selectPersonPage(PageUtil.getPage(query), query);
|
|
|
return succeed(PageUtil.pageInfo(pages));
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * 新增
|
|
|
- */
|
|
|
+
|
|
|
+ @PostMapping("/page/message")
|
|
|
+ @ApiOperation(value = "私信人员消息列表", notes = "传入bbsPrivateMessageSearch")
|
|
|
+ public HttpResponseResult<PageInfo<BbsPrivateMessageDto>> pageMessage(@RequestBody @Valid BbsPrivateMessageSearch query) {
|
|
|
+ SysUser user = sysUserFeignService.queryUserInfo();
|
|
|
+ if (user == null || user.getId() == null) {
|
|
|
+ throw new BizException("请重新登录");
|
|
|
+ }
|
|
|
+ SysUser receiverUser = sysUserFeignService.queryUserById(query.getReceiverUserId());
|
|
|
+ if (receiverUser == null || user.getId() == null) {
|
|
|
+ throw new BizException("私信接收方用户不存在");
|
|
|
+ }
|
|
|
+ query.setUserId(user.getId());
|
|
|
+ IPage<BbsPrivateMessageDto> pages = bbsPrivateMessageService.selectMessagePage(PageUtil.getPage(query), query);
|
|
|
+ List<BbsPrivateMessageDto> collect = pages.getRecords().stream().peek(bbsPrivateMessageDto -> {
|
|
|
+ bbsPrivateMessageDto.setReceiverAvatar(receiverUser.getAvatar());
|
|
|
+ bbsPrivateMessageDto.setReceiverName(receiverUser.getUsername());
|
|
|
+ bbsPrivateMessageDto.setUserName(user.getUsername());
|
|
|
+ bbsPrivateMessageDto.setUserAvatar(user.getAvatar());
|
|
|
+
|
|
|
+ }).collect(Collectors.toList());
|
|
|
+ pages.setRecords(collect);
|
|
|
+ return succeed(PageUtil.pageInfo(pages));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
@PostMapping("/save")
|
|
|
- @ApiOperation(value = "新增", notes = "传入bbsPrivateMessage")
|
|
|
+ @ApiOperation(value = "发送私信", notes = "传入bbsPrivateMessage")
|
|
|
public HttpResponseResult save(@Valid @RequestBody BbsPrivateMessage bbsPrivateMessage) {
|
|
|
- return status(bbsPrivateMessageService.save(bbsPrivateMessage));
|
|
|
+
|
|
|
+ SysUser user = sysUserFeignService.queryUserInfo();
|
|
|
+ if (user == null || user.getId() == null) {
|
|
|
+ throw new BizException("请重新登录");
|
|
|
+ }
|
|
|
+
|
|
|
+ SysUser receiverUser = sysUserFeignService.queryUserById(bbsPrivateMessage.getReceiverUserId());
|
|
|
+ if (receiverUser == null || user.getId() == null) {
|
|
|
+ throw new BizException("私信接收方用户不存在");
|
|
|
+ }
|
|
|
+ bbsPrivateMessage.setSendUserId(user.getId());
|
|
|
+ bbsPrivateMessage.setCreatedTime(new Date());
|
|
|
+ bbsPrivateMessage.setReadFlag(YesOrNoEnum.NO);
|
|
|
+ bbsPrivateMessageService.save(bbsPrivateMessage);
|
|
|
+ return succeed(bbsPrivateMessage);
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * 修改
|
|
|
- */
|
|
|
- @PostMapping("/update")
|
|
|
- @ApiOperation(value = "修改", notes = "传入bbsPrivateMessage")
|
|
|
- public HttpResponseResult update(@Valid @RequestBody BbsPrivateMessage bbsPrivateMessage) {
|
|
|
- return status(bbsPrivateMessageService.updateById(bbsPrivateMessage));
|
|
|
+
|
|
|
+
|
|
|
+ @PostMapping("/read")
|
|
|
+ @ApiOperation(value = "设置已读", notes = "传入bbsPrivateMessage")
|
|
|
+ public HttpResponseResult read(@RequestBody @Valid MessageReadDto readDto) {
|
|
|
+ SysUser user = sysUserFeignService.queryUserInfo();
|
|
|
+ if (user == null || user.getId() == null) {
|
|
|
+ throw new BizException("请重新登录");
|
|
|
+ }
|
|
|
+ readDto.setUserId(user.getId());
|
|
|
+ return status(bbsPrivateMessageService.read(readDto));
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * 新增或修改
|
|
|
- */
|
|
|
- @PostMapping("/submit")
|
|
|
- @ApiOperation(value = "新增或修改", notes = "传入bbsPrivateMessage")
|
|
|
- public HttpResponseResult submit(@Valid @RequestBody BbsPrivateMessage bbsPrivateMessage) {
|
|
|
- return status(bbsPrivateMessageService.saveOrUpdate(bbsPrivateMessage));
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 删除
|
|
|
- */
|
|
|
- @PostMapping("/remove")
|
|
|
- @ApiOperation(value = "逻辑删除", notes = "传入ids")
|
|
|
- public HttpResponseResult remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ @PostMapping("/remove/{ids}")
|
|
|
+ @ApiOperation(value = "测回消息", notes = "传入ids")
|
|
|
+ public HttpResponseResult remove(@PathVariable String ids) {
|
|
|
if (StringUtil.isEmpty(ids)) {
|
|
|
return failed("参数不能为空");
|
|
|
}
|