2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 09:50:16 -08:00
|
|
|
class ReblogService < BaseService
|
2017-05-29 09:22:22 -07:00
|
|
|
include Authorization
|
2019-06-04 14:11:18 -07:00
|
|
|
include Payloadable
|
2017-02-10 17:12:05 -08:00
|
|
|
|
2016-02-24 09:50:16 -08: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-14 20:36:41 -07:00
|
|
|
# @param [Hash] options
|
2016-02-24 09:50:16 -08:00
|
|
|
# @return [Status]
|
2019-03-14 20:36:41 -07:00
|
|
|
def call(account, reblogged_status, options = {})
|
2017-01-24 16:48:46 -08:00
|
|
|
reblogged_status = reblogged_status.reblog if reblogged_status.reblog?
|
|
|
|
|
2017-05-30 06:16:14 -07:00
|
|
|
authorize_with account, reblogged_status, :reblog?
|
2016-12-21 11:00:18 -08:00
|
|
|
|
2017-06-08 06:07:39 -07:00
|
|
|
reblog = account.statuses.find_by(reblog: reblogged_status)
|
|
|
|
|
|
|
|
return reblog unless reblog.nil?
|
|
|
|
|
2019-05-17 15:28:51 -07:00
|
|
|
visibility = options[:visibility] || account.user&.setting_default_privacy
|
|
|
|
visibility = reblogged_status.visibility if reblogged_status.hidden?
|
|
|
|
reblog = account.statuses.create!(reblog: reblogged_status, text: '', visibility: visibility)
|
2016-11-28 04:36:47 -08:00
|
|
|
|
2016-03-26 05:42:10 -07:00
|
|
|
DistributionWorker.perform_async(reblog.id)
|
2017-08-12 15:44:41 -07:00
|
|
|
ActivityPub::DistributionWorker.perform_async(reblog.id)
|
2016-03-19 11:20:07 -07:00
|
|
|
|
2017-08-12 15:44:41 -07:00
|
|
|
create_notification(reblog)
|
Re-add follow recommendations API (#7918)
* Re-add follow recommendations API
GET /api/v1/suggestions
Removed in 8efa081f210d72ed450c39ac4cde0fd84fb3d3fb 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 16:47:56 -07:00
|
|
|
bump_potential_friendship(account, reblog)
|
|
|
|
|
2017-08-12 15:44:41 -07:00
|
|
|
reblog
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def create_notification(reblog)
|
|
|
|
reblogged_status = reblog.reblog
|
|
|
|
|
|
|
|
if reblogged_status.account.local?
|
2019-03-14 20:36:41 -07:00
|
|
|
LocalNotificationWorker.perform_async(reblogged_status.account_id, reblog.id, reblog.class.name)
|
2017-09-01 12:26:01 -07:00
|
|
|
elsif reblogged_status.account.activitypub? && !reblogged_status.account.following?(reblog.account)
|
2017-08-12 15:44:41 -07:00
|
|
|
ActivityPub::DeliveryWorker.perform_async(build_json(reblog), reblog.account_id, reblogged_status.account.inbox_url)
|
2016-03-19 11:20:07 -07:00
|
|
|
end
|
2017-08-12 15:44:41 -07:00
|
|
|
end
|
2016-03-19 11:20:07 -07:00
|
|
|
|
Re-add follow recommendations API (#7918)
* Re-add follow recommendations API
GET /api/v1/suggestions
Removed in 8efa081f210d72ed450c39ac4cde0fd84fb3d3fb 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 16:47:56 -07:00
|
|
|
def bump_potential_friendship(account, reblog)
|
2018-07-16 09:35:43 -07:00
|
|
|
ActivityTracker.increment('activity:interactions')
|
Re-add follow recommendations API (#7918)
* Re-add follow recommendations API
GET /api/v1/suggestions
Removed in 8efa081f210d72ed450c39ac4cde0fd84fb3d3fb 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 16:47:56 -07:00
|
|
|
return if account.following?(reblog.reblog.account_id)
|
|
|
|
PotentialFriendshipTracker.record(account.id, reblog.reblog.account_id, :reblog)
|
|
|
|
end
|
|
|
|
|
2017-08-12 15:44:41 -07:00
|
|
|
def build_json(reblog)
|
2019-06-04 14:11:18 -07:00
|
|
|
Oj.dump(serialize_payload(reblog, ActivityPub::ActivitySerializer, signer: reblog.account))
|
2016-02-24 09:50:16 -08:00
|
|
|
end
|
|
|
|
end
|