|
@@ -0,0 +1,134 @@
|
|
|
|
|
+/*
|
|
|
|
|
+ * Copyright [2022] [https://www.xiaonuo.vip]
|
|
|
|
|
+ *
|
|
|
|
|
+ * Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点:
|
|
|
|
|
+ *
|
|
|
|
|
+ * 1.请不要删除和修改根目录下的LICENSE文件。
|
|
|
|
|
+ * 2.请不要删除和修改Snowy源码头部的版权声明。
|
|
|
|
|
+ * 3.本项目代码可免费商业使用,商业使用请保留源码和相关描述文件的项目出处,作者声明等。
|
|
|
|
|
+ * 4.分发源码时候,请注明软件出处 https://www.xiaonuo.vip
|
|
|
|
|
+ * 5.不可二次分发开源参与同类竞品,如有想法可联系团队xiaonuobase@qq.com商议合作。
|
|
|
|
|
+ * 6.若您的项目无法满足以上几点,需要更多功能代码,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.xiaonuo.vip
|
|
|
|
|
+ */
|
|
|
|
|
+package vip.xiaonuo.forum.modular.postnotlike.service.impl;
|
|
|
|
|
+
|
|
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
|
|
+import cn.hutool.core.collection.CollStreamUtil;
|
|
|
|
|
+import cn.hutool.core.util.IdUtil;
|
|
|
|
|
+import cn.hutool.core.util.ObjectUtil;
|
|
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
|
|
+import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
+import vip.xiaonuo.auth.core.pojo.SaBaseLoginUser;
|
|
|
|
|
+import vip.xiaonuo.auth.core.util.StpLoginUserUtil;
|
|
|
|
|
+import vip.xiaonuo.common.enums.CommonSortOrderEnum;
|
|
|
|
|
+import vip.xiaonuo.common.exception.CommonException;
|
|
|
|
|
+import vip.xiaonuo.common.page.CommonPageRequest;
|
|
|
|
|
+import vip.xiaonuo.common.pojo.CommonResult;
|
|
|
|
|
+import vip.xiaonuo.forum.modular.postlike.entity.ForumPostLike;
|
|
|
|
|
+import vip.xiaonuo.forum.modular.postnotlike.entity.ForumPostNotLike;
|
|
|
|
|
+import vip.xiaonuo.forum.modular.postnotlike.mapper.ForumPostNotLikeMapper;
|
|
|
|
|
+import vip.xiaonuo.forum.modular.postnotlike.param.ForumPostNotLikeAddParam;
|
|
|
|
|
+import vip.xiaonuo.forum.modular.postnotlike.param.ForumPostNotLikeEditParam;
|
|
|
|
|
+import vip.xiaonuo.forum.modular.postnotlike.param.ForumPostNotLikeIdParam;
|
|
|
|
|
+import vip.xiaonuo.forum.modular.postnotlike.param.ForumPostNotLikePageParam;
|
|
|
|
|
+import vip.xiaonuo.forum.modular.postnotlike.service.ForumPostNotLikeService;
|
|
|
|
|
+
|
|
|
|
|
+import java.util.List;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 论坛-点踩记录表Service接口实现类
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author 金吉龙
|
|
|
|
|
+ * @date 2025/08/18 13:32
|
|
|
|
|
+ **/
|
|
|
|
|
+@Service
|
|
|
|
|
+public class ForumPostNotLikeServiceImpl extends ServiceImpl<ForumPostNotLikeMapper, ForumPostNotLike> implements ForumPostNotLikeService {
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public Page<ForumPostNotLike> page(ForumPostNotLikePageParam forumPostNotLikePageParam) {
|
|
|
|
|
+ QueryWrapper<ForumPostNotLike> queryWrapper = new QueryWrapper<>();
|
|
|
|
|
+ if(ObjectUtil.isAllNotEmpty(forumPostNotLikePageParam.getSortField(), forumPostNotLikePageParam.getSortOrder())) {
|
|
|
|
|
+ CommonSortOrderEnum.validate(forumPostNotLikePageParam.getSortOrder());
|
|
|
|
|
+ queryWrapper.orderBy(true, forumPostNotLikePageParam.getSortOrder().equals(CommonSortOrderEnum.ASC.getValue()),
|
|
|
|
|
+ StrUtil.toUnderlineCase(forumPostNotLikePageParam.getSortField()));
|
|
|
|
|
+ } else {
|
|
|
|
|
+ queryWrapper.lambda().orderByAsc(ForumPostNotLike::getNotLikeId);
|
|
|
|
|
+ }
|
|
|
|
|
+ return this.page(CommonPageRequest.defaultPage(), queryWrapper);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @Transactional(rollbackFor = Exception.class)
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public CommonResult<String> add(ForumPostNotLikeAddParam forumPostNotLikeAddParam) {
|
|
|
|
|
+ // 校验是否已经点踩过
|
|
|
|
|
+ QueryWrapper<ForumPostNotLike> queryWrapper = new QueryWrapper<>();
|
|
|
|
|
+ queryWrapper.lambda().eq(ForumPostNotLike::getUserId, StpLoginUserUtil.getLoginUser().getId());
|
|
|
|
|
+ queryWrapper.lambda().eq(ForumPostNotLike::getTargetId, forumPostNotLikeAddParam.getTargetId());
|
|
|
|
|
+ long count = this.count(queryWrapper);
|
|
|
|
|
+ if (count > 0) {
|
|
|
|
|
+ return CommonResult.ok();
|
|
|
|
|
+ }
|
|
|
|
|
+ // 执行点踩的添加
|
|
|
|
|
+ String uuid = IdUtil.fastSimpleUUID();
|
|
|
|
|
+ SaBaseLoginUser loginUser = StpLoginUserUtil.getLoginUser();
|
|
|
|
|
+ ForumPostNotLike forumPostNotLike = BeanUtil.toBean(forumPostNotLikeAddParam, ForumPostNotLike.class);
|
|
|
|
|
+ forumPostNotLike.setUserId(loginUser.getId());
|
|
|
|
|
+ forumPostNotLike.setNotLikeId(uuid);
|
|
|
|
|
+ boolean save = this.save(forumPostNotLike);
|
|
|
|
|
+ if(save) {
|
|
|
|
|
+ return CommonResult.ok();
|
|
|
|
|
+ } else {
|
|
|
|
|
+ return CommonResult.error();
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @Transactional(rollbackFor = Exception.class)
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public void edit(ForumPostNotLikeEditParam forumPostNotLikeEditParam) {
|
|
|
|
|
+ ForumPostNotLike forumPostNotLike = this.queryEntity(forumPostNotLikeEditParam.getNotLikeId());
|
|
|
|
|
+ BeanUtil.copyProperties(forumPostNotLikeEditParam, forumPostNotLike);
|
|
|
|
|
+ this.updateById(forumPostNotLike);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @Transactional(rollbackFor = Exception.class)
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public void delete(List<ForumPostNotLikeIdParam> forumPostNotLikeIdParamList) {
|
|
|
|
|
+ // 执行删除
|
|
|
|
|
+ this.removeByIds(CollStreamUtil.toList(forumPostNotLikeIdParamList, ForumPostNotLikeIdParam::getNotLikeId));
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public ForumPostNotLike detail(ForumPostNotLikeIdParam forumPostNotLikeIdParam) {
|
|
|
|
|
+ return this.queryEntity(forumPostNotLikeIdParam.getNotLikeId());
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public ForumPostNotLike queryEntity(String id) {
|
|
|
|
|
+ ForumPostNotLike forumPostNotLike = this.getById(id);
|
|
|
|
|
+ if(ObjectUtil.isEmpty(forumPostNotLike)) {
|
|
|
|
|
+ throw new CommonException("论坛-点踩记录表不存在,id值为:{}", id);
|
|
|
|
|
+ }
|
|
|
|
|
+ return forumPostNotLike;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public CommonResult<String> cancel(ForumPostNotLikeEditParam forumPostNotLikeEditParam) {
|
|
|
|
|
+ // 查询出点踩记录
|
|
|
|
|
+ QueryWrapper<ForumPostNotLike> queryWrapper = new QueryWrapper<>();
|
|
|
|
|
+ queryWrapper.lambda().eq(ForumPostNotLike::getUserId, StpLoginUserUtil.getLoginUser().getId());
|
|
|
|
|
+ queryWrapper.lambda().eq(ForumPostNotLike::getTargetId, forumPostNotLikeEditParam.getTargetId());
|
|
|
|
|
+ ForumPostNotLike forumPostNotLike = this.getOne(queryWrapper);
|
|
|
|
|
+ boolean b = this.removeById(forumPostNotLike.getNotLikeId());
|
|
|
|
|
+ if (b) {
|
|
|
|
|
+ return CommonResult.ok();
|
|
|
|
|
+ } else {
|
|
|
|
|
+ return CommonResult.error();
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+}
|