| | |
| | | package vip.xiaonuo.modular.blogarticle.controller; |
| | | |
| | | import cn.hutool.core.bean.BeanUtil; |
| | | import cn.hutool.core.date.DateUtil; |
| | | import cn.hutool.core.util.PageUtil; |
| | | import cn.hutool.core.util.StrUtil; |
| | | import cn.hutool.crypto.SecureUtil; |
| | |
| | | @PostMapping("/blogArticle/add") |
| | | @BusinessLog(title = "外部blog系统_blog文章_增加", opType = LogAnnotionOpTypeEnum.ADD) |
| | | public ResponseData add(@RequestBody @Validated(BlogArticleAddDto.add.class) BlogArticleAddDto addDto) { |
| | | if (!SecureUtil.md5(addDto.getSecret()).equals("8616CFB8D5ED3E5B")) { |
| | | if (!SecureUtil.md5(addDto.getSecret()).equals("b49e4cc48616cfb8d5ed3e5b983165c8")) { |
| | | throw new BlogException("口令错误.."); |
| | | } |
| | | |
| | |
| | | |
| | | BlogArticle article = new BlogArticle(); |
| | | BeanUtil.copyProperties(addDto, article); |
| | | article.setSeparateYear(DateUtil.year(article.getPublishDate())); |
| | | article.setSeparateMonth(DateUtil.month(article.getPublishDate())); |
| | | article.setSeparateDay(DateUtil.dayOfMonth(article.getPublishDate())); |
| | | |
| | | article.setIsEnable(MyConstant.Yes); |
| | | blogArticleService.save(article); |
| | | System.out.println(article.toString()); |
| | | |
| | | |
| | | // blogArticleService.add(blogArticleParam); |
| | | return new SuccessResponseData(); |
| | |
| | | |
| | | if (queryDto.getId() % 2 == 0) { |
| | | String tempURL = this.getBlogSourceURL(find.getArticleFileId()); |
| | | // if (StrUtil.isEmpty(tempURL)) |
| | | // throw new BlogException(BlogExceptionEnum.article_file_lose); |
| | | |
| | | if (StrUtil.isEmpty(tempURL)) |
| | | throw new BlogException(BlogExceptionEnum.article_file_lose); |
| | | |
| | | vo.setArticleFileURL(tempURL); |
| | | vo.setArticleFileURL("http://t.inleft.com/share/book/blog/a岛神灯.md"); |
| | | } else { |
| | | vo.setArticleFileURL("http://t.inleft.com/share/book/blog/es-search.md"); |
| | | } |
| | |
| | | return null; |
| | | } else { |
| | | String blogSourcePrefix = ConstantContextHolder.getBlogSourcePrefix(); |
| | | return blogSourcePrefix + sysFileInfo.getFileBucket() + sysFileInfo.getFileObjectName(); |
| | | return blogSourcePrefix + sysFileInfo.getFileBucket() +"/"+ sysFileInfo.getFileObjectName(); |
| | | } |
| | | } |
| | | |