2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-04 12:43:00 +00:00
|
|
|
class RemoveStatusService < BaseService
|
2019-02-02 18:11:38 +00:00
|
|
|
include Redisable
|
2019-06-04 21:11:18 +00:00
|
|
|
include Payloadable
|
2017-02-11 01:12:05 +00:00
|
|
|
|
2019-08-22 02:17:12 +00:00
|
|
|
# Delete a status
|
|
|
|
# @param [Status] status
|
|
|
|
# @param [Hash] options
|
|
|
|
# @option [Boolean] :redraft
|
2019-09-11 14:32:44 +00:00
|
|
|
# @option [Boolean] :immediate
|
2020-11-27 14:48:31 +00:00
|
|
|
# @option [Boolean] :original_removed
|
2021-07-16 06:38:50 +00:00
|
|
|
# @option [Boolean] :mark_expired
|
2017-12-06 10:41:57 +00:00
|
|
|
def call(status, **options)
|
2021-07-16 06:38:50 +00:00
|
|
|
@status = status
|
|
|
|
@account = status.account
|
|
|
|
@options = options
|
|
|
|
@status_expire = status.status_expire
|
|
|
|
@payload = Oj.dump(event: mark_expired? ? :expire : :delete, payload: status.id.to_s)
|
2017-06-11 15:13:43 +00:00
|
|
|
|
2021-07-16 06:38:50 +00:00
|
|
|
return if mark_expired? && @status_expire.nil?
|
|
|
|
|
|
|
|
@status.discard unless mark_expired?
|
2021-04-21 02:46:09 +00:00
|
|
|
|
2019-03-16 19:18:47 +00:00
|
|
|
RedisLock.acquire(lock_options) do |lock|
|
|
|
|
if lock.acquired?
|
2020-11-27 14:48:31 +00:00
|
|
|
remove_from_self if @account.local?
|
2019-03-16 19:18:47 +00:00
|
|
|
remove_from_followers
|
|
|
|
remove_from_lists
|
2021-07-16 06:38:50 +00:00
|
|
|
remove_from_subscribers
|
|
|
|
remove_from_subscribers_lists
|
2020-11-27 14:48:31 +00:00
|
|
|
|
|
|
|
# There is no reason to send out Undo activities when the
|
|
|
|
# cause is that the original object has been removed, since
|
|
|
|
# original object being removed implicitly removes reblogs
|
|
|
|
# of it. The Delete activity of the original is forwarded
|
|
|
|
# separately.
|
2021-04-17 13:41:57 +00:00
|
|
|
remove_from_remote_reach if @account.local? && !@options[:original_removed]
|
2020-11-27 14:48:31 +00:00
|
|
|
|
|
|
|
# Since reblogs don't mention anyone, don't get reblogged,
|
|
|
|
# favourited and don't contain their own media attachments
|
|
|
|
# or hashtags, this can be skipped
|
|
|
|
unless @status.reblog?
|
|
|
|
remove_from_mentions
|
|
|
|
remove_reblogs
|
|
|
|
remove_from_hashtags
|
2020-07-12 13:00:23 +00:00
|
|
|
remove_from_group if status.account.group?
|
2020-11-27 14:48:31 +00:00
|
|
|
remove_from_public
|
|
|
|
remove_from_media if @status.media_attachments.any?
|
2021-07-16 06:38:50 +00:00
|
|
|
remove_media unless mark_expired?
|
2020-11-27 14:48:31 +00:00
|
|
|
end
|
2019-03-16 19:18:47 +00:00
|
|
|
|
2021-07-16 06:38:50 +00:00
|
|
|
if mark_expired?
|
|
|
|
UnpinService.new.call(@account, @status)
|
|
|
|
@status.update!(expired_at: @status_expire.expires_at)
|
|
|
|
@status_expire.destroy
|
|
|
|
else
|
|
|
|
@status_expire&.destroy
|
|
|
|
@status.destroy! if @options[:immediate] || !@status.reported?
|
|
|
|
end
|
2019-03-16 19:18:47 +00:00
|
|
|
else
|
|
|
|
raise Mastodon::RaceConditionError
|
|
|
|
end
|
|
|
|
end
|
2016-09-04 23:59:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2021-07-16 06:38:50 +00:00
|
|
|
def mark_expired?
|
|
|
|
@options[:mark_expired]
|
|
|
|
end
|
|
|
|
|
2017-06-11 15:13:43 +00:00
|
|
|
def remove_from_self
|
2021-07-16 06:38:50 +00:00
|
|
|
FeedManager.instance.unpush_from_home(@account, @status, @options)
|
2016-09-04 23:59:46 +00:00
|
|
|
end
|
|
|
|
|
2017-06-11 15:13:43 +00:00
|
|
|
def remove_from_followers
|
2021-07-16 06:38:50 +00:00
|
|
|
@account.followers_for_local_distribution.includes(:user).reorder(nil).find_each do |follower|
|
|
|
|
FeedManager.instance.unpush_from_home(follower, @status, @options)
|
2017-11-17 23:16:48 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_lists
|
2021-07-16 06:38:50 +00:00
|
|
|
@account.lists_for_local_distribution.select(:id, :account_id).includes(account: :user).reorder(nil).find_each do |list|
|
|
|
|
FeedManager.instance.unpush_from_list(list, @status, @options)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_subscribers
|
|
|
|
@account.subscribers_for_local_distribution.with_reblog(@status.reblog?).with_media(@status.proper).includes(account: :user).reorder(nil).find_each do |subscribing|
|
|
|
|
FeedManager.instance.unpush_from_home(subscribing.account, @status, @options)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_subscribers_lists
|
|
|
|
@account.list_subscribers_for_local_distribution.with_reblog(@status.reblog?).with_media(@status.proper).includes(account: :user).reorder(nil).find_each do |subscribing|
|
|
|
|
FeedManager.instance.unpush_from_list(subscribing.list, @status, @options)
|
2016-09-04 23:59:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-27 14:48:31 +00:00
|
|
|
def remove_from_mentions
|
|
|
|
# For limited visibility statuses, the mentions that determine
|
|
|
|
# who receives them in their home feed are a subset of followers
|
|
|
|
# and therefore the delete is already handled by sending it to all
|
|
|
|
# followers. Here we send a delete to actively mentioned accounts
|
|
|
|
# that may not follow the account
|
|
|
|
|
|
|
|
@status.active_mentions.find_each do |mention|
|
|
|
|
redis.publish("timeline:#{mention.account_id}", @payload)
|
2017-09-25 22:29:29 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-27 14:48:31 +00:00
|
|
|
def remove_from_remote_reach
|
2021-04-17 13:41:57 +00:00
|
|
|
# Followers, relays, people who got mentioned in the status,
|
|
|
|
# or who reblogged it from someone else might not follow
|
|
|
|
# the author and wouldn't normally receive the delete
|
|
|
|
# notification - so here, we explicitly send it to them
|
2017-08-12 22:44:41 +00:00
|
|
|
|
2020-11-27 14:48:31 +00:00
|
|
|
status_reach_finder = StatusReachFinder.new(@status)
|
2017-08-12 22:44:41 +00:00
|
|
|
|
2020-11-27 14:48:31 +00:00
|
|
|
ActivityPub::DeliveryWorker.push_bulk(status_reach_finder.inboxes) do |inbox_url|
|
|
|
|
[signed_activity_json, @account.id, inbox_url]
|
2017-08-12 22:44:41 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-26 11:47:38 +00:00
|
|
|
def signed_activity_json
|
2021-07-16 06:38:50 +00:00
|
|
|
@signed_activity_json ||= Oj.dump(serialize_payload(@status, @status.reblog? ? ActivityPub::UndoAnnounceSerializer : ActivityPub::DeleteSerializer, signer: @account, expiry: mark_expired? ? @status.expiry : nil))
|
2017-08-12 22:44:41 +00:00
|
|
|
end
|
|
|
|
|
2017-06-11 15:13:43 +00:00
|
|
|
def remove_reblogs
|
|
|
|
# We delete reblogs of the status before the original status,
|
|
|
|
# because once original status is gone, reblogs will disappear
|
|
|
|
# without us being able to do all the fancy stuff
|
2016-09-04 23:59:46 +00:00
|
|
|
|
2021-07-24 12:41:46 +00:00
|
|
|
@status.reblogs.includes(:account).reorder(nil).find_each do |reblog|
|
2017-11-30 02:50:05 +00:00
|
|
|
RemoveStatusService.new.call(reblog, original_removed: true)
|
2016-09-04 23:59:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-11 15:13:43 +00:00
|
|
|
def remove_from_hashtags
|
2020-11-27 14:48:31 +00:00
|
|
|
@account.featured_tags.where(tag_id: @status.tags.map(&:id)).each do |featured_tag|
|
2019-02-04 03:25:59 +00:00
|
|
|
featured_tag.decrement(@status.id)
|
|
|
|
end
|
|
|
|
|
2017-09-25 22:29:29 +00:00
|
|
|
return unless @status.public_visibility?
|
|
|
|
|
2020-11-27 14:48:31 +00:00
|
|
|
@status.tags.map(&:name).each do |hashtag|
|
2019-08-07 08:01:19 +00:00
|
|
|
redis.publish("timeline:hashtag:#{hashtag.mb_chars.downcase}", @payload)
|
2016-11-09 18:16:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-07-12 13:00:23 +00:00
|
|
|
def remove_from_group
|
2020-10-05 13:08:54 +00:00
|
|
|
payload = @status.reblog? ? Oj.dump(event: :delete, payload: @status.reblog.id.to_s) : @payload
|
|
|
|
|
|
|
|
redis.publish("timeline:group:#{@status.account.id}", payload)
|
2020-07-12 13:00:23 +00:00
|
|
|
|
|
|
|
@status.tags.map(&:name).each do |hashtag|
|
2020-10-05 13:08:54 +00:00
|
|
|
redis.publish("timeline:group:#{@status.account.id}:#{hashtag.mb_chars.downcase}", payload)
|
2020-07-12 13:00:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if @status.media_attachments.any?
|
2020-10-05 13:08:54 +00:00
|
|
|
redis.publish("timeline:group:media:#{@status.account.id}", payload)
|
2020-07-12 13:00:23 +00:00
|
|
|
|
|
|
|
@status.tags.map(&:name).each do |hashtag|
|
2020-10-05 13:08:54 +00:00
|
|
|
redis.publish("timeline:group:media:#{@status.account.id}:#{hashtag.mb_chars.downcase}", payload)
|
2020-07-12 13:00:23 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-11 15:13:43 +00:00
|
|
|
def remove_from_public
|
2017-09-25 22:29:29 +00:00
|
|
|
return unless @status.public_visibility?
|
|
|
|
|
2019-02-02 18:11:38 +00:00
|
|
|
redis.publish('timeline:public', @payload)
|
2019-11-13 22:42:56 +00:00
|
|
|
if @status.local?
|
|
|
|
else
|
|
|
|
redis.publish('timeline:public:remote', @payload)
|
|
|
|
redis.publish("timeline:public:domain:#{@account.domain.mb_chars.downcase}", @payload)
|
|
|
|
end
|
2016-11-09 18:16:27 +00:00
|
|
|
end
|
|
|
|
|
2018-05-21 10:43:38 +00:00
|
|
|
def remove_from_media
|
|
|
|
return unless @status.public_visibility?
|
|
|
|
|
2019-02-02 18:11:38 +00:00
|
|
|
redis.publish('timeline:public:media', @payload)
|
2019-11-13 22:42:56 +00:00
|
|
|
if @status.local?
|
|
|
|
else
|
|
|
|
redis.publish('timeline:public:remote:media', @payload)
|
|
|
|
redis.publish("timeline:public:domain:media:#{@account.domain.mb_chars.downcase}", @payload)
|
|
|
|
end
|
2016-09-04 12:43:00 +00:00
|
|
|
end
|
2019-03-16 19:18:47 +00:00
|
|
|
|
2019-08-22 02:17:12 +00:00
|
|
|
def remove_media
|
2019-09-11 14:32:44 +00:00
|
|
|
return if @options[:redraft] || (!@options[:immediate] && @status.reported?)
|
2019-08-22 02:17:12 +00:00
|
|
|
|
|
|
|
@status.media_attachments.destroy_all
|
|
|
|
end
|
|
|
|
|
2019-03-16 19:18:47 +00:00
|
|
|
def lock_options
|
2021-05-19 21:52:08 +00:00
|
|
|
{ redis: Redis.current, key: "distribute:#{@status.id}", autorelease: 5.minutes.seconds }
|
2019-03-16 19:18:47 +00:00
|
|
|
end
|
2016-09-04 12:43:00 +00:00
|
|
|
end
|