2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 17:50:16 +00:00
|
|
|
class ReblogService < BaseService
|
2017-05-29 16:22:22 +00:00
|
|
|
include Authorization
|
2019-06-04 21:11:18 +00:00
|
|
|
include Payloadable
|
2017-02-11 01:12:05 +00:00
|
|
|
|
2016-02-24 17:50:16 +00:00
|
|
|
# Reblog a status and notify its remote author
|
|
|
|
# @param [Account] account Account to reblog from
|
|
|
|
# @param [Status] reblogged_status Status to be reblogged
|
2019-03-15 03:36:41 +00:00
|
|
|
# @param [Hash] options
|
2020-03-08 14:17:39 +00:00
|
|
|
# @option [String] :visibility
|
|
|
|
# @option [Boolean] :with_rate_limit
|
2016-02-24 17:50:16 +00:00
|
|
|
# @return [Status]
|
2019-03-15 03:36:41 +00:00
|
|
|
def call(account, reblogged_status, options = {})
|
2017-01-25 00:48:46 +00:00
|
|
|
reblogged_status = reblogged_status.reblog if reblogged_status.reblog?
|
|
|
|
|
2017-05-30 13:16:14 +00:00
|
|
|
authorize_with account, reblogged_status, :reblog?
|
2016-12-21 19:00:18 +00:00
|
|
|
|
2017-06-08 13:07:39 +00:00
|
|
|
reblog = account.statuses.find_by(reblog: reblogged_status)
|
|
|
|
|
|
|
|
return reblog unless reblog.nil?
|
|
|
|
|
2023-02-18 22:09:40 +00:00
|
|
|
visibility = if reblogged_status.hidden?
|
|
|
|
reblogged_status.visibility
|
|
|
|
else
|
|
|
|
options[:visibility] || account.user&.setting_default_privacy
|
|
|
|
end
|
2020-03-08 14:17:39 +00:00
|
|
|
|
|
|
|
reblog = account.statuses.create!(reblog: reblogged_status, text: '', visibility: visibility, rate_limit: options[:with_rate_limit])
|
2016-11-28 12:36:47 +00:00
|
|
|
|
2022-02-24 23:34:14 +00:00
|
|
|
Trends.register!(reblog)
|
2016-03-26 12:42:10 +00:00
|
|
|
DistributionWorker.perform_async(reblog.id)
|
2017-08-12 22:44:41 +00:00
|
|
|
ActivityPub::DistributionWorker.perform_async(reblog.id)
|
2016-03-19 18:20:07 +00:00
|
|
|
|
2017-08-12 22:44:41 +00:00
|
|
|
create_notification(reblog)
|
Re-add follow recommendations API (#7918)
* Re-add follow recommendations API
GET /api/v1/suggestions
Removed in 30f9e9e624b044f021fd0d345e4b1ea189978479 due to Neo4J
dependency. The algorithm uses triadic closures, takes into account
suspensions, blocks, mutes, domain blocks, excludes locked and moved
accounts, and prefers more recently updated accounts.
* Track interactions with people you don't follow
Replying to, favouriting and reblogging someone you're not following
will make them show up in follow recommendations. The interactions
have different weights:
- Replying is 1
- Favouriting is 10 (decidedly positive interaction, but private)
- Reblogging is 20
Following them, muting or blocking will remove them from the list,
obviously.
* Remove triadic closures, ensure potential friendships are trimmed
2018-07-02 23:47:56 +00:00
|
|
|
bump_potential_friendship(account, reblog)
|
|
|
|
|
2017-08-12 22:44:41 +00:00
|
|
|
reblog
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def create_notification(reblog)
|
|
|
|
reblogged_status = reblog.reblog
|
|
|
|
|
|
|
|
if reblogged_status.account.local?
|
2022-01-27 23:43:56 +00:00
|
|
|
LocalNotificationWorker.perform_async(reblogged_status.account_id, reblog.id, reblog.class.name, 'reblog')
|
2017-09-01 19:26:01 +00:00
|
|
|
elsif reblogged_status.account.activitypub? && !reblogged_status.account.following?(reblog.account)
|
2017-08-12 22:44:41 +00:00
|
|
|
ActivityPub::DeliveryWorker.perform_async(build_json(reblog), reblog.account_id, reblogged_status.account.inbox_url)
|
2016-03-19 18:20:07 +00:00
|
|
|
end
|
2017-08-12 22:44:41 +00:00
|
|
|
end
|
2016-03-19 18:20:07 +00:00
|
|
|
|
Re-add follow recommendations API (#7918)
* Re-add follow recommendations API
GET /api/v1/suggestions
Removed in 30f9e9e624b044f021fd0d345e4b1ea189978479 due to Neo4J
dependency. The algorithm uses triadic closures, takes into account
suspensions, blocks, mutes, domain blocks, excludes locked and moved
accounts, and prefers more recently updated accounts.
* Track interactions with people you don't follow
Replying to, favouriting and reblogging someone you're not following
will make them show up in follow recommendations. The interactions
have different weights:
- Replying is 1
- Favouriting is 10 (decidedly positive interaction, but private)
- Reblogging is 20
Following them, muting or blocking will remove them from the list,
obviously.
* Remove triadic closures, ensure potential friendships are trimmed
2018-07-02 23:47:56 +00:00
|
|
|
def bump_potential_friendship(account, reblog)
|
2018-07-16 16:35:43 +00:00
|
|
|
ActivityTracker.increment('activity:interactions')
|
2020-03-08 14:17:39 +00:00
|
|
|
|
Re-add follow recommendations API (#7918)
* Re-add follow recommendations API
GET /api/v1/suggestions
Removed in 30f9e9e624b044f021fd0d345e4b1ea189978479 due to Neo4J
dependency. The algorithm uses triadic closures, takes into account
suspensions, blocks, mutes, domain blocks, excludes locked and moved
accounts, and prefers more recently updated accounts.
* Track interactions with people you don't follow
Replying to, favouriting and reblogging someone you're not following
will make them show up in follow recommendations. The interactions
have different weights:
- Replying is 1
- Favouriting is 10 (decidedly positive interaction, but private)
- Reblogging is 20
Following them, muting or blocking will remove them from the list,
obviously.
* Remove triadic closures, ensure potential friendships are trimmed
2018-07-02 23:47:56 +00:00
|
|
|
return if account.following?(reblog.reblog.account_id)
|
2020-03-08 14:17:39 +00:00
|
|
|
|
Re-add follow recommendations API (#7918)
* Re-add follow recommendations API
GET /api/v1/suggestions
Removed in 30f9e9e624b044f021fd0d345e4b1ea189978479 due to Neo4J
dependency. The algorithm uses triadic closures, takes into account
suspensions, blocks, mutes, domain blocks, excludes locked and moved
accounts, and prefers more recently updated accounts.
* Track interactions with people you don't follow
Replying to, favouriting and reblogging someone you're not following
will make them show up in follow recommendations. The interactions
have different weights:
- Replying is 1
- Favouriting is 10 (decidedly positive interaction, but private)
- Reblogging is 20
Following them, muting or blocking will remove them from the list,
obviously.
* Remove triadic closures, ensure potential friendships are trimmed
2018-07-02 23:47:56 +00:00
|
|
|
PotentialFriendshipTracker.record(account.id, reblog.reblog.account_id, :reblog)
|
|
|
|
end
|
|
|
|
|
2017-08-12 22:44:41 +00:00
|
|
|
def build_json(reblog)
|
2020-06-02 17:24:53 +00:00
|
|
|
Oj.dump(serialize_payload(ActivityPub::ActivityPresenter.from_status(reblog), ActivityPub::ActivitySerializer, signer: reblog.account))
|
2016-02-24 17:50:16 +00:00
|
|
|
end
|
|
|
|
end
|