2013-10-01 03:04:02 -04:00
|
|
|
require_dependency 'jobs/base'
|
2013-02-05 14:16:51 -05:00
|
|
|
require_dependency 'pretty_text'
|
|
|
|
require_dependency 'rate_limiter'
|
2013-02-09 10:33:07 -05:00
|
|
|
require_dependency 'post_revisor'
|
2013-03-18 15:12:31 -04:00
|
|
|
require_dependency 'enum'
|
2013-05-07 00:39:01 -04:00
|
|
|
require_dependency 'trashable'
|
2013-05-30 14:34:44 -04:00
|
|
|
require_dependency 'post_analyzer'
|
2013-06-13 04:18:17 -04:00
|
|
|
require_dependency 'validators/post_validator'
|
2013-10-10 03:45:40 -04:00
|
|
|
require_dependency 'plugin/filter'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
require 'archetype'
|
|
|
|
require 'digest/sha1'
|
|
|
|
|
|
|
|
class Post < ActiveRecord::Base
|
|
|
|
include RateLimiter::OnCreateRecord
|
2013-05-07 00:39:01 -04:00
|
|
|
include Trashable
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
rate_limit
|
2013-10-09 19:32:03 -04:00
|
|
|
rate_limit :limit_posts_per_day
|
2013-02-19 01:57:14 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
belongs_to :user
|
|
|
|
belongs_to :topic, counter_cache: :posts_count
|
2013-03-19 19:51:39 -04:00
|
|
|
belongs_to :reply_to_user, class_name: "User"
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
has_many :post_replies
|
|
|
|
has_many :replies, through: :post_replies
|
|
|
|
has_many :post_actions
|
2013-06-13 13:41:45 -04:00
|
|
|
has_many :topic_links
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-06-13 17:44:24 -04:00
|
|
|
has_many :post_uploads
|
|
|
|
has_many :uploads, through: :post_uploads
|
2013-06-12 19:43:50 -04:00
|
|
|
|
2013-05-22 15:33:33 -04:00
|
|
|
has_one :post_search_data
|
|
|
|
|
2013-10-15 10:21:30 -04:00
|
|
|
has_many :post_details
|
|
|
|
|
2013-12-11 21:41:34 -05:00
|
|
|
has_many :post_revisions
|
|
|
|
has_many :revisions, foreign_key: :post_id, class_name: 'PostRevision'
|
|
|
|
|
2013-06-13 04:18:17 -04:00
|
|
|
validates_with ::Validators::PostValidator
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-06-21 11:36:33 -04:00
|
|
|
# We can pass several creating options to a post via attributes
|
2013-09-06 11:50:05 -04:00
|
|
|
attr_accessor :image_sizes, :quoted_post_numbers, :no_bump, :invalidate_oneboxes, :cooking_options, :skip_unique_check
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
SHORT_POST_CHARS = 1200
|
|
|
|
|
2013-06-09 12:48:44 -04:00
|
|
|
scope :by_newest, -> { order('created_at desc, id desc') }
|
|
|
|
scope :by_post_number, -> { order('post_number ASC') }
|
|
|
|
scope :with_user, -> { includes(:user) }
|
2013-12-13 15:15:51 -05:00
|
|
|
scope :created_since, lambda { |time_ago| where('posts.created_at > ?', time_ago) }
|
2013-04-10 08:54:10 -04:00
|
|
|
scope :public_posts, -> { joins(:topic).where('topics.archetype <> ?', Archetype.private_message) }
|
|
|
|
scope :private_posts, -> { joins(:topic).where('topics.archetype = ?', Archetype.private_message) }
|
2013-04-16 16:56:18 -04:00
|
|
|
scope :with_topic_subtype, ->(subtype) { joins(:topic).where('topics.subtype = ?', subtype) }
|
2014-01-14 11:15:35 -05:00
|
|
|
|
|
|
|
delegate :username, to: :user
|
|
|
|
|
2013-03-18 14:59:34 -04:00
|
|
|
def self.hidden_reasons
|
2013-05-31 11:41:40 -04:00
|
|
|
@hidden_reasons ||= Enum.new(:flag_threshold_reached, :flag_threshold_reached_again, :new_user_spam_threshold_reached)
|
2013-03-18 14:59:34 -04:00
|
|
|
end
|
|
|
|
|
2013-03-18 16:03:46 -04:00
|
|
|
def self.types
|
|
|
|
@types ||= Enum.new(:regular, :moderator_action)
|
|
|
|
end
|
|
|
|
|
2013-12-31 14:37:43 -05:00
|
|
|
def self.cook_methods
|
|
|
|
@cook_methods ||= Enum.new(:regular, :raw_html)
|
|
|
|
end
|
|
|
|
|
2013-10-15 10:21:30 -04:00
|
|
|
def self.find_by_detail(key, value)
|
2013-12-13 12:06:49 -05:00
|
|
|
includes(:post_details).where(post_details: { key: key, value: value }).first
|
2013-10-15 10:21:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def add_detail(key, value, extra = nil)
|
|
|
|
post_details.build(key: key, value: value, extra: extra)
|
|
|
|
end
|
|
|
|
|
2013-10-09 19:32:03 -04:00
|
|
|
def limit_posts_per_day
|
|
|
|
if user.created_at > 1.day.ago && post_number > 1
|
|
|
|
RateLimiter.new(user, "first-day-replies-per-day:#{Date.today.to_s}", SiteSetting.max_replies_in_first_day, 1.day.to_i)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-09 15:20:18 -04:00
|
|
|
def trash!(trashed_by=nil)
|
2013-06-13 13:41:45 -04:00
|
|
|
self.topic_links.each(&:destroy)
|
2013-07-09 15:20:18 -04:00
|
|
|
super(trashed_by)
|
2013-06-13 13:41:45 -04:00
|
|
|
end
|
|
|
|
|
2013-05-07 00:39:01 -04:00
|
|
|
def recover!
|
|
|
|
super
|
|
|
|
update_flagged_posts_count
|
2013-06-13 13:41:45 -04:00
|
|
|
TopicLink.extract_from(self)
|
2013-10-23 19:05:51 -04:00
|
|
|
if topic && topic.category_id && topic.category
|
2013-10-17 02:44:56 -04:00
|
|
|
topic.category.update_latest
|
|
|
|
end
|
2013-05-07 00:39:01 -04:00
|
|
|
end
|
|
|
|
|
2013-03-22 06:18:48 -04:00
|
|
|
# The key we use in redis to ensure unique posts
|
2013-02-05 14:16:51 -05:00
|
|
|
def unique_post_key
|
|
|
|
"post-#{user_id}:#{raw_hash}"
|
|
|
|
end
|
|
|
|
|
2013-09-09 16:17:31 -04:00
|
|
|
def store_unique_post_key
|
|
|
|
if SiteSetting.unique_posts_mins > 0
|
|
|
|
$redis.setex(unique_post_key, SiteSetting.unique_posts_mins.minutes.to_i, "1")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def matches_recent_post?
|
|
|
|
$redis.exists(unique_post_key)
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def raw_hash
|
2013-02-28 13:54:12 -05:00
|
|
|
return if raw.blank?
|
2013-06-17 15:57:13 -04:00
|
|
|
Digest::SHA1.hexdigest(raw.gsub(/\s+/, ""))
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-12 02:43:48 -05:00
|
|
|
def self.white_listed_image_classes
|
2013-12-12 10:42:27 -05:00
|
|
|
@white_listed_image_classes ||= ['avatar', 'favicon', 'thumbnail']
|
2013-02-12 02:43:48 -05:00
|
|
|
end
|
|
|
|
|
2013-05-30 14:34:44 -04:00
|
|
|
def post_analyzer
|
2013-07-22 16:24:47 -04:00
|
|
|
@post_analyzers ||= {}
|
|
|
|
@post_analyzers[raw_hash] ||= PostAnalyzer.new(raw, topic_id)
|
2013-05-30 14:34:44 -04:00
|
|
|
end
|
2013-02-12 02:43:48 -05:00
|
|
|
|
2013-07-21 20:39:17 -04:00
|
|
|
%w{raw_mentions linked_hosts image_count attachment_count link_count raw_links}.each do |attr|
|
2013-05-30 14:34:44 -04:00
|
|
|
define_method(attr) do
|
2013-07-22 16:24:47 -04:00
|
|
|
post_analyzer.send(attr)
|
2013-05-30 14:34:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def cook(*args)
|
2013-12-31 14:37:43 -05:00
|
|
|
# For some posts, for example those imported via RSS, we support raw HTML. In that
|
|
|
|
# case we can skip the rendering pipeline.
|
|
|
|
return raw if cook_method == Post.cook_methods[:raw_html]
|
|
|
|
|
|
|
|
# Default is to cook posts
|
2014-01-15 11:34:17 -05:00
|
|
|
cooked = if !self.user || !self.user.has_trust_level?(:leader)
|
|
|
|
post_analyzer.cook(*args)
|
|
|
|
else
|
|
|
|
# At trust level 3, we don't apply nofollow to links
|
|
|
|
cloned = args.dup
|
|
|
|
cloned[1] ||= {}
|
|
|
|
cloned[1][:omit_nofollow] = true
|
|
|
|
post_analyzer.cook(*cloned)
|
|
|
|
end
|
|
|
|
Plugin::Filter.apply( :after_post_cook, self, cooked )
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-04-05 13:59:00 -04:00
|
|
|
# Sometimes the post is being edited by someone else, for example, a mod.
|
|
|
|
# If that's the case, they should not be bound by the original poster's
|
|
|
|
# restrictions, for example on not posting images.
|
|
|
|
def acting_user
|
|
|
|
@acting_user || user
|
|
|
|
end
|
|
|
|
|
|
|
|
def acting_user=(pu)
|
|
|
|
@acting_user = pu
|
|
|
|
end
|
|
|
|
|
2013-05-10 16:58:23 -04:00
|
|
|
def total_hosts_usage
|
|
|
|
hosts = linked_hosts.clone
|
|
|
|
|
2013-05-24 15:20:58 -04:00
|
|
|
TopicLink.where(domain: hosts.keys, user_id: acting_user.id)
|
|
|
|
.group(:domain, :post_id)
|
|
|
|
.count.keys.each do |tuple|
|
|
|
|
domain = tuple[0]
|
|
|
|
hosts[domain] = (hosts[domain] || 0) + 1
|
2013-05-10 16:58:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
hosts
|
|
|
|
end
|
|
|
|
|
|
|
|
# Prevent new users from posting the same hosts too many times.
|
|
|
|
def has_host_spam?
|
|
|
|
return false if acting_user.present? && acting_user.has_trust_level?(:basic)
|
|
|
|
|
|
|
|
total_hosts_usage.each do |host, count|
|
|
|
|
return true if count >= SiteSetting.newuser_spam_host_threshold
|
|
|
|
end
|
|
|
|
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def archetype
|
|
|
|
topic.archetype
|
|
|
|
end
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def self.regular_order
|
2013-02-07 10:45:24 -05:00
|
|
|
order(:sort_order, :post_number)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.reverse_order
|
2013-02-07 10:45:24 -05:00
|
|
|
order('sort_order desc, post_number desc')
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-11-18 12:48:26 -05:00
|
|
|
def self.summary
|
|
|
|
where(["(post_number = 1) or (percent_rank <= ?)", SiteSetting.summary_percent_filter.to_f / 100.0])
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 20:13:41 -05:00
|
|
|
def update_flagged_posts_count
|
|
|
|
PostAction.update_flagged_posts_count
|
|
|
|
end
|
|
|
|
|
2013-02-28 13:54:12 -05:00
|
|
|
def filter_quotes(parent_post = nil)
|
2013-02-05 14:16:51 -05:00
|
|
|
return cooked if parent_post.blank?
|
|
|
|
|
|
|
|
# We only filter quotes when there is exactly 1
|
|
|
|
return cooked unless (quote_count == 1)
|
|
|
|
|
2013-02-15 20:58:33 -05:00
|
|
|
parent_raw = parent_post.raw.sub(/\[quote.+\/quote\]/m, '')
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-03-04 19:42:44 -05:00
|
|
|
if raw[parent_raw] || (parent_raw.size < SHORT_POST_CHARS)
|
2013-02-05 14:16:51 -05:00
|
|
|
return cooked.sub(/\<aside.+\<\/aside\>/m, '')
|
|
|
|
end
|
|
|
|
|
|
|
|
cooked
|
|
|
|
end
|
|
|
|
|
|
|
|
def external_id
|
2013-02-07 10:45:24 -05:00
|
|
|
"#{topic_id}/#{post_number}"
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def quoteless?
|
2013-02-28 13:54:12 -05:00
|
|
|
(quote_count == 0) && (reply_to_post_number.present?)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-01-03 12:52:24 -05:00
|
|
|
def reply_to_post
|
|
|
|
return if reply_to_post_number.blank?
|
|
|
|
@reply_to_post ||= Post.where("topic_id = :topic_id AND post_number = :post_number",
|
|
|
|
topic_id: topic_id,
|
|
|
|
post_number: reply_to_post_number).first
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def reply_notification_target
|
2013-02-28 13:54:12 -05:00
|
|
|
return if reply_to_post_number.blank?
|
|
|
|
Post.where("topic_id = :topic_id AND post_number = :post_number AND user_id <> :user_id",
|
|
|
|
topic_id: topic_id,
|
|
|
|
post_number: reply_to_post_number,
|
|
|
|
user_id: user_id).first.try(:user)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-04-29 23:25:55 -04:00
|
|
|
def self.excerpt(cooked, maxlength = nil, options = {})
|
2013-02-05 14:16:51 -05:00
|
|
|
maxlength ||= SiteSetting.post_excerpt_maxlength
|
2013-04-29 23:25:55 -04:00
|
|
|
PrettyText.excerpt(cooked, maxlength, options)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Strip out most of the markup
|
2013-04-29 23:25:55 -04:00
|
|
|
def excerpt(maxlength = nil, options = {})
|
|
|
|
Post.excerpt(cooked, maxlength, options)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
# A list of versions including the initial version
|
|
|
|
def all_versions
|
|
|
|
result = []
|
2013-03-13 12:35:55 -04:00
|
|
|
result << { number: 1, display_username: user.username, created_at: created_at }
|
2013-02-05 14:16:51 -05:00
|
|
|
versions.order(:number).includes(:user).each do |v|
|
2013-03-13 12:35:55 -04:00
|
|
|
if v.user.present?
|
|
|
|
result << { number: v.number, display_username: v.user.username, created_at: v.created_at }
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
2013-05-25 20:18:04 -04:00
|
|
|
def is_first_post?
|
|
|
|
post_number == 1
|
|
|
|
end
|
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
def is_flagged?
|
2013-03-01 07:07:44 -05:00
|
|
|
post_actions.where(post_action_type_id: PostActionType.flag_types.values, deleted_at: nil).count != 0
|
2013-02-06 23:15:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def unhide!
|
|
|
|
self.hidden = false
|
|
|
|
self.hidden_reason_id = nil
|
|
|
|
self.topic.update_attributes(visible: true)
|
2013-02-28 13:54:12 -05:00
|
|
|
save
|
2013-02-06 23:15:48 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def url
|
2013-04-24 04:05:35 -04:00
|
|
|
Post.url(topic.slug, topic.id, post_number)
|
2013-04-22 03:45:03 -04:00
|
|
|
end
|
|
|
|
|
2013-04-24 04:05:35 -04:00
|
|
|
def self.url(slug, topic_id, post_number)
|
|
|
|
"/t/#{slug}/#{topic_id}/#{post_number}"
|
2013-04-22 03:45:03 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.urls(post_ids)
|
|
|
|
ids = post_ids.map{|u| u}
|
|
|
|
if ids.length > 0
|
|
|
|
urls = {}
|
|
|
|
Topic.joins(:posts).where('posts.id' => ids).
|
2013-04-24 04:05:35 -04:00
|
|
|
select(['posts.id as post_id','post_number', 'topics.slug', 'topics.title', 'topics.id']).
|
2013-04-22 03:45:03 -04:00
|
|
|
each do |t|
|
2013-04-24 04:05:35 -04:00
|
|
|
urls[t.post_id.to_i] = url(t.slug, t.id, t.post_number)
|
2013-04-22 03:45:03 -04:00
|
|
|
end
|
|
|
|
urls
|
2013-04-24 04:05:35 -04:00
|
|
|
else
|
2013-04-22 03:45:03 -04:00
|
|
|
{}
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-28 13:54:12 -05:00
|
|
|
def revise(updated_by, new_raw, opts = {})
|
2013-02-09 10:33:07 -05:00
|
|
|
PostRevisor.new(self).revise!(updated_by, new_raw, opts)
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
before_create do
|
2013-06-09 12:48:44 -04:00
|
|
|
PostCreator.before_create_tasks(self)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# This calculates the geometric mean of the post timings and stores it along with
|
2013-02-07 10:45:24 -05:00
|
|
|
# each post.
|
2013-02-05 14:16:51 -05:00
|
|
|
def self.calculate_avg_time
|
2013-02-11 15:47:28 -05:00
|
|
|
retry_lock_error do
|
|
|
|
exec_sql("UPDATE posts
|
|
|
|
SET avg_time = (x.gmean / 1000)
|
|
|
|
FROM (SELECT post_timings.topic_id,
|
|
|
|
post_timings.post_number,
|
|
|
|
round(exp(avg(ln(msecs)))) AS gmean
|
|
|
|
FROM post_timings
|
|
|
|
INNER JOIN posts AS p2
|
|
|
|
ON p2.post_number = post_timings.post_number
|
|
|
|
AND p2.topic_id = post_timings.topic_id
|
|
|
|
AND p2.user_id <> post_timings.user_id
|
|
|
|
GROUP BY post_timings.topic_id, post_timings.post_number) AS x
|
|
|
|
WHERE x.topic_id = posts.topic_id
|
2013-09-19 21:34:42 -04:00
|
|
|
AND x.post_number = posts.post_number
|
|
|
|
AND (posts.avg_time <> (x.gmean / 1000)::int OR posts.avg_time IS NULL)")
|
2013-02-11 15:47:28 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
before_save do
|
2013-02-28 13:54:12 -05:00
|
|
|
self.last_editor_id ||= user_id
|
2013-02-05 14:16:51 -05:00
|
|
|
self.cooked = cook(raw, topic_id: topic_id) unless new_record?
|
|
|
|
end
|
|
|
|
|
2013-12-11 21:41:34 -05:00
|
|
|
after_save do
|
|
|
|
save_revision if self.version_changed?
|
|
|
|
end
|
|
|
|
|
|
|
|
after_update do
|
|
|
|
update_revision if self.changed?
|
|
|
|
end
|
|
|
|
|
2013-03-18 15:12:31 -04:00
|
|
|
def advance_draft_sequence
|
|
|
|
return if topic.blank? # could be deleted
|
|
|
|
DraftSequence.next!(last_editor_id, topic.draft_key)
|
|
|
|
end
|
|
|
|
|
2013-07-22 16:39:20 -04:00
|
|
|
# TODO: move to post-analyzer?
|
2013-03-18 15:54:08 -04:00
|
|
|
# Determine what posts are quoted by this post
|
2013-02-05 14:16:51 -05:00
|
|
|
def extract_quoted_post_numbers
|
2013-05-22 15:45:31 -04:00
|
|
|
temp_collector = []
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
# Create relationships for the quotes
|
2013-05-22 15:38:45 -04:00
|
|
|
raw.scan(/\[quote=\"([^"]+)"\]/).each do |quote|
|
|
|
|
args = parse_quote_into_arguments(quote)
|
2013-05-22 15:45:31 -04:00
|
|
|
# If the topic attribute is present, ensure it's the same topic
|
|
|
|
temp_collector << args[:post] unless (args[:topic].present? && topic_id != args[:topic])
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-02-07 10:45:24 -05:00
|
|
|
|
2013-05-22 15:45:31 -04:00
|
|
|
temp_collector.uniq!
|
|
|
|
self.quoted_post_numbers = temp_collector
|
|
|
|
self.quote_count = temp_collector.size
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-05-23 12:09:06 -04:00
|
|
|
|
2013-03-18 15:54:08 -04:00
|
|
|
def save_reply_relationships
|
2013-05-23 12:09:06 -04:00
|
|
|
add_to_quoted_post_numbers(reply_to_post_number)
|
|
|
|
return if self.quoted_post_numbers.blank?
|
2013-03-18 15:54:08 -04:00
|
|
|
|
|
|
|
# Create a reply relationship between quoted posts and this new post
|
2013-05-23 12:09:06 -04:00
|
|
|
self.quoted_post_numbers.each do |p|
|
|
|
|
post = Post.where(topic_id: topic_id, post_number: p).first
|
|
|
|
create_reply_relationship_with(post)
|
2013-03-18 15:54:08 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-18 13:55:34 -04:00
|
|
|
# Enqueue post processing for this post
|
2013-11-21 19:52:26 -05:00
|
|
|
def trigger_post_process(bypass_bump = false)
|
|
|
|
args = {
|
|
|
|
post_id: id,
|
|
|
|
bypass_bump: bypass_bump
|
|
|
|
}
|
2013-02-28 13:54:12 -05:00
|
|
|
args[:image_sizes] = image_sizes if image_sizes.present?
|
|
|
|
args[:invalidate_oneboxes] = true if invalidate_oneboxes.present?
|
2013-02-07 10:45:24 -05:00
|
|
|
Jobs.enqueue(:process_post, args)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-03-07 11:07:59 -05:00
|
|
|
|
2013-04-16 16:56:18 -04:00
|
|
|
def self.public_posts_count_per_day(since_days_ago=30)
|
|
|
|
public_posts.where('posts.created_at > ?', since_days_ago.days.ago).group('date(posts.created_at)').order('date(posts.created_at)').count
|
2013-04-03 13:25:52 -04:00
|
|
|
end
|
|
|
|
|
2013-04-16 16:56:18 -04:00
|
|
|
def self.private_messages_count_per_day(since_days_ago, topic_subtype)
|
|
|
|
private_posts.with_topic_subtype(topic_subtype).where('posts.created_at > ?', since_days_ago.days.ago).group('date(posts.created_at)').order('date(posts.created_at)').count
|
2013-03-07 11:07:59 -05:00
|
|
|
end
|
2013-05-17 12:15:21 -04:00
|
|
|
|
2013-08-06 17:42:36 -04:00
|
|
|
|
|
|
|
def reply_history
|
|
|
|
post_ids = Post.exec_sql("WITH RECURSIVE breadcrumb(id, reply_to_post_number) AS (
|
|
|
|
SELECT p.id, p.reply_to_post_number FROM posts AS p
|
|
|
|
WHERE p.id = :post_id
|
|
|
|
UNION
|
|
|
|
SELECT p.id, p.reply_to_post_number FROM posts AS p, breadcrumb
|
|
|
|
WHERE breadcrumb.reply_to_post_number = p.post_number
|
|
|
|
AND p.topic_id = :topic_id
|
|
|
|
) SELECT id from breadcrumb ORDER by id", post_id: id, topic_id: topic_id).to_a
|
|
|
|
|
|
|
|
post_ids.map! {|r| r['id'].to_i }.reject! {|post_id| post_id == id}
|
|
|
|
Post.where(id: post_ids).includes(:user, :topic).order(:id).to_a
|
|
|
|
end
|
|
|
|
|
2013-12-11 21:41:34 -05:00
|
|
|
def revert_to(number)
|
|
|
|
return if number >= version
|
|
|
|
post_revision = PostRevision.where(post_id: id, number: number + 1).first
|
|
|
|
post_revision.modifications.each do |attribute, change|
|
|
|
|
attribute = "version" if attribute == "cached_version"
|
|
|
|
write_attribute(attribute, change[0])
|
|
|
|
end
|
|
|
|
end
|
2013-05-17 12:15:21 -04:00
|
|
|
|
2014-01-07 10:32:09 -05:00
|
|
|
def edit_time_limit_expired?
|
|
|
|
if created_at && SiteSetting.post_edit_time_limit.to_i > 0
|
|
|
|
created_at < SiteSetting.post_edit_time_limit.to_i.minutes.ago
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-12-11 21:41:34 -05:00
|
|
|
private
|
2013-05-22 15:45:31 -04:00
|
|
|
|
2013-05-22 15:38:45 -04:00
|
|
|
def parse_quote_into_arguments(quote)
|
|
|
|
return {} unless quote.present?
|
|
|
|
args = {}
|
|
|
|
quote.first.scan(/([a-z]+)\:(\d+)/).each do |arg|
|
|
|
|
args[arg[0].to_sym] = arg[1].to_i
|
|
|
|
end
|
|
|
|
args
|
|
|
|
end
|
2013-05-22 15:45:31 -04:00
|
|
|
|
2013-05-23 12:07:45 -04:00
|
|
|
def add_to_quoted_post_numbers(num)
|
|
|
|
return unless num.present?
|
|
|
|
self.quoted_post_numbers ||= []
|
|
|
|
self.quoted_post_numbers << num
|
|
|
|
end
|
2013-05-23 12:08:24 -04:00
|
|
|
|
|
|
|
def create_reply_relationship_with(post)
|
|
|
|
return if post.nil?
|
|
|
|
post_reply = post.post_replies.new(reply_id: id)
|
|
|
|
if post_reply.save
|
2013-07-01 14:45:52 -04:00
|
|
|
Post.where(id: post.id).update_all ['reply_count = reply_count + 1']
|
2013-05-23 12:08:24 -04:00
|
|
|
end
|
|
|
|
end
|
2013-12-11 21:41:34 -05:00
|
|
|
|
|
|
|
def save_revision
|
|
|
|
modifications = changes.extract!(:raw, :cooked, :edit_reason)
|
|
|
|
# make sure cooked is always present (oneboxes might not change the cooked post)
|
|
|
|
modifications["cooked"] = [self.cooked, self.cooked] unless modifications["cooked"].present?
|
|
|
|
PostRevision.create!(
|
|
|
|
user_id: last_editor_id,
|
|
|
|
post_id: id,
|
|
|
|
number: version,
|
|
|
|
modifications: modifications
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_revision
|
|
|
|
revision = PostRevision.where(post_id: id, number: version).first
|
|
|
|
return unless revision
|
|
|
|
revision.user_id = last_editor_id
|
|
|
|
revision.modifications = changes.extract!(:raw, :cooked, :edit_reason)
|
|
|
|
revision.save
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2013-05-23 22:48:32 -04:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: posts
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
2013-09-03 17:19:29 -04:00
|
|
|
# user_id :integer
|
2013-05-23 22:48:32 -04:00
|
|
|
# topic_id :integer not null
|
|
|
|
# post_number :integer not null
|
|
|
|
# raw :text not null
|
|
|
|
# cooked :text not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# reply_to_post_number :integer
|
|
|
|
# reply_count :integer default(0), not null
|
|
|
|
# quote_count :integer default(0), not null
|
|
|
|
# deleted_at :datetime
|
|
|
|
# off_topic_count :integer default(0), not null
|
|
|
|
# like_count :integer default(0), not null
|
|
|
|
# incoming_link_count :integer default(0), not null
|
|
|
|
# bookmark_count :integer default(0), not null
|
|
|
|
# avg_time :integer
|
|
|
|
# score :float
|
|
|
|
# reads :integer default(0), not null
|
|
|
|
# post_type :integer default(1), not null
|
|
|
|
# vote_count :integer default(0), not null
|
|
|
|
# sort_order :integer
|
|
|
|
# last_editor_id :integer
|
|
|
|
# hidden :boolean default(FALSE), not null
|
|
|
|
# hidden_reason_id :integer
|
|
|
|
# notify_moderators_count :integer default(0), not null
|
|
|
|
# spam_count :integer default(0), not null
|
|
|
|
# illegal_count :integer default(0), not null
|
|
|
|
# inappropriate_count :integer default(0), not null
|
|
|
|
# last_version_at :datetime not null
|
|
|
|
# user_deleted :boolean default(FALSE), not null
|
|
|
|
# reply_to_user_id :integer
|
|
|
|
# percent_rank :float default(1.0)
|
|
|
|
# notify_user_count :integer default(0), not null
|
2013-06-16 20:48:58 -04:00
|
|
|
# like_score :integer default(0), not null
|
2013-07-13 21:24:16 -04:00
|
|
|
# deleted_by_id :integer
|
2013-12-05 01:40:35 -05:00
|
|
|
# edit_reason :string(255)
|
2014-02-06 19:07:36 -05:00
|
|
|
# word_count :integer
|
|
|
|
# version :integer default(1), not null
|
|
|
|
# cook_method :integer default(1), not null
|
2013-05-23 22:48:32 -04:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# idx_posts_user_id_deleted_at (user_id)
|
|
|
|
# index_posts_on_reply_to_post_number (reply_to_post_number)
|
|
|
|
# index_posts_on_topic_id_and_post_number (topic_id,post_number) UNIQUE
|
|
|
|
#
|