其他分享
首页 > 其他分享> > 文章入库

文章入库

作者:互联网

controller 业务逻辑:

  1. 判断传入参数是否合法
        if (bindingResult.hasErrors()) {
            Map<String, String> bindResultErrors = super.getBindResultErrors(bindingResult);

            return GraceJSONResult.errorMap(bindResultErrors);
        }
  1. 判断文章类型 有无封面 若文章类型为有封面 必须传入封面地址 否则抛出异常 若无封面 设置封面地址为""即可
        // 判断文章类型是否为单封面状态 若为单封面状态必须传入 articleCover
        if (Objects.equals(newArticleBO.getArticleType(), ArticleTypeEnum.ONE_IMAGE.getType())) {
            if (StringUtils.isBlank(newArticleBO.getArticleCover())) {
                GraceException.display(ResponseStatusEnum.ARTICLE_COVER_NOT_EXIST_ERROR);
            }
        } else {
            newArticleBO.setArticleCover("");
        }
  1. 判断文章类型是否在数据库中存在
        // 判断用户选中的文章类型是否存在
        String categoryCacheJson = redisOperator.get(CATEGORY_CACHE);
        if (StringUtils.isBlank(categoryCacheJson)) {
            GraceException.display(ResponseStatusEnum.FAILED);
        }

        Category temp = null;
        List categoryMapList = JsonUtil.jsonToObject(categoryCacheJson, List.class);

        // 将redis中的数据进行遍历 对比传入的类别id是否可以匹配到
        for (Object categoryObject : categoryMapList) {
            try {
                Category category = objectMapper.readValue(objectMapper.writeValueAsString(categoryObject), Category.class);

                if (Objects.equals(category.getId(), newArticleBO.getCategoryId())) {
                    temp = category;

                    break;
                }
            } catch (JsonProcessingException e) {
                e.printStackTrace();
            }
        }

        if (temp == null) {
            GraceException.display(ResponseStatusEnum.ARTICLE_CATEGORY_NOT_EXIST_ERROR);
        }
  1. 最后调用service进行插入操作

        // 进行添加操作
        articleService.addArticle(newArticleBO, temp);

service业务逻辑:

  1. 设置article的默认值 如评论数 创建时间修改时间等
        Article article = new Article();
        BeanUtils.copyProperties(articleBO, article);
        article.setArticleStatus(ArticleStatusEnums.auditing.getType());

        // 设置初始值
        article.setReadCounts(0);
        article.setCommentCounts(0);
        article.setIsDelete(YesOrNoEnums.NO.getType());
        article.setCreateTime(new Date());
        article.setUpdateTime(new Date());
        article.setCategoryId(category.getId());
  1. 判断文章是否为定时任务 若为定时任务则设置PublishTime为定时时间值 否则为立即发送
        // 判断定时任务类型
        if (Objects.equals(articleBO.getIsAppoint(), AppointStatusEnums.regular_update.getType())) {
            article.setPublishTime(articleBO.getPublishTime());
        } else {
            article.setPublishTime(new Date());
        }
  1. 判断修改条数是否为1条 若不为1 则出错
        // 进行入库操作
        int result = articleMapper.insert(article);

        if (result != 1) {
            GraceException.display(ResponseStatusEnum.ARTICLE_CREATE_ERROR);
        }

标签:category,newArticleBO,封面,ResponseStatusEnum,文章,article,GraceException,入库
来源: https://www.cnblogs.com/lyraHeartstrings/p/15292766.html