2013-02-05 14:16:51 -05:00
|
|
|
require_dependency 'slug'
|
|
|
|
require_dependency 'avatar_lookup'
|
|
|
|
require_dependency 'topic_view'
|
|
|
|
require_dependency 'rate_limiter'
|
2013-02-06 20:09:31 -05:00
|
|
|
require_dependency 'text_sentinel'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
class Topic < ActiveRecord::Base
|
2013-02-19 16:08:23 -05:00
|
|
|
include ActionView::Helpers
|
2013-02-05 14:16:51 -05:00
|
|
|
include RateLimiter::OnCreateRecord
|
|
|
|
|
2013-02-25 14:13:36 -05:00
|
|
|
MAX_SORT_ORDER = 2**31 - 1
|
2013-02-05 14:16:51 -05:00
|
|
|
FEATURED_USERS = 4
|
|
|
|
|
2013-02-25 14:13:36 -05:00
|
|
|
versioned if: :new_version_required?
|
2013-02-05 14:16:51 -05:00
|
|
|
acts_as_paranoid
|
2013-02-05 20:13:41 -05:00
|
|
|
after_recover :update_flagged_posts_count
|
2013-02-07 10:45:24 -05:00
|
|
|
after_destroy :update_flagged_posts_count
|
2013-02-05 20:13:41 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
rate_limit :default_rate_limiter
|
|
|
|
rate_limit :limit_topics_per_day
|
|
|
|
rate_limit :limit_private_messages_per_day
|
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
validate :title_quality
|
2013-02-05 14:16:51 -05:00
|
|
|
validates_presence_of :title
|
2013-02-26 11:27:59 -05:00
|
|
|
validates :title, length: { in: SiteSetting.topic_title_length }
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
serialize :meta_data, ActiveRecord::Coders::Hstore
|
|
|
|
|
|
|
|
validate :unique_title
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
belongs_to :category
|
|
|
|
has_many :posts
|
|
|
|
has_many :topic_allowed_users
|
|
|
|
has_many :allowed_users, through: :topic_allowed_users, source: :user
|
|
|
|
belongs_to :user
|
|
|
|
belongs_to :last_poster, class_name: 'User', foreign_key: :last_post_user_id
|
|
|
|
belongs_to :featured_user1, class_name: 'User', foreign_key: :featured_user1_id
|
|
|
|
belongs_to :featured_user2, class_name: 'User', foreign_key: :featured_user2_id
|
|
|
|
belongs_to :featured_user3, class_name: 'User', foreign_key: :featured_user3_id
|
|
|
|
belongs_to :featured_user4, class_name: 'User', foreign_key: :featured_user4_id
|
|
|
|
|
|
|
|
has_many :topic_users
|
|
|
|
has_many :topic_links
|
|
|
|
has_many :topic_invites
|
|
|
|
has_many :invites, through: :topic_invites, source: :invite
|
|
|
|
|
|
|
|
# When we want to temporarily attach some data to a forum topic (usually before serialization)
|
|
|
|
attr_accessor :user_data
|
|
|
|
attr_accessor :posters # TODO: can replace with posters_summary once we remove old list code
|
|
|
|
|
|
|
|
|
|
|
|
# The regular order
|
|
|
|
scope :topic_list_order, lambda { order('topics.bumped_at desc') }
|
|
|
|
|
|
|
|
# Return private message topics
|
|
|
|
scope :private_messages, lambda {
|
|
|
|
where(archetype: Archetype::private_message)
|
|
|
|
}
|
|
|
|
|
|
|
|
scope :listable_topics, lambda { where('topics.archetype <> ?', [Archetype.private_message]) }
|
|
|
|
|
2013-02-27 22:36:12 -05:00
|
|
|
scope :by_newest, order('created_at desc, id desc')
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
# Helps us limit how many favorites can be made in a day
|
|
|
|
class FavoriteLimiter < RateLimiter
|
|
|
|
def initialize(user)
|
2013-02-07 10:45:24 -05:00
|
|
|
super(user, "favorited:#{Date.today.to_s}", SiteSetting.max_favorites_per_day, 1.day.to_i)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
before_validation do
|
2013-02-28 13:54:12 -05:00
|
|
|
if title.present?
|
2013-03-06 11:36:42 -05:00
|
|
|
self.title = sanitize(title, tags: [], attributes: [])
|
2013-02-25 11:42:20 -05:00
|
|
|
self.title.strip!
|
2013-02-19 16:08:23 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
before_create do
|
|
|
|
self.bumped_at ||= Time.now
|
2013-02-28 13:54:12 -05:00
|
|
|
self.last_post_user_id ||= user_id
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
after_create do
|
|
|
|
changed_to_category(category)
|
2013-03-06 15:17:07 -05:00
|
|
|
TopicUser.change(user_id, id,
|
|
|
|
notification_level: TopicUser.notification_levels[:watching],
|
|
|
|
notifications_reason_id: TopicUser.notification_reasons[:created_topic])
|
2013-02-28 13:54:12 -05:00
|
|
|
if archetype == Archetype.private_message
|
|
|
|
DraftSequence.next!(user, Draft::NEW_PRIVATE_MESSAGE)
|
2013-02-05 14:16:51 -05:00
|
|
|
else
|
2013-02-28 13:54:12 -05:00
|
|
|
DraftSequence.next!(user, Draft::NEW_TOPIC)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Additional rate limits on topics: per day and private messages per day
|
|
|
|
def limit_topics_per_day
|
2013-02-07 10:45:24 -05:00
|
|
|
RateLimiter.new(user, "topics-per-day:#{Date.today.to_s}", SiteSetting.max_topics_per_day, 1.day.to_i)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def limit_private_messages_per_day
|
|
|
|
return unless private_message?
|
2013-02-07 10:45:24 -05:00
|
|
|
RateLimiter.new(user, "pms-per-day:#{Date.today.to_s}", SiteSetting.max_private_messages_per_day, 1.day.to_i)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Validate unique titles if a site setting is set
|
|
|
|
def unique_title
|
|
|
|
return if SiteSetting.allow_duplicate_topic_titles?
|
|
|
|
|
|
|
|
# Let presence validation catch it if it's blank
|
|
|
|
return if title.blank?
|
|
|
|
|
|
|
|
# Private messages can be called whatever they want
|
|
|
|
return if private_message?
|
|
|
|
|
|
|
|
finder = Topic.listable_topics.where("lower(title) = ?", title.downcase)
|
|
|
|
finder = finder.where("id != ?", self.id) if self.id.present?
|
|
|
|
|
|
|
|
errors.add(:title, I18n.t(:has_already_been_used)) if finder.exists?
|
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
def fancy_title
|
2013-02-19 16:08:23 -05:00
|
|
|
return title unless SiteSetting.title_fancy_entities?
|
|
|
|
|
|
|
|
# We don't always have to require this, if fancy is disabled
|
2013-03-10 20:21:56 -04:00
|
|
|
# see: http://meta.discourse.org/t/pattern-for-defer-loading-gems-and-profiling-with-perftools-rb/4629
|
2013-03-10 10:13:52 -04:00
|
|
|
require 'redcarpet' unless defined? Redcarpet
|
2013-02-19 16:08:23 -05:00
|
|
|
|
|
|
|
Redcarpet::Render::SmartyPants.render(title)
|
|
|
|
end
|
2013-02-06 15:47:36 -05:00
|
|
|
|
2013-02-06 20:09:31 -05:00
|
|
|
def title_quality
|
|
|
|
# We don't care about quality on private messages
|
|
|
|
return if private_message?
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
sentinel = TextSentinel.title_sentinel(title)
|
2013-02-06 20:09:31 -05:00
|
|
|
if sentinel.valid?
|
|
|
|
# It's possible the sentinel has cleaned up the title a bit
|
2013-02-07 10:45:24 -05:00
|
|
|
self.title = sentinel.text
|
2013-02-06 20:09:31 -05:00
|
|
|
else
|
2013-02-26 11:27:59 -05:00
|
|
|
errors.add(:title, I18n.t(:is_invalid))
|
2013-02-06 15:47:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def new_version_required?
|
2013-02-26 11:27:59 -05:00
|
|
|
title_changed? || category_id_changed?
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-21 22:22:02 -05:00
|
|
|
# Returns new topics since a date for display in email digest.
|
2013-02-05 14:16:51 -05:00
|
|
|
def self.new_topics(since)
|
|
|
|
Topic
|
|
|
|
.visible
|
2013-03-05 17:21:32 -05:00
|
|
|
.where(closed: false, archived: false)
|
2013-02-21 22:22:02 -05:00
|
|
|
.created_since(since)
|
2013-02-05 14:16:51 -05:00
|
|
|
.listable_topics
|
|
|
|
.topic_list_order
|
|
|
|
.includes(:user)
|
2013-02-07 10:45:24 -05:00
|
|
|
.limit(5)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def update_meta_data(data)
|
|
|
|
self.meta_data = (self.meta_data || {}).merge(data.stringify_keys)
|
|
|
|
save
|
|
|
|
end
|
|
|
|
|
|
|
|
def post_numbers
|
|
|
|
@post_numbers ||= posts.order(:post_number).pluck(:post_number)
|
|
|
|
end
|
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
def has_meta_data_boolean?(key)
|
2013-02-05 14:16:51 -05:00
|
|
|
meta_data_string(key) == 'true'
|
|
|
|
end
|
|
|
|
|
|
|
|
def meta_data_string(key)
|
2013-02-28 13:54:12 -05:00
|
|
|
return unless meta_data.present?
|
2013-02-07 10:45:24 -05:00
|
|
|
meta_data[key.to_s]
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.visible
|
|
|
|
where(visible: true)
|
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-02-16 15:57:16 -05:00
|
|
|
def self.created_since(time_ago)
|
|
|
|
where("created_at > ?", time_ago)
|
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-03-07 11:07:59 -05:00
|
|
|
def self.count_per_day(since=30.days.ago)
|
|
|
|
where('created_at > ?', since).group('date(created_at)').order('date(created_at)').count
|
|
|
|
end
|
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
def private_message?
|
2013-02-05 14:16:51 -05:00
|
|
|
self.archetype == Archetype.private_message
|
|
|
|
end
|
|
|
|
|
|
|
|
def links_grouped
|
2013-02-07 10:45:24 -05:00
|
|
|
exec_sql("SELECT ftl.url,
|
2013-02-05 14:16:51 -05:00
|
|
|
ft.title,
|
2013-02-07 10:45:24 -05:00
|
|
|
ftl.link_topic_id,
|
2013-02-05 14:16:51 -05:00
|
|
|
ftl.reflection,
|
|
|
|
ftl.internal,
|
|
|
|
MIN(ftl.user_id) AS user_id,
|
|
|
|
SUM(clicks) AS clicks
|
|
|
|
FROM topic_links AS ftl
|
|
|
|
LEFT OUTER JOIN topics AS ft ON ftl.link_topic_id = ft.id
|
|
|
|
WHERE ftl.topic_id = ?
|
|
|
|
GROUP BY ftl.url, ft.title, ftl.link_topic_id, ftl.reflection, ftl.internal
|
2013-02-07 10:45:24 -05:00
|
|
|
ORDER BY clicks DESC",
|
2013-02-28 13:54:12 -05:00
|
|
|
id).to_a
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def update_status(property, status, user)
|
2013-03-06 15:17:07 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
Topic.transaction do
|
2013-03-06 15:17:07 -05:00
|
|
|
|
|
|
|
# Special case: if it's pinned, update that
|
|
|
|
if property.to_sym == :pinned
|
|
|
|
update_pinned(status)
|
|
|
|
else
|
|
|
|
# otherwise update the column
|
|
|
|
update_column(property, status)
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
key = "topic_statuses.#{property}_"
|
|
|
|
key << (status ? 'enabled' : 'disabled')
|
|
|
|
|
|
|
|
opts = {}
|
|
|
|
|
|
|
|
# We don't bump moderator posts except for the re-open post.
|
|
|
|
opts[:bump] = true if property == 'closed' and (!status)
|
|
|
|
|
|
|
|
add_moderator_post(user, I18n.t(key), opts)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Atomically creates the next post number
|
2013-02-28 13:54:12 -05:00
|
|
|
def self.next_post_number(topic_id, reply = false)
|
2013-02-05 14:16:51 -05:00
|
|
|
highest = exec_sql("select coalesce(max(post_number),0) as max from posts where topic_id = ?", topic_id).first['max'].to_i
|
|
|
|
|
|
|
|
reply_sql = reply ? ", reply_count = reply_count + 1" : ""
|
2013-02-07 10:45:24 -05:00
|
|
|
result = exec_sql("UPDATE topics SET highest_post_number = ? + 1#{reply_sql}
|
2013-02-05 14:16:51 -05:00
|
|
|
WHERE id = ? RETURNING highest_post_number", highest, topic_id)
|
|
|
|
result.first['highest_post_number'].to_i
|
|
|
|
end
|
|
|
|
|
|
|
|
# If a post is deleted we have to update our highest post counters
|
|
|
|
def self.reset_highest(topic_id)
|
2013-02-07 10:45:24 -05:00
|
|
|
result = exec_sql "UPDATE topics
|
2013-02-05 14:16:51 -05:00
|
|
|
SET highest_post_number = (SELECT COALESCE(MAX(post_number), 0) FROM posts WHERE topic_id = :topic_id AND deleted_at IS NULL),
|
|
|
|
posts_count = (SELECT count(*) FROM posts WHERE deleted_at IS NULL AND topic_id = :topic_id)
|
|
|
|
WHERE id = :topic_id
|
2013-02-07 10:45:24 -05:00
|
|
|
RETURNING highest_post_number", topic_id: topic_id
|
2013-02-05 14:16:51 -05:00
|
|
|
highest_post_number = result.first['highest_post_number'].to_i
|
|
|
|
|
|
|
|
# Update the forum topic user records
|
|
|
|
exec_sql "UPDATE topic_users
|
|
|
|
SET last_read_post_number = CASE
|
|
|
|
WHEN last_read_post_number > :highest THEN :highest
|
|
|
|
ELSE last_read_post_number
|
|
|
|
END,
|
|
|
|
seen_post_count = CASE
|
|
|
|
WHEN seen_post_count > :highest THEN :highest
|
|
|
|
ELSE seen_post_count
|
|
|
|
END
|
|
|
|
WHERE topic_id = :topic_id",
|
|
|
|
highest: highest_post_number,
|
|
|
|
topic_id: topic_id
|
|
|
|
end
|
|
|
|
|
|
|
|
# This calculates the geometric mean of the posts and stores it with the topic
|
|
|
|
def self.calculate_avg_time
|
|
|
|
exec_sql("UPDATE topics
|
|
|
|
SET avg_time = x.gmean
|
2013-02-07 10:45:24 -05:00
|
|
|
FROM (SELECT topic_id,
|
2013-02-05 14:16:51 -05:00
|
|
|
round(exp(avg(ln(avg_time)))) AS gmean
|
|
|
|
FROM posts
|
|
|
|
GROUP BY topic_id) AS x
|
2013-02-07 10:45:24 -05:00
|
|
|
WHERE x.topic_id = topics.id")
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def changed_to_category(cat)
|
|
|
|
|
|
|
|
return if cat.blank?
|
2013-02-28 13:54:12 -05:00
|
|
|
return if Category.where(topic_id: id).first.present?
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
Topic.transaction do
|
|
|
|
old_category = category
|
|
|
|
|
2013-03-04 19:42:44 -05:00
|
|
|
if category_id.present? && category_id != cat.id
|
2013-02-05 14:16:51 -05:00
|
|
|
Category.update_all 'topic_count = topic_count - 1', ['id = ?', category_id]
|
|
|
|
end
|
|
|
|
|
|
|
|
self.category_id = cat.id
|
2013-02-28 13:54:12 -05:00
|
|
|
save
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
CategoryFeaturedTopic.feature_topics_for(old_category)
|
2013-02-28 13:54:12 -05:00
|
|
|
Category.update_all 'topic_count = topic_count + 1', id: cat.id
|
2013-02-05 14:16:51 -05:00
|
|
|
CategoryFeaturedTopic.feature_topics_for(cat) unless old_category.try(:id) == cat.try(:id)
|
2013-02-07 10:45:24 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def add_moderator_post(user, text, opts={})
|
|
|
|
new_post = nil
|
|
|
|
Topic.transaction do
|
|
|
|
new_post = posts.create(user: user, raw: text, post_type: Post::MODERATOR_ACTION, no_bump: opts[:bump].blank?)
|
2013-02-07 10:45:24 -05:00
|
|
|
increment!(:moderator_posts_count)
|
2013-02-05 14:16:51 -05:00
|
|
|
new_post
|
|
|
|
end
|
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
if new_post.present?
|
|
|
|
# If we are moving posts, we want to insert the moderator post where the previous posts were
|
|
|
|
# in the stream, not at the end.
|
|
|
|
new_post.update_attributes(post_number: opts[:post_number], sort_order: opts[:post_number]) if opts[:post_number].present?
|
|
|
|
|
|
|
|
# Grab any links that are present
|
|
|
|
TopicLink.extract_from(new_post)
|
|
|
|
end
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
new_post
|
|
|
|
end
|
|
|
|
|
|
|
|
# Changes the category to a new name
|
|
|
|
def change_category(name)
|
|
|
|
# If the category name is blank, reset the attribute
|
|
|
|
if name.blank?
|
|
|
|
if category_id.present?
|
|
|
|
CategoryFeaturedTopic.feature_topics_for(category)
|
2013-02-28 13:54:12 -05:00
|
|
|
Category.update_all 'topic_count = topic_count - 1', id: category_id
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
self.category_id = nil
|
2013-02-28 13:54:12 -05:00
|
|
|
save
|
2013-02-05 14:16:51 -05:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
cat = Category.where(name: name).first
|
|
|
|
return if cat == category
|
|
|
|
changed_to_category(cat)
|
|
|
|
end
|
|
|
|
|
|
|
|
def featured_user_ids
|
|
|
|
[featured_user1_id, featured_user2_id, featured_user3_id, featured_user4_id].uniq.compact
|
|
|
|
end
|
|
|
|
|
|
|
|
# Invite a user to the topic by username or email. Returns success/failure
|
|
|
|
def invite(invited_by, username_or_email)
|
|
|
|
if private_message?
|
|
|
|
# If the user exists, add them to the topic.
|
2013-02-26 11:27:59 -05:00
|
|
|
user = User.find_by_username_or_email(username_or_email).first
|
2013-02-05 14:16:51 -05:00
|
|
|
if user.present?
|
|
|
|
if topic_allowed_users.create!(user_id: user.id)
|
|
|
|
# Notify the user they've been invited
|
2013-03-01 07:07:44 -05:00
|
|
|
user.notifications.create(notification_type: Notification.types[:invited_to_private_message],
|
2013-02-28 13:54:12 -05:00
|
|
|
topic_id: id,
|
2013-02-05 14:16:51 -05:00
|
|
|
post_number: 1,
|
2013-02-28 13:54:12 -05:00
|
|
|
data: { topic_title: title,
|
|
|
|
display_username: invited_by.username }.to_json)
|
2013-02-07 10:45:24 -05:00
|
|
|
return true
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
elsif username_or_email =~ /^.+@.+$/
|
|
|
|
# If the user doesn't exist, but it looks like an email, invite the user by email.
|
|
|
|
return invite_by_email(invited_by, username_or_email)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
# Success is whether the invite was created
|
|
|
|
return invite_by_email(invited_by, username_or_email).present?
|
|
|
|
end
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
# Invite a user by email and return the invite. Return the previously existing invite
|
2013-02-07 10:45:24 -05:00
|
|
|
# if already exists. Returns nil if the invite can't be created.
|
2013-02-05 14:16:51 -05:00
|
|
|
def invite_by_email(invited_by, email)
|
|
|
|
lower_email = email.downcase
|
|
|
|
|
|
|
|
invite = Invite.with_deleted.where('invited_by_id = ? and email = ?', invited_by.id, lower_email).first
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
if invite.blank?
|
2013-02-07 10:45:24 -05:00
|
|
|
invite = Invite.create(invited_by: invited_by, email: lower_email)
|
2013-02-05 14:16:51 -05:00
|
|
|
unless invite.valid?
|
|
|
|
|
|
|
|
# If the email already exists, grant permission to that user
|
|
|
|
if invite.email_already_exists and private_message?
|
|
|
|
user = User.where(email: lower_email).first
|
|
|
|
topic_allowed_users.create!(user_id: user.id)
|
|
|
|
end
|
|
|
|
|
2013-02-28 13:54:12 -05:00
|
|
|
return
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Recover deleted invites if we invite them again
|
|
|
|
invite.recover if invite.deleted_at.present?
|
|
|
|
|
|
|
|
topic_invites.create(invite_id: invite.id)
|
|
|
|
Jobs.enqueue(:invite_email, invite_id: invite.id)
|
2013-02-07 10:45:24 -05:00
|
|
|
invite
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def move_posts(moved_by, new_title, post_ids)
|
|
|
|
topic = nil
|
|
|
|
first_post_number = nil
|
|
|
|
Topic.transaction do
|
2013-02-28 13:54:12 -05:00
|
|
|
topic = Topic.create(user: moved_by, title: new_title, category: category)
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
to_move = posts.where(id: post_ids).order(:created_at)
|
|
|
|
raise Discourse::InvalidParameters.new(:post_ids) if to_move.blank?
|
|
|
|
|
|
|
|
to_move.each_with_index do |post, i|
|
|
|
|
first_post_number ||= post.post_number
|
2013-02-28 13:54:12 -05:00
|
|
|
row_count = Post.update_all ["post_number = :post_number, topic_id = :topic_id, sort_order = :post_number", post_number: i+1, topic_id: topic.id], id: post.id, topic_id: id
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
# We raise an error if any of the posts can't be moved
|
2013-02-05 14:16:51 -05:00
|
|
|
raise Discourse::InvalidParameters.new(:post_ids) if row_count == 0
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update denormalized values since we've manually moved stuff
|
|
|
|
Topic.reset_highest(topic.id)
|
2013-02-28 13:54:12 -05:00
|
|
|
Topic.reset_highest(id)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Add a moderator post explaining that the post was moved
|
|
|
|
if topic.present?
|
|
|
|
topic_url = "#{Discourse.base_url}#{topic.relative_url}"
|
|
|
|
topic_link = "[#{new_title}](#{topic_url})"
|
|
|
|
|
2013-02-25 14:13:36 -05:00
|
|
|
add_moderator_post(moved_by, I18n.t("move_posts.moderator_post", count: post_ids.size, topic_link: topic_link), post_number: first_post_number)
|
2013-02-05 14:16:51 -05:00
|
|
|
Jobs.enqueue(:notify_moved_posts, post_ids: post_ids, moved_by_id: moved_by.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
topic
|
|
|
|
end
|
|
|
|
|
2013-02-05 20:13:41 -05:00
|
|
|
def update_flagged_posts_count
|
|
|
|
PostAction.update_flagged_posts_count
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
# Create the summary of the interesting posters in a topic. Cheats to avoid
|
|
|
|
# many queries.
|
2013-02-28 13:54:12 -05:00
|
|
|
def posters_summary(topic_user = nil, current_user = nil, opts={})
|
2013-02-05 14:16:51 -05:00
|
|
|
return @posters_summary if @posters_summary.present?
|
|
|
|
descriptions = {}
|
|
|
|
|
|
|
|
# Use an avatar lookup object if we have it, otherwise create one just for this forum topic
|
|
|
|
al = opts[:avatar_lookup]
|
|
|
|
if al.blank?
|
|
|
|
al = AvatarLookup.new([user_id, last_post_user_id, featured_user1_id, featured_user2_id, featured_user3_id])
|
|
|
|
end
|
|
|
|
|
|
|
|
# Helps us add a description to a poster
|
|
|
|
add_description = lambda do |u, desc|
|
|
|
|
if u.present?
|
|
|
|
descriptions[u.id] ||= []
|
|
|
|
descriptions[u.id] << I18n.t(desc)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-04 19:42:44 -05:00
|
|
|
posted = if topic_user.present? && current_user.present?
|
2013-02-05 14:16:51 -05:00
|
|
|
current_user if topic_user.posted?
|
|
|
|
end
|
|
|
|
|
|
|
|
add_description.call(current_user, :youve_posted) if posted.present?
|
|
|
|
add_description.call(al[user_id], :original_poster)
|
|
|
|
add_description.call(al[featured_user1_id], :most_posts)
|
|
|
|
add_description.call(al[featured_user2_id], :frequent_poster)
|
|
|
|
add_description.call(al[featured_user3_id], :frequent_poster)
|
|
|
|
add_description.call(al[featured_user4_id], :frequent_poster)
|
2013-02-07 10:45:24 -05:00
|
|
|
add_description.call(al[last_post_user_id], :most_recent_poster)
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
@posters_summary = [al[user_id],
|
|
|
|
posted,
|
|
|
|
al[last_post_user_id],
|
|
|
|
al[featured_user1_id],
|
|
|
|
al[featured_user2_id],
|
2013-02-05 14:16:51 -05:00
|
|
|
al[featured_user3_id],
|
|
|
|
al[featured_user4_id]
|
|
|
|
].compact.uniq[0..4]
|
|
|
|
|
|
|
|
unless @posters_summary[0] == al[last_post_user_id]
|
2013-02-07 10:45:24 -05:00
|
|
|
# shuffle last_poster to back
|
2013-02-05 14:16:51 -05:00
|
|
|
@posters_summary.reject!{|u| u == al[last_post_user_id]}
|
|
|
|
@posters_summary << al[last_post_user_id]
|
|
|
|
end
|
2013-02-07 10:45:24 -05:00
|
|
|
@posters_summary.map! do |p|
|
2013-02-05 14:16:51 -05:00
|
|
|
result = TopicPoster.new
|
|
|
|
result.user = p
|
|
|
|
result.description = descriptions[p.id].join(', ')
|
2013-02-07 10:45:24 -05:00
|
|
|
result.extras = "latest" if al[last_post_user_id] == p
|
2013-02-05 14:16:51 -05:00
|
|
|
result
|
|
|
|
end
|
|
|
|
|
|
|
|
@posters_summary
|
|
|
|
end
|
|
|
|
|
|
|
|
# Enable/disable the star on the topic
|
|
|
|
def toggle_star(user, starred)
|
|
|
|
Topic.transaction do
|
2013-02-28 13:54:12 -05:00
|
|
|
TopicUser.change(user, id, starred: starred, starred_at: starred ? DateTime.now : nil)
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
# Update the star count
|
2013-02-07 10:45:24 -05:00
|
|
|
exec_sql "UPDATE topics
|
|
|
|
SET star_count = (SELECT COUNT(*)
|
|
|
|
FROM topic_users AS ftu
|
2013-02-05 14:16:51 -05:00
|
|
|
WHERE ftu.topic_id = topics.id
|
|
|
|
AND ftu.starred = true)
|
2013-02-28 13:54:12 -05:00
|
|
|
WHERE id = ?", id
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
if starred
|
|
|
|
FavoriteLimiter.new(user).performed!
|
|
|
|
else
|
|
|
|
FavoriteLimiter.new(user).rollback!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
# Enable/disable the mute on the topic
|
|
|
|
def toggle_mute(user, muted)
|
2013-03-06 15:17:07 -05:00
|
|
|
TopicUser.change(user, self.id, notification_level: muted?(user) ? TopicUser.notification_levels[:regular] : TopicUser.notification_levels[:muted] )
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def slug
|
2013-02-26 11:27:59 -05:00
|
|
|
Slug.for(title).presence || "topic"
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def last_post_url
|
|
|
|
"/t/#{slug}/#{id}/#{posts_count}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def relative_url(post_number=nil)
|
|
|
|
url = "/t/#{slug}/#{id}"
|
2013-02-28 13:54:12 -05:00
|
|
|
url << "/#{post_number}" if post_number.present? && post_number.to_i > 1
|
2013-02-05 14:16:51 -05:00
|
|
|
url
|
|
|
|
end
|
|
|
|
|
|
|
|
def muted?(user)
|
|
|
|
return false unless user && user.id
|
|
|
|
tu = topic_users.where(user_id: user.id).first
|
2013-03-06 15:17:07 -05:00
|
|
|
tu && tu.notification_level == TopicUser.notification_levels[:muted]
|
|
|
|
end
|
|
|
|
|
|
|
|
def clear_pin_for(user)
|
|
|
|
return unless user.present?
|
|
|
|
|
|
|
|
TopicUser.change(user.id, id, cleared_pinned_at: Time.now)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_pinned(status)
|
|
|
|
update_column(:pinned_at, status ? Time.now : nil)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def draft_key
|
2013-02-28 13:54:12 -05:00
|
|
|
"#{Draft::EXISTING_TOPIC}#{id}"
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# notification stuff
|
|
|
|
def notify_watch!(user)
|
2013-03-06 15:17:07 -05:00
|
|
|
TopicUser.change(user, id, notification_level: TopicUser.notification_levels[:watching])
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def notify_tracking!(user)
|
2013-03-06 15:17:07 -05:00
|
|
|
TopicUser.change(user, id, notification_level: TopicUser.notification_levels[:tracking])
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def notify_regular!(user)
|
2013-03-06 15:17:07 -05:00
|
|
|
TopicUser.change(user, id, notification_level: TopicUser.notification_levels[:regular])
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def notify_muted!(user)
|
2013-03-06 15:17:07 -05:00
|
|
|
TopicUser.change(user, id, notification_level: TopicUser.notification_levels[:muted])
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|