2019-05-02 18:17:27 -04:00
# frozen_string_literal: true
2023-01-09 07:20:10 -05:00
require " image_sizer "
2013-02-05 14:16:51 -05:00
module Jobs
2019-10-02 00:01:53 -04:00
class ProcessPost < :: Jobs :: Base
2013-02-25 11:42:20 -05:00
def execute ( args )
2020-04-03 08:29:42 -04:00
DistributedMutex . synchronize ( " process_post_ #{ args [ :post_id ] } " , validity : 10 . minutes ) do
2020-03-07 07:36:54 -05:00
post = Post . find_by ( id : args [ :post_id ] )
# two levels of deletion
return unless post . present? && post . topic . present?
orig_cooked = post . cooked
recooked = nil
if args [ :cook ] . present?
cooking_options = args [ :cooking_options ] || { }
cooking_options [ :topic_id ] = post . topic_id
recooked = post . cook ( post . raw , cooking_options . symbolize_keys )
2023-01-09 07:20:10 -05:00
post . update_columns (
cooked : recooked ,
baked_at : Time . zone . now ,
baked_version : Post :: BAKED_VERSION ,
)
2020-03-07 07:36:54 -05:00
end
2013-02-05 14:16:51 -05:00
2020-03-07 07:36:54 -05:00
cp = CookedPostProcessor . new ( post , args )
2020-04-20 21:48:19 -04:00
cp . post_process ( new_post : args [ :new_post ] )
2013-02-05 14:16:51 -05:00
2020-03-07 07:36:54 -05:00
# If we changed the document, save it
cooked = cp . html
2014-12-07 00:39:15 -05:00
2020-03-07 07:36:54 -05:00
if cooked != ( recooked || orig_cooked )
if orig_cooked . present? && cooked . blank?
# TODO stop/restart the worker if needed, let's gather a few here first
2023-01-09 07:20:10 -05: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 } " ,
)
2020-03-07 07:36:54 -05:00
else
post . update_column ( :cooked , cp . html )
2021-03-10 12:07:13 -05:00
post . topic . update_excerpt ( post . excerpt_for_topic ) if post . is_first_post?
2020-03-07 07:36:54 -05:00
extract_links ( post )
post . publish_change_to_clients! :revised
end
2014-12-07 00:39:15 -05:00
end
2017-06-28 16:56:44 -04:00
2022-05-16 12:56:00 -04:00
enqueue_pull_hotlinked_images ( post ) unless args [ :skip_pull_hotlinked_images ]
2020-03-07 07:36:54 -05:00
if ! post . user & . staff? && ! post . user & . staged?
2020-06-22 14:48:06 -04:00
s = post . raw
2020-03-07 07:36:54 -05:00
s << " #{ post . topic . title } " if post . post_number == 1
if ! args [ :bypass_bump ] && WordWatcher . new ( s ) . should_flag?
2020-06-02 11:49:02 -04:00
PostActionCreator . create (
Discourse . system_user ,
post ,
:inappropriate ,
2023-01-09 07:20:10 -05:00
reason : :watched_word ,
2020-06-02 11:49:02 -04:00
)
2020-03-07 07:36:54 -05:00
end
2017-06-28 16:56:44 -04:00
end
end
2013-02-05 14:16:51 -05:00
end
2017-01-30 03:42:05 -05:00
# onebox may have added some links, so extract them now
def extract_links ( post )
TopicLink . extract_from ( post )
QuotedPost . extract_from ( post )
end
2022-05-16 12:56:00 -04:00
def enqueue_pull_hotlinked_images ( post )
Jobs . cancel_scheduled_job ( :pull_hotlinked_images , post_id : post . id )
Jobs . enqueue ( :pull_hotlinked_images , post_id : post . id )
end
2013-02-05 14:16:51 -05:00
end
end