updated plugin ActivityPub version 8.3.0

This commit is contained in:
2026-06-03 21:28:46 +00:00
committed by Gitium
parent a4b78ec277
commit 6fe182458a
340 changed files with 43232 additions and 7568 deletions

View File

@ -7,10 +7,10 @@
namespace Activitypub\Handler;
use Activitypub\Notification;
use Activitypub\Activity\Activity;
use Activitypub\Collection\Actors;
use Activitypub\Collection\Followers;
use Activitypub\Collection\Remote_Actors;
use function Activitypub\add_to_outbox;
@ -22,84 +22,94 @@ class Follow {
* Initialize the class, registering WordPress hooks.
*/
public static function init() {
\add_action(
'activitypub_inbox_follow',
array( self::class, 'handle_follow' )
);
\add_action(
'activitypub_followers_post_follow',
array( self::class, 'queue_accept' ),
10,
4
);
\add_action( 'activitypub_inbox_follow', array( self::class, 'handle_follow' ), 10, 2 );
\add_action( 'activitypub_handled_follow', array( self::class, 'queue_accept' ), 10, 4 );
}
/**
* Handle "Follow" requests.
*
* @param array $activity The activity object.
* @param array $activity The activity object.
* @param int|int[] $user_ids The user ID(s).
*/
public static function handle_follow( $activity ) {
$user = Actors::get_by_resource( $activity['object'] );
public static function handle_follow( $activity, $user_ids ) {
// Extract the user ID (follow requests are always for a single user).
$user_id = \is_array( $user_ids ) ? \reset( $user_ids ) : $user_ids;
if ( ! $user || is_wp_error( $user ) ) {
// If we can not find a user, we can not initiate a follow process.
if ( Actors::APPLICATION_USER_ID === $user_id ) {
self::queue_reject( $activity, $user_id );
return;
}
$user_id = $user->get__id();
// Check if the actor already follows the user.
$already_following = false;
$remote_actor = Remote_Actors::get_by_uri( $activity['actor'] );
if ( ! \is_wp_error( $remote_actor ) ) {
$already_following = Followers::follows( $remote_actor->ID, $user_id );
}
// Save follower.
$follower = Followers::add_follower(
$user_id,
$activity['actor']
);
// Save follower if not already following.
if ( $already_following ) {
$success = false;
} else {
$remote_actor = Followers::add( $user_id, $activity['actor'] );
$success = ! \is_wp_error( $remote_actor );
if ( $success ) {
$remote_actor = \get_post( $remote_actor );
}
}
/**
* Fires after a new follower has been added.
*
* @param string $actor The URL of the actor (follower) who initiated the follow.
* @param array $activity The complete activity data of the follow request.
* @param int $user_id The ID of the WordPress user being followed.
* @param \Activitypub\Model\Follower|\WP_Error $follower The Follower object containing the new follower's data.
* @deprecated 7.5.0 Use "activitypub_handled_follow" instead.
*
* @param string $actor The URL of the actor (follower) who initiated the follow.
* @param array $activity The complete activity data of the follow request.
* @param int $user_id The ID of the WordPress user being followed.
* @param \WP_Post|\WP_Error $remote_actor The Actor object containing the new follower's data.
*/
do_action( 'activitypub_followers_post_follow', $activity['actor'], $activity, $user_id, $follower );
\do_action_deprecated( 'activitypub_followers_post_follow', array( $activity['actor'], $activity, $user_id, $remote_actor ), '7.5.0', 'activitypub_handled_follow' );
// Send notification.
$notification = new Notification(
'follow',
$activity['actor'],
$activity,
$user_id
);
$notification->send();
/**
* Fires after a Follow activity has been handled.
*
* @param array $activity The ActivityPub activity data.
* @param int[] $user_ids The local user IDs.
* @param bool $success True on success, false otherwise.
* @param \WP_Post|\WP_Error $remote_actor The remote actor/follower, or WP_Error if failed.
*/
\do_action( 'activitypub_handled_follow', $activity, (array) $user_ids, $success, $remote_actor );
}
/**
* Send Accept response.
*
* @param string $actor The Actor URL.
* @param array $activity_object The Activity object.
* @param int $user_id The ID of the WordPress User.
* @param \Activitypub\Model\Follower|\WP_Error $follower The Follower object.
* @param array $activity_object The ActivityPub activity data.
* @param int|int[] $user_ids The local user IDs.
* @param bool $success True on success, false otherwise.
* @param \WP_Post|\WP_Error $remote_actor The remote actor/follower, or WP_Error if failed.
*/
public static function queue_accept( $actor, $activity_object, $user_id, $follower ) {
if ( \is_wp_error( $follower ) ) {
public static function queue_accept( $activity_object, $user_ids, $success, $remote_actor ) {
if ( \is_wp_error( $remote_actor ) ) {
// Impossible to send a "Reject" because we can not get the Remote-Inbox.
return;
}
// Extract the user ID from the array (follow requests are always for a single user).
$user_id = \is_array( $user_ids ) ? \reset( $user_ids ) : $user_ids;
$actor = $activity_object['actor'];
// Only send minimal data.
$activity_object = array_intersect_key(
$activity_object,
array_flip(
array(
'id',
'type',
'actor',
'object',
)
array(
'id' => 1,
'type' => 1,
'actor' => 1,
'object' => 1,
)
);
@ -111,4 +121,31 @@ class Follow {
add_to_outbox( $activity, null, $user_id, ACTIVITYPUB_CONTENT_VISIBILITY_PRIVATE );
}
/**
* Send Reject response.
*
* @param array $activity The Activity array.
* @param int $user_id The ID of the WordPress User.
*/
public static function queue_reject( $activity, $user_id ) {
// Only send minimal data.
$origin_activity = array_intersect_key(
$activity,
array(
'id' => 1,
'type' => 1,
'actor' => 1,
'object' => 1,
)
);
$activity = new Activity();
$activity->set_type( 'Reject' );
$activity->set_actor( Actors::get_by_id( $user_id )->get_id() );
$activity->set_object( $origin_activity );
$activity->set_to( array( $origin_activity['actor'] ) );
add_to_outbox( $activity, null, $user_id, ACTIVITYPUB_CONTENT_VISIBILITY_PRIVATE );
}
}