use of com.duan.blogos.dto.blogger.BloggerDTO in project BlogSystem by DuanJiaNing.
the class BloggerLikeBlogServiceImpl method listLikeBlog.
@Override
public ResultBean<List<FavouriteBlogListItemDTO>> listLikeBlog(int bloggerId, int offset, int rows, BlogSortRule sortRule) {
List<BlogLike> likes = likeDao.listLikeBlog(bloggerId, offset, rows);
if (CollectionUtils.isEmpty(likes))
return null;
// 排序
List<BlogStatistics> temp = new ArrayList<>();
// 方便排序后的重组
Map<Integer, BlogLike> blogLikeMap = new HashMap<>();
for (BlogLike like : likes) {
int blogId = like.getBlogId();
BlogStatistics statistics = statisticsDao.getStatistics(blogId);
temp.add(statistics);
blogLikeMap.put(blogId, like);
}
BlogListItemComparatorFactory factory = new BlogListItemComparatorFactory();
temp.sort(factory.get(sortRule.getRule(), sortRule.getOrder()));
// 构造结果
List<FavouriteBlogListItemDTO> result = new ArrayList<>();
for (BlogStatistics statistics : temp) {
int blogId = statistics.getBlogId();
// BlogListItemDTO
Blog blog = blogDao.getBlogById(blogId);
String ch = dbProperties.getStringFiledSplitCharacterForNumber();
// category
int[] cids = StringUtils.intStringDistinctToArray(blog.getCategoryIds(), ch);
List<BlogCategory> categories = null;
if (!CollectionUtils.isEmpty(cids)) {
categories = categoryDao.listCategoryById(cids);
}
// label
int[] lids = StringUtils.intStringDistinctToArray(blog.getLabelIds(), ch);
List<BlogLabel> labels = null;
if (!CollectionUtils.isEmpty(lids)) {
labels = labelDao.listLabelById(lids);
}
BlogListItemDTO listItemDTO = fillingManager.blogListItemToDTO(statistics, CollectionUtils.isEmpty(categories) ? null : categories.toArray(new BlogCategory[categories.size()]), CollectionUtils.isEmpty(labels) ? null : labels.toArray(new BlogLabel[labels.size()]), blog, null);
// BloggerDTO
int authorId = blog.getBloggerId();
BloggerAccount account = accountDao.getAccountById(authorId);
BloggerProfile profile = profileDao.getProfileByBloggerId(authorId);
BloggerPicture avatar = profile.getAvatarId() == null ? null : pictureDao.getPictureById(profile.getAvatarId());
// 使使用默认的博主头像
if (avatar == null) {
avatar = new BloggerPicture();
avatar.setCategory(BloggerPictureCategoryEnum.PUBLIC.getCode());
avatar.setBloggerId(authorId);
avatar.setId(-1);
}
String url = constructorManager.constructPictureUrl(avatar, BloggerPictureCategoryEnum.DEFAULT_BLOGGER_AVATAR);
avatar.setPath(url);
BloggerDTO bloggerDTO = fillingManager.bloggerAccountToDTO(account, profile, avatar);
// 结果
BlogLike like = blogLikeMap.get(blogId);
FavouriteBlogListItemDTO dto = fillingManager.likeBlogListItemToDTO(bloggerId, like, listItemDTO, bloggerDTO);
result.add(dto);
}
return new ResultBean<>(result);
}
use of com.duan.blogos.dto.blogger.BloggerDTO in project BlogSystem by DuanJiaNing.
the class BlogStatisticsServiceImpl method getBlogger.
// 获得博主dto
private BloggerDTO[] getBlogger(int[] ids, int bloggerId) {
if (CollectionUtils.isEmpty(ids))
return null;
BloggerDTO[] dtos = new BloggerDTO[ids.length];
int c = 0;
for (int id : ids) {
BloggerAccount account = accountDao.getAccountById(id);
BloggerProfile profile = profileDao.getProfileByBloggerId(id);
BloggerPicture avatar = null;
Integer avatarId = profile.getAvatarId();
if (avatarId != null)
avatar = pictureDao.getPictureById(avatarId);
if (avatar != null)
avatar.setPath(stringConstructorManager.constructPictureUrl(avatar, BloggerPictureCategoryEnum.DEFAULT_BLOGGER_AVATAR));
// 设置默认头像
if (avatar == null) {
avatar = new BloggerPicture();
avatar.setBloggerId(bloggerId);
avatar.setCategory(BloggerPictureCategoryEnum.PUBLIC.getCode());
avatar.setId(-1);
avatar.setPath(stringConstructorManager.constructPictureUrl(avatar, BloggerPictureCategoryEnum.DEFAULT_BLOGGER_AVATAR));
}
BloggerDTO dto = dataFillingManager.bloggerAccountToDTO(account, profile, avatar);
dtos[c++] = dto;
}
return Arrays.copyOf(dtos, c);
}
use of com.duan.blogos.dto.blogger.BloggerDTO in project BlogSystem by DuanJiaNing.
the class BlogStatisticsServiceImpl method getBlogStatistics.
@Override
public ResultBean<BlogStatisticsDTO> getBlogStatistics(int blogId) {
Blog blog = blogDao.getBlogById(blogId);
if (blog == null)
return null;
int bloggerId = blog.getBloggerId();
// 统计信息
BlogStatistics statistics = statisticsDao.getStatistics(blogId);
if (statistics == null)
return null;
// 类别
BlogCategory[] categories = null;
String sn = dbProperties.getStringFiledSplitCharacterForNumber();
int[] cids = StringUtils.intStringDistinctToArray(blog.getCategoryIds(), sn);
if (!CollectionUtils.isEmpty(cids)) {
categories = categoryDao.listCategoryById(cids).toArray(new BlogCategory[cids.length]);
}
// 标签
BlogLabel[] labels = null;
int[] lids = StringUtils.intStringDistinctToArray(blog.getLabelIds(), sn);
if (!CollectionUtils.isEmpty(lids)) {
labels = labelDao.listLabelById(lids).toArray(new BlogLabel[lids.length]);
}
int c = 0;
// 喜欢该篇文章的人
BloggerDTO[] likes = null;
List<BlogLike> likeList = likeDao.listAllLikeByBlogId(blogId);
if (!CollectionUtils.isEmpty(likeList)) {
int[] ids = new int[likeList.size()];
for (BlogLike like : likeList) {
ids[c++] = like.getLikerId();
}
likes = getBlogger(ids, bloggerId);
}
// 收藏了该篇文章的人
BloggerDTO[] collects = null;
c = 0;
List<BlogCollect> collectList = collectDao.listAllCollectByBlogId(blogId);
if (!CollectionUtils.isEmpty(collectList)) {
int[] ids = new int[collectList.size()];
for (BlogCollect collect : collectList) {
ids[c++] = collect.getCollectorId();
}
collects = getBlogger(ids, bloggerId);
}
// 评论过该篇文章的人
BloggerDTO[] commenter = null;
c = 0;
List<BlogComment> commentList = commentDao.listAllCommentByBlogId(blogId);
if (!CollectionUtils.isEmpty(commentList)) {
int[] ids = new int[commentList.size()];
for (BlogComment comment : commentList) {
// 评论者注销,但其评论将保存(匿名)
Integer id = comment.getSpokesmanId();
if (id != null)
ids[c++] = id;
}
// ids 需要去重
commenter = getBlogger(IntStream.of(Arrays.copyOf(ids, c)).distinct().toArray(), bloggerId);
}
BlogStatisticsDTO dto = dataFillingManager.blogStatisticsToDTO(blog, statistics, categories, labels, likes, collects, commenter, dbProperties.getStringFiledSplitCharacterForString());
return new ResultBean<>(dto);
}
use of com.duan.blogos.dto.blogger.BloggerDTO in project BlogSystem by DuanJiaNing.
the class BlogBrowseServiceImpl method listBlogComment.
@Override
public ResultBean<List<BlogCommentDTO>> listBlogComment(int blogId, int offset, int rows) {
List<BlogCommentDTO> result = new ArrayList<>();
List<BlogComment> comments = commentDao.listCommentByBlogId(blogId, offset, rows, BlogCommentStatusEnum.RIGHTFUL.getCode());
for (BlogComment comment : comments) {
// 评论者数据
int sid = comment.getSpokesmanId();
BloggerAccount smAccount = accountDao.getAccountById(sid);
BloggerProfile smProfile = getProfile(sid);
BloggerDTO smDTO = dataFillingManager.bloggerAccountToDTO(smAccount, smProfile, getAvatar(smProfile.getAvatarId()));
BlogCommentDTO dto = dataFillingManager.blogCommentToDTO(comment, smDTO);
result.add(dto);
}
return CollectionUtils.isEmpty(result) ? null : new ResultBean<>(result);
}
use of com.duan.blogos.dto.blogger.BloggerDTO in project BlogSystem by DuanJiaNing.
the class BloggerCollectBlogServiceImpl method listCollectBlog.
@Override
public ResultBean<List<FavouriteBlogListItemDTO>> listCollectBlog(int bloggerId, int categoryId, int offset, int rows, BlogSortRule sortRule) {
List<BlogCollect> collects = collectDao.listCollectBlog(bloggerId, categoryId, offset, rows);
if (CollectionUtils.isEmpty(collects))
return null;
// 排序
List<BlogStatistics> temp = new ArrayList<>();
// 方便排序后的重组
Map<Integer, BlogCollect> blogCollectMap = new HashMap<>();
for (BlogCollect collect : collects) {
int blogId = collect.getBlogId();
BlogStatistics statistics = statisticsDao.getStatistics(blogId);
temp.add(statistics);
blogCollectMap.put(blogId, collect);
}
BlogListItemComparatorFactory factory = new BlogListItemComparatorFactory();
temp.sort(factory.get(sortRule.getRule(), sortRule.getOrder()));
// 构造结果
List<FavouriteBlogListItemDTO> result = new ArrayList<>();
for (BlogStatistics statistics : temp) {
int blogId = statistics.getBlogId();
// BlogListItemDTO
Blog blog = blogDao.getBlogById(blogId);
String ch = dbProperties.getStringFiledSplitCharacterForNumber();
// category
int[] cids = StringUtils.intStringDistinctToArray(blog.getCategoryIds(), ch);
List<BlogCategory> categories = null;
if (!CollectionUtils.isEmpty(cids)) {
categories = categoryDao.listCategoryById(cids);
}
// label
int[] lids = StringUtils.intStringDistinctToArray(blog.getLabelIds(), ch);
List<BlogLabel> labels = null;
if (!CollectionUtils.isEmpty(lids)) {
labels = labelDao.listLabelById(lids);
}
BlogListItemDTO listItemDTO = fillingManager.blogListItemToDTO(statistics, CollectionUtils.isEmpty(categories) ? null : categories.toArray(new BlogCategory[categories.size()]), CollectionUtils.isEmpty(labels) ? null : labels.toArray(new BlogLabel[labels.size()]), blog, null);
// BloggerDTO
int authorId = blog.getBloggerId();
BloggerAccount account = accountDao.getAccountById(authorId);
BloggerProfile profile = profileDao.getProfileByBloggerId(authorId);
BloggerPicture avatar = profile.getAvatarId() == null ? null : pictureDao.getPictureById(profile.getAvatarId());
// 使使用默认的博主头像
if (avatar == null) {
avatar = new BloggerPicture();
avatar.setCategory(BloggerPictureCategoryEnum.PUBLIC.getCode());
avatar.setBloggerId(authorId);
avatar.setId(-1);
}
String url = constructorManager.constructPictureUrl(avatar, BloggerPictureCategoryEnum.DEFAULT_BLOGGER_AVATAR);
avatar.setPath(url);
BloggerDTO bloggerDTO = fillingManager.bloggerAccountToDTO(account, profile, avatar);
// 结果
BlogCollect collect = blogCollectMap.get(blogId);
FavouriteBlogListItemDTO dto = fillingManager.collectBlogListItemToDTO(bloggerId, collect, listItemDTO, bloggerDTO);
result.add(dto);
}
return new ResultBean<>(result);
}
Aggregations