2020-04-07 13:03:04 +00:00
|
|
|
<?php
|
2024-10-09 12:44:17 +00:00
|
|
|
/**
|
|
|
|
* ActivityPub Activity_Dispatcher Class.
|
|
|
|
*
|
|
|
|
* @package Activitypub
|
|
|
|
*/
|
|
|
|
|
2020-04-07 13:03:04 +00:00
|
|
|
namespace Activitypub;
|
|
|
|
|
2023-10-22 22:20:53 +00:00
|
|
|
use WP_Post;
|
2024-02-08 12:31:25 +00:00
|
|
|
use WP_Comment;
|
2023-10-22 22:20:53 +00:00
|
|
|
use Activitypub\Collection\Users;
|
2024-10-09 12:44:17 +00:00
|
|
|
use Activitypub\Activity\Activity;
|
2023-10-22 22:20:53 +00:00
|
|
|
use Activitypub\Collection\Followers;
|
2024-02-08 12:31:25 +00:00
|
|
|
use Activitypub\Transformer\Factory;
|
2023-10-22 22:20:53 +00:00
|
|
|
|
2020-04-07 13:03:04 +00:00
|
|
|
/**
|
2024-10-09 12:44:17 +00:00
|
|
|
* ActivityPub Activity_Dispatcher Class.
|
2020-04-07 13:03:04 +00:00
|
|
|
*
|
|
|
|
* @author Matthias Pfefferle
|
|
|
|
*
|
|
|
|
* @see https://www.w3.org/TR/activitypub/
|
|
|
|
*/
|
|
|
|
class Activity_Dispatcher {
|
|
|
|
/**
|
2020-12-25 19:23:08 +00:00
|
|
|
* Initialize the class, registering WordPress hooks.
|
2020-04-07 13:03:04 +00:00
|
|
|
*/
|
|
|
|
public static function init() {
|
2024-03-28 09:39:50 +00:00
|
|
|
\add_action( 'activitypub_send_post', array( self::class, 'send_post' ), 10, 2 );
|
|
|
|
\add_action( 'activitypub_send_comment', array( self::class, 'send_comment' ), 10, 2 );
|
|
|
|
|
2023-10-22 22:20:53 +00:00
|
|
|
\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 );
|
2024-10-09 12:44:17 +00:00
|
|
|
\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 );
|
2020-04-07 13:03:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-10-22 22:20:53 +00:00
|
|
|
* Send Activities to followers and mentioned users or `Announce` (boost) a blog post.
|
2020-04-07 13:03:04 +00:00
|
|
|
*
|
2024-02-08 12:31:25 +00:00
|
|
|
* @param mixed $wp_object The ActivityPub Post.
|
|
|
|
* @param string $type The Activity-Type.
|
2020-04-07 13:03:04 +00:00
|
|
|
*/
|
2024-02-08 12:31:25 +00:00
|
|
|
public static function send_activity_or_announce( $wp_object, $type ) {
|
2023-10-22 22:20:53 +00:00
|
|
|
if ( is_user_type_disabled( 'blog' ) ) {
|
|
|
|
return;
|
2023-03-17 22:33:51 +00:00
|
|
|
}
|
|
|
|
|
2023-10-22 22:20:53 +00:00
|
|
|
if ( is_single_user() ) {
|
2024-02-08 12:31:25 +00:00
|
|
|
self::send_activity( $wp_object, $type, Users::BLOG_USER_ID );
|
2023-10-22 22:20:53 +00:00
|
|
|
} else {
|
2024-02-08 12:31:25 +00:00
|
|
|
self::send_announce( $wp_object, $type );
|
2020-04-07 13:03:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-10-22 22:20:53 +00:00
|
|
|
* Send Activities to followers and mentioned users.
|
2020-04-07 13:03:04 +00:00
|
|
|
*
|
2024-02-08 12:31:25 +00:00
|
|
|
* @param mixed $wp_object The ActivityPub Post.
|
|
|
|
* @param string $type The Activity-Type.
|
2024-10-09 12:44:17 +00:00
|
|
|
* @param int $user_id Optional. The WordPress User-ID.
|
2020-04-07 13:03:04 +00:00
|
|
|
*/
|
2024-02-08 12:31:25 +00:00
|
|
|
public static function send_activity( $wp_object, $type, $user_id = null ) {
|
2024-06-27 12:10:38 +00:00
|
|
|
$transformer = Factory::get_transformer( $wp_object ); // Could potentially return a `\WP_Error` instance.
|
|
|
|
|
|
|
|
if ( \is_wp_error( $transformer ) ) {
|
|
|
|
return;
|
|
|
|
}
|
2023-10-22 22:20:53 +00:00
|
|
|
|
2024-02-08 12:31:25 +00:00
|
|
|
if ( null !== $user_id ) {
|
|
|
|
$transformer->change_wp_user_id( $user_id );
|
|
|
|
}
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2024-02-08 12:31:25 +00:00
|
|
|
$user_id = $transformer->get_wp_user_id();
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2024-02-08 12:31:25 +00:00
|
|
|
if ( is_user_disabled( $user_id ) ) {
|
|
|
|
return;
|
|
|
|
}
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2024-02-08 12:31:25 +00:00
|
|
|
$activity = $transformer->to_activity( $type );
|
2023-10-22 22:20:53 +00:00
|
|
|
|
2024-03-28 09:39:50 +00:00
|
|
|
self::send_activity_to_followers( $activity, $user_id, $wp_object );
|
2020-04-07 13:03:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-10-22 22:20:53 +00:00
|
|
|
* Send Announces to followers and mentioned users.
|
|
|
|
*
|
2024-02-08 12:31:25 +00:00
|
|
|
* @param mixed $wp_object The ActivityPub Post.
|
|
|
|
* @param string $type The Activity-Type.
|
2020-04-07 13:03:04 +00:00
|
|
|
*/
|
2024-02-08 12:31:25 +00:00
|
|
|
public static function send_announce( $wp_object, $type ) {
|
2024-07-19 19:46:05 +00:00
|
|
|
if ( ! in_array( $type, array( 'Create', 'Update', 'Delete' ), true ) ) {
|
2023-10-22 22:20:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( is_user_disabled( Users::BLOG_USER_ID ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-06-27 12:10:38 +00:00
|
|
|
$transformer = Factory::get_transformer( $wp_object );
|
|
|
|
|
|
|
|
if ( \is_wp_error( $transformer ) ) {
|
2024-05-09 15:26:55 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-06-27 12:10:38 +00:00
|
|
|
$user_id = Users::BLOG_USER_ID;
|
|
|
|
$activity = $transformer->to_activity( $type );
|
|
|
|
$user = Users::get_by_id( Users::BLOG_USER_ID );
|
2024-02-08 12:31:25 +00:00
|
|
|
|
2024-06-27 12:10:38 +00:00
|
|
|
$announce = new Activity();
|
|
|
|
$announce->set_type( 'Announce' );
|
|
|
|
$announce->set_object( $activity );
|
|
|
|
$announce->set_actor( $user->get_id() );
|
2024-02-08 12:31:25 +00:00
|
|
|
|
2024-06-27 12:10:38 +00:00
|
|
|
self::send_activity_to_followers( $announce, $user_id, $wp_object );
|
2024-02-08 12:31:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send a "Update" Activity when a user updates their profile.
|
|
|
|
*
|
|
|
|
* @param int $user_id The user ID to send an update for.
|
|
|
|
*/
|
|
|
|
public static function send_profile_update( $user_id ) {
|
|
|
|
$user = Users::get_by_various( $user_id );
|
|
|
|
|
2024-10-09 12:44:17 +00:00
|
|
|
// Bail if that's not a good user.
|
2024-02-08 12:31:25 +00:00
|
|
|
if ( is_wp_error( $user ) ) {
|
|
|
|
return;
|
|
|
|
}
|
2023-10-22 22:20:53 +00:00
|
|
|
|
2024-10-09 12:44:17 +00:00
|
|
|
// Build the update.
|
2023-10-22 22:20:53 +00:00
|
|
|
$activity = new Activity();
|
2024-02-08 12:31:25 +00:00
|
|
|
$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' );
|
|
|
|
|
2024-10-09 12:44:17 +00:00
|
|
|
// Send the update.
|
2024-03-28 09:39:50 +00:00
|
|
|
self::send_activity_to_followers( $activity, $user_id, $user );
|
2024-02-08 12:31:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send an Activity to all followers and mentioned users.
|
|
|
|
*
|
2024-10-09 12:44:17 +00:00
|
|
|
* @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.
|
2024-02-08 12:31:25 +00:00
|
|
|
*/
|
2024-03-28 09:39:50 +00:00
|
|
|
private static function send_activity_to_followers( $activity, $user_id, $wp_object ) {
|
2024-10-09 12:44:17 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2024-03-28 09:39:50 +00:00
|
|
|
if ( ! apply_filters( 'activitypub_send_activity_to_followers', true, $activity, $user_id, $wp_object ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-10-09 12:44:17 +00:00
|
|
|
/**
|
|
|
|
* 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 );
|
2023-10-22 22:20:53 +00:00
|
|
|
$inboxes = array_unique( $inboxes );
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2024-02-08 12:31:25 +00:00
|
|
|
if ( empty( $inboxes ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-10-22 22:20:53 +00:00
|
|
|
$json = $activity->to_json();
|
2020-04-07 13:03:04 +00:00
|
|
|
|
2023-10-22 22:20:53 +00:00
|
|
|
foreach ( $inboxes as $inbox ) {
|
2024-02-08 12:31:25 +00:00
|
|
|
safe_remote_post( $inbox, $json, $user_id );
|
2020-04-07 13:03:04 +00:00
|
|
|
}
|
2024-03-28 09:39:50 +00:00
|
|
|
|
|
|
|
set_wp_object_state( $wp_object, 'federated' );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send a "Create" or "Update" Activity for a WordPress Post.
|
|
|
|
*
|
|
|
|
* @param int $id The WordPress Post ID.
|
|
|
|
* @param string $type The Activity-Type.
|
|
|
|
*/
|
|
|
|
public static function send_post( $id, $type ) {
|
|
|
|
$post = get_post( $id );
|
|
|
|
|
|
|
|
if ( ! $post ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-10-09 12:44:17 +00:00
|
|
|
/**
|
|
|
|
* Action to send an Activity for a Post.
|
|
|
|
*
|
|
|
|
* @param WP_Post $post The WordPress Post.
|
|
|
|
* @param string $type The Activity-Type.
|
|
|
|
*/
|
2024-03-28 09:39:50 +00:00
|
|
|
do_action( 'activitypub_send_activity', $post, $type );
|
2024-10-09 12:44:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 );
|
2024-03-28 09:39:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send a "Create" or "Update" Activity for a WordPress Comment.
|
|
|
|
*
|
|
|
|
* @param int $id The WordPress Comment ID.
|
|
|
|
* @param string $type The Activity-Type.
|
|
|
|
*/
|
|
|
|
public static function send_comment( $id, $type ) {
|
|
|
|
$comment = get_comment( $id );
|
|
|
|
|
|
|
|
if ( ! $comment ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-10-09 12:44:17 +00:00
|
|
|
/**
|
|
|
|
* Action to send an Activity for a Comment.
|
|
|
|
*
|
|
|
|
* @param WP_Comment $comment The WordPress Comment.
|
|
|
|
* @param string $type The Activity-Type.
|
|
|
|
*/
|
2024-03-28 09:39:50 +00:00
|
|
|
do_action( 'activitypub_send_activity', $comment, $type );
|
2024-10-09 12:44:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
2020-04-07 13:03:04 +00:00
|
|
|
}
|
|
|
|
}
|