updated plugin ActivityPub
version 3.3.3
This commit is contained in:
@ -1,22 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
* ActivityPub Activity_Dispatcher Class.
|
||||
*
|
||||
* @package Activitypub
|
||||
*/
|
||||
|
||||
namespace Activitypub;
|
||||
|
||||
use WP_Post;
|
||||
use WP_Comment;
|
||||
use Activitypub\Activity\Activity;
|
||||
use Activitypub\Collection\Users;
|
||||
use Activitypub\Activity\Activity;
|
||||
use Activitypub\Collection\Followers;
|
||||
use Activitypub\Transformer\Factory;
|
||||
use Activitypub\Transformer\Post;
|
||||
use Activitypub\Transformer\Comment;
|
||||
|
||||
use function Activitypub\is_single_user;
|
||||
use function Activitypub\is_user_disabled;
|
||||
use function Activitypub\safe_remote_post;
|
||||
use function Activitypub\set_wp_object_state;
|
||||
|
||||
/**
|
||||
* ActivityPub Activity_Dispatcher Class
|
||||
* ActivityPub Activity_Dispatcher Class.
|
||||
*
|
||||
* @author Matthias Pfefferle
|
||||
*
|
||||
@ -32,7 +31,12 @@ class Activity_Dispatcher {
|
||||
|
||||
\add_action( 'activitypub_send_activity', array( self::class, 'send_activity' ), 10, 2 );
|
||||
\add_action( 'activitypub_send_activity', array( self::class, 'send_activity_or_announce' ), 10, 2 );
|
||||
\add_action( 'activitypub_send_update_profile_activity', array( self::class, 'send_profile_update' ), 10, 1 );
|
||||
\add_action( 'activitypub_send_update_profile_activity', array( self::class, 'send_profile_update' ) );
|
||||
|
||||
// Default filters to add Inboxes to sent to.
|
||||
\add_filter( 'activitypub_send_to_inboxes', array( self::class, 'add_inboxes_of_follower' ), 10, 2 );
|
||||
\add_filter( 'activitypub_send_to_inboxes', array( self::class, 'add_inboxes_by_mentioned_actors' ), 10, 3 );
|
||||
\add_filter( 'activitypub_send_to_inboxes', array( self::class, 'add_inboxes_of_replied_urls' ), 10, 3 );
|
||||
}
|
||||
|
||||
/**
|
||||
@ -40,8 +44,6 @@ class Activity_Dispatcher {
|
||||
*
|
||||
* @param mixed $wp_object The ActivityPub Post.
|
||||
* @param string $type The Activity-Type.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function send_activity_or_announce( $wp_object, $type ) {
|
||||
if ( is_user_type_disabled( 'blog' ) ) {
|
||||
@ -60,8 +62,7 @@ class Activity_Dispatcher {
|
||||
*
|
||||
* @param mixed $wp_object The ActivityPub Post.
|
||||
* @param string $type The Activity-Type.
|
||||
*
|
||||
* @return void
|
||||
* @param int $user_id Optional. The WordPress User-ID.
|
||||
*/
|
||||
public static function send_activity( $wp_object, $type, $user_id = null ) {
|
||||
$transformer = Factory::get_transformer( $wp_object ); // Could potentially return a `\WP_Error` instance.
|
||||
@ -90,8 +91,6 @@ class Activity_Dispatcher {
|
||||
*
|
||||
* @param mixed $wp_object The ActivityPub Post.
|
||||
* @param string $type The Activity-Type.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function send_announce( $wp_object, $type ) {
|
||||
if ( ! in_array( $type, array( 'Create', 'Update', 'Delete' ), true ) ) {
|
||||
@ -124,53 +123,54 @@ class Activity_Dispatcher {
|
||||
* Send a "Update" Activity when a user updates their profile.
|
||||
*
|
||||
* @param int $user_id The user ID to send an update for.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function send_profile_update( $user_id ) {
|
||||
$user = Users::get_by_various( $user_id );
|
||||
|
||||
// bail if that's not a good user
|
||||
// Bail if that's not a good user.
|
||||
if ( is_wp_error( $user ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// build the update
|
||||
// Build the update.
|
||||
$activity = new Activity();
|
||||
$activity->set_id( $user->get_url() . '#update' );
|
||||
$activity->set_type( 'Update' );
|
||||
$activity->set_actor( $user->get_url() );
|
||||
$activity->set_object( $user->get_url() );
|
||||
$activity->set_to( 'https://www.w3.org/ns/activitystreams#Public' );
|
||||
|
||||
// send the update
|
||||
// Send the update.
|
||||
self::send_activity_to_followers( $activity, $user_id, $user );
|
||||
}
|
||||
|
||||
/**
|
||||
* Send an Activity to all followers and mentioned users.
|
||||
*
|
||||
* @param Activity $activity The ActivityPub Activity.
|
||||
* @param int $user_id The user ID.
|
||||
* @param WP_User|WP_Post|WP_Comment $wp_object The WordPress object.
|
||||
*
|
||||
* @return void
|
||||
* @param Activity $activity The ActivityPub Activity.
|
||||
* @param int $user_id The user ID.
|
||||
* @param \WP_User|WP_Post|WP_Comment $wp_object The WordPress object.
|
||||
*/
|
||||
private static function send_activity_to_followers( $activity, $user_id, $wp_object ) {
|
||||
// check if the Activity should be send to the followers
|
||||
/**
|
||||
* Filter to prevent sending an Activity to followers.
|
||||
*
|
||||
* @param bool $send_activity_to_followers Whether to send the Activity to followers.
|
||||
* @param Activity $activity The ActivityPub Activity.
|
||||
* @param int $user_id The user ID.
|
||||
* @param \WP_User|WP_Post|WP_Comment $wp_object The WordPress object.
|
||||
*/
|
||||
if ( ! apply_filters( 'activitypub_send_activity_to_followers', true, $activity, $user_id, $wp_object ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$follower_inboxes = Followers::get_inboxes( $user_id );
|
||||
|
||||
$mentioned_inboxes = array();
|
||||
$cc = $activity->get_cc();
|
||||
if ( $cc ) {
|
||||
$mentioned_inboxes = Mention::get_inboxes( $cc );
|
||||
}
|
||||
|
||||
$inboxes = array_merge( $follower_inboxes, $mentioned_inboxes );
|
||||
/**
|
||||
* Filter to modify the Activity before sending it to followers.
|
||||
*
|
||||
* @param Activity $activity The ActivityPub Activity.
|
||||
* @param int $user_id The user ID.
|
||||
* @param \WP_User|WP_Post|WP_Comment $wp_object The WordPress object.
|
||||
*/
|
||||
$inboxes = apply_filters( 'activitypub_send_to_inboxes', array(), $user_id, $activity );
|
||||
$inboxes = array_unique( $inboxes );
|
||||
|
||||
if ( empty( $inboxes ) ) {
|
||||
@ -191,8 +191,6 @@ class Activity_Dispatcher {
|
||||
*
|
||||
* @param int $id The WordPress Post ID.
|
||||
* @param string $type The Activity-Type.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function send_post( $id, $type ) {
|
||||
$post = get_post( $id );
|
||||
@ -201,14 +199,20 @@ class Activity_Dispatcher {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Action to send an Activity for a Post.
|
||||
*
|
||||
* @param WP_Post $post The WordPress Post.
|
||||
* @param string $type The Activity-Type.
|
||||
*/
|
||||
do_action( 'activitypub_send_activity', $post, $type );
|
||||
do_action(
|
||||
sprintf(
|
||||
'activitypub_send_%s_activity',
|
||||
\strtolower( $type )
|
||||
),
|
||||
$post
|
||||
);
|
||||
|
||||
/**
|
||||
* Action to send a specific Activity for a Post.
|
||||
*
|
||||
* @param WP_Post $post The WordPress Post.
|
||||
*/
|
||||
do_action( sprintf( 'activitypub_send_%s_activity', \strtolower( $type ) ), $post );
|
||||
}
|
||||
|
||||
/**
|
||||
@ -216,8 +220,6 @@ class Activity_Dispatcher {
|
||||
*
|
||||
* @param int $id The WordPress Comment ID.
|
||||
* @param string $type The Activity-Type.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function send_comment( $id, $type ) {
|
||||
$comment = get_comment( $id );
|
||||
@ -226,13 +228,101 @@ class Activity_Dispatcher {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Action to send an Activity for a Comment.
|
||||
*
|
||||
* @param WP_Comment $comment The WordPress Comment.
|
||||
* @param string $type The Activity-Type.
|
||||
*/
|
||||
do_action( 'activitypub_send_activity', $comment, $type );
|
||||
do_action(
|
||||
sprintf(
|
||||
'activitypub_send_%s_activity',
|
||||
\strtolower( $type )
|
||||
),
|
||||
$comment
|
||||
);
|
||||
|
||||
/**
|
||||
* Action to send a specific Activity for a Comment.
|
||||
*
|
||||
* @param WP_Comment $comment The WordPress Comment.
|
||||
*/
|
||||
do_action( sprintf( 'activitypub_send_%s_activity', \strtolower( $type ) ), $comment );
|
||||
}
|
||||
|
||||
/**
|
||||
* Default filter to add Inboxes of Followers.
|
||||
*
|
||||
* @param array $inboxes The list of Inboxes.
|
||||
* @param int $user_id The WordPress User-ID.
|
||||
*
|
||||
* @return array The filtered Inboxes
|
||||
*/
|
||||
public static function add_inboxes_of_follower( $inboxes, $user_id ) {
|
||||
$follower_inboxes = Followers::get_inboxes( $user_id );
|
||||
|
||||
return array_merge( $inboxes, $follower_inboxes );
|
||||
}
|
||||
|
||||
/**
|
||||
* Default filter to add Inboxes of Mentioned Actors
|
||||
*
|
||||
* @param array $inboxes The list of Inboxes.
|
||||
* @param int $user_id The WordPress User-ID.
|
||||
* @param array $activity The ActivityPub Activity.
|
||||
*
|
||||
* @return array The filtered Inboxes.
|
||||
*/
|
||||
public static function add_inboxes_by_mentioned_actors( $inboxes, $user_id, $activity ) {
|
||||
$cc = $activity->get_cc();
|
||||
if ( $cc ) {
|
||||
$mentioned_inboxes = Mention::get_inboxes( $cc );
|
||||
|
||||
return array_merge( $inboxes, $mentioned_inboxes );
|
||||
}
|
||||
|
||||
return $inboxes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Default filter to add Inboxes of Posts that are set as `in-reply-to`
|
||||
*
|
||||
* @param array $inboxes The list of Inboxes.
|
||||
* @param int $user_id The WordPress User-ID.
|
||||
* @param array $activity The ActivityPub Activity.
|
||||
*
|
||||
* @return array The filtered Inboxes
|
||||
*/
|
||||
public static function add_inboxes_of_replied_urls( $inboxes, $user_id, $activity ) {
|
||||
$in_reply_to = $activity->get_in_reply_to();
|
||||
|
||||
if ( ! $in_reply_to ) {
|
||||
return $inboxes;
|
||||
}
|
||||
|
||||
if ( ! is_array( $in_reply_to ) ) {
|
||||
$in_reply_to = array( $in_reply_to );
|
||||
}
|
||||
|
||||
foreach ( $in_reply_to as $url ) {
|
||||
$object = Http::get_remote_object( $url );
|
||||
|
||||
if (
|
||||
! $object ||
|
||||
\is_wp_error( $object ) ||
|
||||
empty( $object['attributedTo'] )
|
||||
) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$actor = object_to_uri( $object['attributedTo'] );
|
||||
$actor = Http::get_remote_object( $actor );
|
||||
|
||||
if ( ! $actor || \is_wp_error( $actor ) ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ( ! empty( $actor['endpoints']['sharedInbox'] ) ) {
|
||||
$inboxes[] = $actor['endpoints']['sharedInbox'];
|
||||
} elseif ( ! empty( $actor['inbox'] ) ) {
|
||||
$inboxes[] = $actor['inbox'];
|
||||
}
|
||||
}
|
||||
|
||||
return $inboxes;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user