2019-08-18 21:54:11 +02:00
|
|
|
<?php
|
|
|
|
namespace Activitypub;
|
|
|
|
|
2023-07-03 17:59:42 +02:00
|
|
|
use WP_Post;
|
2023-12-22 10:12:26 +01:00
|
|
|
use WP_Comment;
|
2023-07-03 17:59:42 +02:00
|
|
|
use Activitypub\Activity\Activity;
|
2023-07-03 11:20:44 +02:00
|
|
|
use Activitypub\Collection\Users;
|
2023-04-24 20:46:51 +02:00
|
|
|
use Activitypub\Collection\Followers;
|
2023-12-22 10:12:26 +01:00
|
|
|
use Activitypub\Transformer\Factory;
|
2023-07-03 17:59:42 +02:00
|
|
|
use Activitypub\Transformer\Post;
|
2023-12-22 10:12:26 +01:00
|
|
|
use Activitypub\Transformer\Comment;
|
2023-04-20 15:22:11 +02:00
|
|
|
|
2023-07-10 10:58:34 +02:00
|
|
|
use function Activitypub\is_single_user;
|
2023-07-03 11:56:25 +02:00
|
|
|
use function Activitypub\is_user_disabled;
|
2023-05-10 15:36:45 +02:00
|
|
|
use function Activitypub\safe_remote_post;
|
|
|
|
|
2019-08-18 21:54:11 +02:00
|
|
|
/**
|
|
|
|
* ActivityPub Activity_Dispatcher Class
|
|
|
|
*
|
|
|
|
* @author Matthias Pfefferle
|
|
|
|
*
|
|
|
|
* @see https://www.w3.org/TR/activitypub/
|
|
|
|
*/
|
|
|
|
class Activity_Dispatcher {
|
|
|
|
/**
|
2020-05-14 21:37:59 +02:00
|
|
|
* Initialize the class, registering WordPress hooks.
|
2019-08-18 21:54:11 +02:00
|
|
|
*/
|
|
|
|
public static function init() {
|
2023-07-10 10:58:34 +02: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 );
|
2023-12-22 11:33:25 +01:00
|
|
|
\add_action( 'activitypub_send_update_profile_activity', array( self::class, 'send_profile_update' ), 10, 1 );
|
2019-08-18 21:54:11 +02:00
|
|
|
}
|
|
|
|
|
2023-07-10 12:12:12 +02:00
|
|
|
/**
|
|
|
|
* Send Activities to followers and mentioned users or `Announce` (boost) a blog post.
|
|
|
|
*
|
2023-12-22 10:12:26 +01:00
|
|
|
* @param mixed $wp_object The ActivityPub Post.
|
|
|
|
* @param string $type The Activity-Type.
|
2023-07-10 12:12:12 +02:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2023-12-22 10:12:26 +01:00
|
|
|
public static function send_activity_or_announce( $wp_object, $type ) {
|
2023-07-27 18:27:41 +02:00
|
|
|
// check if a migration is needed before sending new posts
|
|
|
|
Migration::maybe_migrate();
|
|
|
|
|
2023-07-20 14:53:34 +02:00
|
|
|
if ( is_user_type_disabled( 'blog' ) ) {
|
2023-07-10 12:12:12 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( is_single_user() ) {
|
2023-12-22 10:12:26 +01:00
|
|
|
self::send_activity( $wp_object, $type, Users::BLOG_USER_ID );
|
2023-07-10 12:12:12 +02:00
|
|
|
} else {
|
2023-12-22 10:12:26 +01:00
|
|
|
self::send_announce( $wp_object, $type );
|
2023-07-10 12:12:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-18 21:54:11 +02:00
|
|
|
/**
|
2023-07-03 17:59:42 +02:00
|
|
|
* Send Activities to followers and mentioned users.
|
2019-08-18 21:54:11 +02:00
|
|
|
*
|
2023-12-22 10:12:26 +01:00
|
|
|
* @param mixed $wp_object The ActivityPub Post.
|
|
|
|
* @param string $type The Activity-Type.
|
2022-12-09 19:05:43 +01:00
|
|
|
*
|
2023-07-03 17:59:42 +02:00
|
|
|
* @return void
|
2022-12-09 19:05:43 +01:00
|
|
|
*/
|
2023-12-22 10:12:26 +01:00
|
|
|
public static function send_activity( $wp_object, $type, $user_id = null ) {
|
|
|
|
$transformer = Factory::get_transformer( $wp_object );
|
|
|
|
|
|
|
|
if ( null !== $user_id ) {
|
|
|
|
$transformer->change_wp_user_id( $user_id );
|
2023-07-03 11:56:25 +02:00
|
|
|
}
|
|
|
|
|
2023-12-22 10:12:26 +01:00
|
|
|
$user_id = $transformer->get_wp_user_id();
|
|
|
|
|
|
|
|
if ( is_user_disabled( $user_id ) ) {
|
|
|
|
return;
|
|
|
|
}
|
2023-07-03 17:59:42 +02:00
|
|
|
|
2023-12-22 11:01:23 +01:00
|
|
|
$activity = $transformer->to_activity( $type );
|
2023-07-03 17:59:42 +02:00
|
|
|
|
2023-12-22 11:33:25 +01:00
|
|
|
self::send_activity_to_inboxes( $activity, $user_id );
|
2023-02-02 01:42:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-07-10 12:12:12 +02:00
|
|
|
* Send Announces to followers and mentioned users.
|
2023-07-05 16:16:31 +02:00
|
|
|
*
|
2023-12-22 10:12:26 +01:00
|
|
|
* @param mixed $wp_object The ActivityPub Post.
|
|
|
|
* @param string $type The Activity-Type.
|
2023-07-05 16:16:31 +02:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2023-12-22 10:12:26 +01:00
|
|
|
public static function send_announce( $wp_object, $type ) {
|
2023-07-07 13:43:12 +02:00
|
|
|
if ( ! in_array( $type, array( 'Create', 'Update' ), true ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-07-05 16:16:31 +02:00
|
|
|
if ( is_user_disabled( Users::BLOG_USER_ID ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-12-22 10:12:26 +01:00
|
|
|
$transformer = Factory::get_transformer( $wp_object );
|
|
|
|
$transformer->change_wp_user_id( Users::BLOG_USER_ID );
|
2023-07-05 16:16:31 +02:00
|
|
|
|
2023-12-22 10:12:26 +01:00
|
|
|
$user_id = $transformer->get_wp_user_id();
|
|
|
|
$activity = $transformer->to_activity( 'Announce' );
|
2023-07-05 16:16:31 +02:00
|
|
|
|
2023-12-22 11:33:25 +01:00
|
|
|
self::send_activity_to_inboxes( $activity, $user_id );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
if ( is_wp_error( $user ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
self::send_activity_to_inboxes( $activity, $user_id );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send an Activity to all followers and mentioned users.
|
|
|
|
*
|
|
|
|
* @param Activity $activity The ActivityPub Activity.
|
|
|
|
* @param int $user_id The user ID.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private static function send_activity_to_inboxes( $activity, $user_id ) {
|
|
|
|
$follower_inboxes = Followers::get_inboxes( $user_id );
|
|
|
|
|
|
|
|
$mentioned_inboxes = array();
|
|
|
|
$cc = $activity->get_cc();
|
|
|
|
if ( $cc ) {
|
|
|
|
$mentioned_inboxes = Mention::get_inboxes( $cc );
|
|
|
|
}
|
2023-04-25 11:59:08 +02:00
|
|
|
|
|
|
|
$inboxes = array_merge( $follower_inboxes, $mentioned_inboxes );
|
|
|
|
$inboxes = array_unique( $inboxes );
|
2023-02-02 01:42:15 +01:00
|
|
|
|
2023-12-22 11:33:25 +01:00
|
|
|
if ( empty( $inboxes ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-07-03 18:18:03 +02:00
|
|
|
$json = $activity->to_json();
|
2019-08-18 21:54:11 +02:00
|
|
|
|
2023-07-03 17:59:42 +02:00
|
|
|
foreach ( $inboxes as $inbox ) {
|
2023-12-22 10:12:26 +01:00
|
|
|
safe_remote_post( $inbox, $json, $user_id );
|
2019-08-18 21:54:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|