2013-02-06 03:16:51 +08:00
|
|
|
require_dependency 'avatar_lookup'
|
|
|
|
|
|
|
|
class TopicList
|
|
|
|
include ActiveModel::Serialization
|
|
|
|
|
2015-08-05 14:01:52 +08:00
|
|
|
cattr_accessor :preloaded_custom_fields
|
|
|
|
self.preloaded_custom_fields = []
|
|
|
|
|
2013-04-03 04:52:51 +08:00
|
|
|
attr_accessor :more_topics_url,
|
2014-02-26 01:15:20 +08:00
|
|
|
:prev_topics_url,
|
2013-04-03 04:52:51 +08:00
|
|
|
:draft,
|
|
|
|
:draft_key,
|
|
|
|
:draft_sequence,
|
2014-08-29 02:34:31 +08:00
|
|
|
:filter,
|
2014-12-16 00:54:26 +08:00
|
|
|
:for_period,
|
|
|
|
:per_page
|
2013-04-03 04:52:51 +08:00
|
|
|
|
2014-10-09 00:44:47 +08:00
|
|
|
def initialize(filter, current_user, topics, opts=nil)
|
2013-04-03 04:52:51 +08:00
|
|
|
@filter = filter
|
2013-02-06 03:16:51 +08:00
|
|
|
@current_user = current_user
|
|
|
|
@topics_input = topics
|
2014-10-09 00:44:47 +08:00
|
|
|
@opts = opts || {}
|
|
|
|
end
|
|
|
|
|
|
|
|
def preload_key
|
|
|
|
if @opts[:category]
|
2014-10-16 03:29:20 +08:00
|
|
|
c = Category.where(id: @opts[:category_id]).first
|
|
|
|
return "topic_list_#{c.url.sub(/^\//, '')}/l/#{@filter}" if c
|
2014-10-09 00:44:47 +08:00
|
|
|
end
|
2014-10-16 03:29:20 +08:00
|
|
|
|
|
|
|
"topic_list_#{@filter}"
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
# Lazy initialization
|
|
|
|
def topics
|
2015-06-15 14:25:36 +08:00
|
|
|
@topics ||= load_topics
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2015-06-15 14:25:36 +08:00
|
|
|
def load_topics
|
2015-02-23 13:50:52 +08:00
|
|
|
@topics = @topics_input
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
# Attach some data for serialization to each topic
|
2015-01-09 08:41:10 +08:00
|
|
|
@topic_lookup = TopicUser.lookup_for(@current_user, @topics) if @current_user
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2015-01-07 15:20:10 +08:00
|
|
|
post_action_type =
|
2015-01-09 08:41:10 +08:00
|
|
|
if @current_user
|
2015-01-07 15:20:10 +08:00
|
|
|
if @opts[:filter].present?
|
|
|
|
if @opts[:filter] == "bookmarked"
|
|
|
|
PostActionType.types[:bookmark]
|
|
|
|
elsif @opts[:filter] == "liked"
|
|
|
|
PostActionType.types[:like]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-01-09 08:41:10 +08:00
|
|
|
|
|
|
|
# Include bookmarks if you have bookmarked topics
|
|
|
|
if @current_user && !post_action_type
|
|
|
|
post_action_type = PostActionType.types[:bookmark] if @topic_lookup.any?{|_,tu| tu && tu.bookmarked}
|
|
|
|
end
|
2015-01-07 15:20:10 +08:00
|
|
|
|
|
|
|
# Data for bookmarks or likes
|
|
|
|
post_action_lookup = PostAction.lookup_for(@current_user, @topics, post_action_type) if post_action_type
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
# Create a lookup for all the user ids we need
|
|
|
|
user_ids = []
|
2013-02-07 23:45:24 +08:00
|
|
|
@topics.each do |ft|
|
2014-05-12 15:32:49 +08:00
|
|
|
user_ids << ft.user_id << ft.last_post_user_id << ft.featured_user_ids << ft.allowed_user_ids
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
avatar_lookup = AvatarLookup.new(user_ids)
|
|
|
|
|
2013-02-07 23:45:24 +08:00
|
|
|
@topics.each do |ft|
|
2013-02-06 03:16:51 +08:00
|
|
|
ft.user_data = @topic_lookup[ft.id] if @topic_lookup.present?
|
2015-01-07 15:20:10 +08:00
|
|
|
|
|
|
|
if ft.user_data && post_action_lookup && actions = post_action_lookup[ft.id]
|
|
|
|
ft.user_data.post_action_data = {post_action_type => actions}
|
|
|
|
end
|
|
|
|
|
2013-05-23 14:22:30 +08:00
|
|
|
ft.posters = ft.posters_summary(avatar_lookup: avatar_lookup)
|
2014-05-12 15:32:49 +08:00
|
|
|
ft.participants = ft.participants_summary(avatar_lookup: avatar_lookup, user: @current_user)
|
2013-04-03 04:52:51 +08:00
|
|
|
ft.topic_list = self
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2016-04-26 03:55:15 +08:00
|
|
|
preload_custom_fields = TopicList.preloaded_custom_fields
|
|
|
|
preload_custom_fields << DiscourseTagging::TAGS_FIELD_NAME if SiteSetting.tagging_enabled
|
|
|
|
|
|
|
|
if preload_custom_fields.present?
|
|
|
|
Topic.preload_custom_fields(@topics, preload_custom_fields)
|
2015-08-05 14:01:52 +08:00
|
|
|
end
|
|
|
|
|
2014-05-12 15:32:49 +08:00
|
|
|
@topics
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def attributes
|
2013-11-20 03:08:45 +08:00
|
|
|
{'more_topics_url' => page}
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
end
|