2019-08-18 21:54:11 +02:00
|
|
|
<?php
|
|
|
|
namespace Activitypub;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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() {
|
2019-09-27 10:12:59 +02:00
|
|
|
\add_action( 'activitypub_send_post_activity', array( '\Activitypub\Activity_Dispatcher', 'send_post_activity' ) );
|
|
|
|
\add_action( 'activitypub_send_update_activity', array( '\Activitypub\Activity_Dispatcher', 'send_update_activity' ) );
|
2020-05-14 18:02:49 +02:00
|
|
|
\add_action( 'activitypub_send_delete_activity', array( '\Activitypub\Activity_Dispatcher', 'send_delete_activity' ) );
|
2019-08-18 21:54:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-05-14 21:37:59 +02:00
|
|
|
* Send "create" activities.
|
2019-08-18 21:54:11 +02:00
|
|
|
*
|
2020-05-14 21:37:59 +02:00
|
|
|
* @param \Activitypub\Model\Post $activitypub_post
|
2019-08-18 21:54:11 +02:00
|
|
|
*/
|
2022-12-08 21:23:19 +01:00
|
|
|
public static function send_post_activity( Model\Post $activitypub_post ) {
|
2020-05-14 18:02:49 +02:00
|
|
|
// get latest version of post
|
2020-05-14 21:37:59 +02:00
|
|
|
$user_id = $activitypub_post->get_post_author();
|
2019-08-18 21:54:11 +02:00
|
|
|
|
2019-11-18 20:57:00 +01:00
|
|
|
$activitypub_activity = new \Activitypub\Model\Activity( 'Create', \Activitypub\Model\Activity::TYPE_FULL );
|
2022-12-08 21:23:19 +01:00
|
|
|
$activitypub_activity->from_post( $activitypub_post );
|
2019-08-18 21:54:11 +02:00
|
|
|
|
2022-12-09 13:16:34 +01:00
|
|
|
$inboxes = \Activitypub\get_follower_inboxes( $user_id );
|
2019-08-18 21:54:11 +02:00
|
|
|
|
2022-12-08 21:23:19 +01:00
|
|
|
$followers_url = \get_rest_url( null, '/activitypub/1.0/users/' . intval( $user_id ) . '/followers' );
|
|
|
|
foreach ( $activitypub_activity->get_cc() as $cc ) {
|
|
|
|
if ( $cc === $followers_url ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$inbox = \Activitypub\get_inbox_by_actor( $cc );
|
|
|
|
if ( ! $inbox || \is_wp_error( $inbox ) ) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-12-09 13:16:34 +01:00
|
|
|
// init array if empty
|
|
|
|
if ( ! isset( $inboxes[ $inbox ] ) ) {
|
|
|
|
$inboxes[ $inbox ] = array();
|
2022-12-08 21:23:19 +01:00
|
|
|
}
|
2022-12-09 13:16:34 +01:00
|
|
|
$inboxes[ $inbox ][] = $cc;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ( $inboxes as $inbox => $to ) {
|
2022-12-09 13:39:48 +01:00
|
|
|
$to = array_values( array_unique( $to ) );
|
2022-12-09 13:16:34 +01:00
|
|
|
$activitypub_activity->set_to( $to );
|
|
|
|
$activity = $activitypub_activity->to_json();
|
2022-12-08 21:23:19 +01:00
|
|
|
|
2019-08-18 21:54:11 +02:00
|
|
|
\Activitypub\safe_remote_post( $inbox, $activity, $user_id );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-09 19:05:43 +01:00
|
|
|
/**
|
|
|
|
* Send "update" activities.
|
|
|
|
*
|
|
|
|
* @param \Activitypub\Model\Post $activitypub_post
|
|
|
|
*/
|
2020-05-14 21:37:59 +02:00
|
|
|
public static function send_update_activity( $activitypub_post ) {
|
2020-05-14 18:02:49 +02:00
|
|
|
// get latest version of post
|
2020-05-14 21:37:59 +02:00
|
|
|
$user_id = $activitypub_post->get_post_author();
|
2019-08-18 21:54:11 +02:00
|
|
|
|
2019-11-18 20:57:00 +01:00
|
|
|
$activitypub_activity = new \Activitypub\Model\Activity( 'Update', \Activitypub\Model\Activity::TYPE_FULL );
|
2019-08-18 21:54:11 +02:00
|
|
|
$activitypub_activity->from_post( $activitypub_post->to_array() );
|
|
|
|
|
|
|
|
foreach ( \Activitypub\get_follower_inboxes( $user_id ) as $inbox => $to ) {
|
|
|
|
$activitypub_activity->set_to( $to );
|
|
|
|
$activity = $activitypub_activity->to_json(); // phpcs:ignore
|
|
|
|
|
|
|
|
\Activitypub\safe_remote_post( $inbox, $activity, $user_id );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-09 19:05:43 +01:00
|
|
|
/**
|
|
|
|
* Send "delete" activities.
|
|
|
|
*
|
|
|
|
* @param \Activitypub\Model\Post $activitypub_post
|
|
|
|
*/
|
2020-05-14 21:37:59 +02:00
|
|
|
public static function send_delete_activity( $activitypub_post ) {
|
|
|
|
// get latest version of post
|
|
|
|
$user_id = $activitypub_post->get_post_author();
|
2019-08-18 21:54:11 +02:00
|
|
|
|
2019-11-18 20:57:00 +01:00
|
|
|
$activitypub_activity = new \Activitypub\Model\Activity( 'Delete', \Activitypub\Model\Activity::TYPE_FULL );
|
2019-08-18 21:54:11 +02:00
|
|
|
$activitypub_activity->from_post( $activitypub_post->to_array() );
|
|
|
|
|
|
|
|
foreach ( \Activitypub\get_follower_inboxes( $user_id ) as $inbox => $to ) {
|
|
|
|
$activitypub_activity->set_to( $to );
|
|
|
|
$activity = $activitypub_activity->to_json(); // phpcs:ignore
|
|
|
|
|
|
|
|
\Activitypub\safe_remote_post( $inbox, $activity, $user_id );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|