2013-02-06 03:16:51 +08:00
require 'image_sizer'
require_dependency 'cooked_post_processor'
module Jobs
class ProcessPost < Jobs :: Base
2013-02-26 00:42:20 +08:00
def execute ( args )
2014-05-06 21:41:59 +08:00
post = Post . find_by ( id : args [ :post_id ] )
2013-04-18 09:34:40 +08:00
# two levels of deletion
return unless post . present? && post . topic . present?
2013-02-06 03:16:51 +08:00
2014-12-07 13:39:15 +08:00
orig_cooked = post . cooked
recooked = nil
if args [ :cook ] . present?
2015-09-30 00:51:26 +08:00
cooking_options = args [ :cooking_options ] || { }
cooking_options [ :topic_id ] = post . topic_id
recooked = post . cook ( post . raw , cooking_options . symbolize_keys )
2018-02-06 00:46:53 +08:00
post . update_columns ( cooked : recooked , baked_at : Time . zone . now , baked_version : Post :: BAKED_VERSION )
2014-12-07 13:39:15 +08:00
end
2013-02-06 03:16:51 +08:00
cp = CookedPostProcessor . new ( post , args )
2019-01-17 10:24:32 +08:00
cp . post_process ( bypass_bump : args [ :bypass_bump ] , new_post : args [ :new_post ] )
2013-02-06 03:16:51 +08:00
# If we changed the document, save it
2014-12-07 13:39:15 +08:00
cooked = cp . html
if cooked != ( recooked || orig_cooked )
if orig_cooked . present? && cooked . blank?
# TODO suicide if needed, let's gather a few here first
2014-12-07 13:43:26 +08:00
Rails . logger . warn ( " Cooked post processor in FATAL state, bypassing. You need to urgently restart sidekiq \n orig: #{ orig_cooked } \n recooked: #{ recooked } \n cooked: #{ cooked } \n post id: #{ post . id } " )
2014-12-07 13:39:15 +08:00
else
post . update_column ( :cooked , cp . html )
2017-01-30 16:42:05 +08:00
extract_links ( post )
2014-12-07 13:39:15 +08:00
post . publish_change_to_clients! :revised
end
2014-08-27 08:58:43 +08:00
end
2017-06-29 04:56:44 +08:00
2017-12-21 21:45:59 +08:00
if ! post . user & . staff? && ! post . user & . staged?
2017-06-29 04:56:44 +08:00
s = post . cooked
s << " #{ post . topic . title } " if post . post_number == 1
2017-10-13 03:34:22 +08:00
if ! args [ :bypass_bump ] && WordWatcher . new ( s ) . should_flag?
2017-06-29 04:56:44 +08:00
PostAction . act ( Discourse . system_user , post , PostActionType . types [ :inappropriate ] ) rescue PostAction :: AlreadyActed
end
end
2013-02-06 03:16:51 +08:00
end
2017-01-30 16:42:05 +08:00
# onebox may have added some links, so extract them now
def extract_links ( post )
TopicLink . extract_from ( post )
QuotedPost . extract_from ( post )
end
2013-02-06 03:16:51 +08:00
end
end