fix:只处理博客

上级 b4e7ee8d
...@@ -29,7 +29,7 @@ public class CsdnArticleServiceImpl implements CsdnArticleService { ...@@ -29,7 +29,7 @@ public class CsdnArticleServiceImpl implements CsdnArticleService {
.header("Cookie", csdnCookie) .header("Cookie", csdnCookie)
.form("page", 1) .form("page", 1)
.form("size", 5) .form("size", 5)
.form("businessType", "lately") .form("businessType", "blog")
.form("noMore", false) .form("noMore", false)
.form("username", username) .form("username", username)
.execute(); .execute();
......
package com.kwan.springbootkwan.service.impl; package com.kwan.springbootkwan.service.impl;
import cn.hutool.core.collection.CollectionUtil; import cn.hutool.core.collection.CollectionUtil;
import cn.hutool.http.HttpResponse; import cn.hutool.http.HttpResponse;
import cn.hutool.http.HttpUtil; import cn.hutool.http.HttpUtil;
...@@ -25,7 +24,6 @@ import org.springframework.stereotype.Service; ...@@ -25,7 +24,6 @@ import org.springframework.stereotype.Service;
import java.util.List; import java.util.List;
import java.util.Objects; import java.util.Objects;
@Slf4j @Slf4j
@Service @Service
public class CsdnAutoReplyServiceImpl implements CsdnAutoReplyService { public class CsdnAutoReplyServiceImpl implements CsdnAutoReplyService {
...@@ -37,7 +35,6 @@ public class CsdnAutoReplyServiceImpl implements CsdnAutoReplyService { ...@@ -37,7 +35,6 @@ public class CsdnAutoReplyServiceImpl implements CsdnAutoReplyService {
private String selfUserName; private String selfUserName;
@Value("${csdn.url.is_comment_list_url}") @Value("${csdn.url.is_comment_list_url}")
private String commentListUrl; private String commentListUrl;
@Autowired @Autowired
private CsdnService csdnService; private CsdnService csdnService;
@Autowired @Autowired
...@@ -50,9 +47,7 @@ public class CsdnAutoReplyServiceImpl implements CsdnAutoReplyService { ...@@ -50,9 +47,7 @@ public class CsdnAutoReplyServiceImpl implements CsdnAutoReplyService {
@Override @Override
public void commentSelf() { public void commentSelf() {
List<BusinessInfoResponse.ArticleData.Article> list = csdnArticleService.getArticles(selfUserName); List<BusinessInfoResponse.ArticleData.Article> list = csdnArticleService.getArticles(selfUserName);
if (list == null) { if (CollectionUtil.isNotEmpty(list)) {
return;
}
for (BusinessInfoResponse.ArticleData.Article article : list) { for (BusinessInfoResponse.ArticleData.Article article : list) {
final String type = article.getType(); final String type = article.getType();
if (StringUtils.equals("blog", type)) { if (StringUtils.equals("blog", type)) {
...@@ -123,4 +118,5 @@ public class CsdnAutoReplyServiceImpl implements CsdnAutoReplyService { ...@@ -123,4 +118,5 @@ public class CsdnAutoReplyServiceImpl implements CsdnAutoReplyService {
} }
} }
} }
}
} }
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册