@Aop("redis") public CResult add(Topic topic, int userId) { if (userId < 1) { return _fail("请先登录"); } if (Strings.isBlank(topic.getTitle()) || topic.getTitle().length() > 1024 || topic.getTitle().length() < 5) { return _fail("标题长度不合法"); } if (Strings.isBlank(topic.getContent())) { return _fail("内容不合法"); } if (topic.getTags() != null && topic.getTags().size() > 10) { return _fail("最多只能有10个tag"); } if (0 != dao.count(Topic.class, Cnd.where("title", "=", topic.getTitle().trim()))) { return _fail("相同标题已经发过了"); } topic.setTitle(Strings.escapeHtml(topic.getTitle().trim())); topic.setUserId(userId); topic.setTop(false); topic.setTags(new HashSet<String>()); if (topic.getType() == null) topic.setType(TopicType.ask); topic.setContent(Toolkit.filteContent(topic.getContent())); String oldContent = topic.getContent(); topic.setContentId(bigContentService.put(topic.getContent())); topic.setContent(null); dao.insert(topic); try { topic.setContent(oldContent); topicSearchService.add(topic); } catch (Exception e) { } // 如果是ask类型,把帖子加入到 "未回复"列表 Pipeline pipe = jedis().pipelined(); if (TopicType.ask.equals(topic.getType())) { pipe.zadd(RKEY_TOPIC_NOREPLY, System.currentTimeMillis(), topic.getId()); } pipe.zadd(RKEY_TOPIC_UPDATE + topic.getType(), System.currentTimeMillis(), topic.getId()); if (topic.getType() != TopicType.shortit) pipe.zadd(RKEY_TOPIC_UPDATE_ALL, System.currentTimeMillis(), topic.getId()); pipe.zincrby(RKEY_USER_SCORE, 100, "" + userId); pipe.sync(); String replyAuthorName = dao.fetch(User.class, userId).getName(); for (Integer watcherId : globalWatcherIds) { if (watcherId != userId) pushUser( watcherId, "新帖:" + topic.getTitle(), topic.getId(), replyAuthorName, topic.getTitle(), PushService.PUSH_TYPE_REPLY); } updateTopicTypeCount(); return _ok(topic.getId()); }
@Aop("redis") public void fillTopic(Topic topic, Map<Integer, UserProfile> authors) { if (topic.getUserId() == 0) topic.setUserId(1); topic.setAuthor(_cacheFetch(authors, topic.getUserId())); Double reply_count = jedis().zscore(RKEY_REPLY_COUNT, topic.getId()); topic.setReplyCount(reply_count == null ? 0 : reply_count.intValue()); if (topic.getReplyCount() > 0) { String replyId = jedis().hget(RKEY_REPLY_LAST, topic.getId()); TopicReply reply = dao.fetch(TopicReply.class, replyId); if (reply != null) { if (reply.getUserId() == 0) reply.setUserId(1); reply.setAuthor(_cacheFetch(authors, reply.getUserId())); topic.setLastComment(reply); } } Double visited = jedis().zscore(RKEY_TOPIC_VISIT, topic.getId()); topic.setVisitCount((visited == null) ? 0 : visited.intValue()); }