2019-08-18 21:54:11 +02:00
|
|
|
<?php
|
|
|
|
namespace Activitypub;
|
|
|
|
|
2023-07-03 17:59:42 +02:00
|
|
|
use WP_Post;
|
|
|
|
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-07-03 17:59:42 +02:00
|
|
|
use Activitypub\Transformer\Post;
|
2023-04-20 15:22:11 +02:00
|
|
|
|
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-03 17:59:42 +02:00
|
|
|
\add_action( 'activitypub_send_activity', array( self::class, 'send_user_activity' ), 10, 2 );
|
|
|
|
\add_action( 'activitypub_send_activity', array( self::class, 'send_blog_activity' ), 10, 2 );
|
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-07-03 11:56:25 +02:00
|
|
|
* @param WP_Post $wp_post The ActivityPub Post.
|
|
|
|
* @param string $activity_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-07-03 11:56:25 +02:00
|
|
|
public static function send_user_activity( WP_Post $wp_post, $activity_type ) {
|
2023-07-03 17:59:42 +02:00
|
|
|
// check if a migration is needed before sending new posts
|
|
|
|
Migration::maybe_migrate();
|
2019-08-18 21:54:11 +02:00
|
|
|
|
2023-07-03 11:56:25 +02:00
|
|
|
if ( is_user_disabled( $wp_post->post_author ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$post = new Post( $wp_post );
|
2023-07-03 17:59:42 +02:00
|
|
|
|
2023-07-03 11:56:25 +02:00
|
|
|
$activitypub_activity = new Activity( $activity_type );
|
|
|
|
$activitypub_activity->from_post( $post );
|
2023-07-03 17:59:42 +02:00
|
|
|
|
2023-07-03 11:56:25 +02:00
|
|
|
$user_id = $wp_post->post_author;
|
2023-07-03 17:59:42 +02:00
|
|
|
$follower_inboxes = Followers::get_inboxes( $user_id );
|
2023-07-03 11:56:25 +02:00
|
|
|
$mentioned_inboxes = Mention::get_inboxes( $activitypub_activity->get_cc() );
|
2023-07-03 17:59:42 +02:00
|
|
|
|
|
|
|
$inboxes = array_merge( $follower_inboxes, $mentioned_inboxes );
|
|
|
|
$inboxes = array_unique( $inboxes );
|
|
|
|
|
|
|
|
$array = $activity->to_json();
|
|
|
|
|
|
|
|
foreach ( $inboxes as $inbox ) {
|
|
|
|
safe_remote_post( $inbox, $array, $user_id );
|
|
|
|
}
|
2023-02-02 01:42:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-05-10 15:36:45 +02:00
|
|
|
* Send Activities to followers and mentioned users.
|
2023-02-02 01:42:15 +01:00
|
|
|
*
|
2023-07-03 11:56:25 +02:00
|
|
|
* @param WP_Post $wp_post The ActivityPub Post.
|
|
|
|
* @param string $activity_type The Activity-Type.
|
2023-04-20 15:22:11 +02:00
|
|
|
*
|
2023-02-02 01:42:15 +01:00
|
|
|
* @return void
|
|
|
|
*/
|
2023-07-03 11:56:25 +02:00
|
|
|
public static function send_blog_activity( WP_Post $wp_post, $activity_type ) {
|
2023-04-28 09:54:09 +02:00
|
|
|
// check if a migration is needed before sending new posts
|
2023-05-10 15:36:45 +02:00
|
|
|
Migration::maybe_migrate();
|
2023-04-28 09:54:09 +02:00
|
|
|
|
2023-07-03 11:56:25 +02:00
|
|
|
if ( is_user_disabled( User_Factory::BLOG_USER_ID ) ) {
|
|
|
|
return;
|
|
|
|
}
|
2023-06-14 15:02:45 +02:00
|
|
|
|
2023-07-03 11:56:25 +02:00
|
|
|
$post = new Post( $wp_post, User_Factory::BLOG_USER_ID );
|
2023-07-03 17:59:42 +02:00
|
|
|
|
2023-04-20 15:22:11 +02:00
|
|
|
$activitypub_activity = new Activity( $activity_type );
|
2023-07-03 11:56:25 +02:00
|
|
|
$activitypub_activity->from_post( $post );
|
2023-07-03 17:59:42 +02:00
|
|
|
|
2023-07-03 11:56:25 +02:00
|
|
|
$user_id = User_Factory::BLOG_USER_ID;
|
2023-06-21 15:44:46 +02:00
|
|
|
$follower_inboxes = Followers::get_inboxes( $user_id );
|
2023-04-25 11:59:08 +02:00
|
|
|
$mentioned_inboxes = Mention::get_inboxes( $activitypub_activity->get_cc() );
|
|
|
|
|
|
|
|
$inboxes = array_merge( $follower_inboxes, $mentioned_inboxes );
|
|
|
|
$inboxes = array_unique( $inboxes );
|
2023-02-02 01:42:15 +01:00
|
|
|
|
2023-07-03 18:03:42 +02:00
|
|
|
$array = $activity->to_json();
|
2019-08-18 21:54:11 +02:00
|
|
|
|
2023-07-03 17:59:42 +02:00
|
|
|
foreach ( $inboxes as $inbox ) {
|
|
|
|
safe_remote_post( $inbox, $array, $user_id );
|
2019-08-18 21:54:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|