wordpress-activitypub/includes/class-activity-dispatcher.php

80 lines
2.2 KiB
PHP
Raw Normal View History

2019-08-18 21:54:11 +02:00
<?php
namespace Activitypub;
2023-04-20 15:22:11 +02:00
use Activitypub\Model\Post;
use Activitypub\Model\Activity;
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-02-02 01:42:15 +01:00
// legacy
2023-04-20 15:22:11 +02:00
\add_action( 'activitypub_send_post_activity', array( self::class, 'send_create_activity' ) );
2023-02-02 01:42:15 +01:00
2023-04-20 15:22:11 +02:00
\add_action( 'activitypub_send_create_activity', array( self::class, 'send_create_activity' ) );
\add_action( 'activitypub_send_update_activity', array( self::class, 'send_update_activity' ) );
\add_action( 'activitypub_send_delete_activity', array( self::class, '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
*
2023-04-20 15:22:11 +02:00
* @param Activitypub\Model\Post $activitypub_post
2019-08-18 21:54:11 +02:00
*/
2023-04-20 15:22:11 +02:00
public static function send_create_activity( Post $activitypub_post ) {
2023-02-02 01:42:15 +01:00
self::send_activity( $activitypub_post, 'Create' );
2019-08-18 21:54:11 +02:00
}
2022-12-09 19:05:43 +01:00
/**
* Send "update" activities.
*
2023-04-20 15:22:11 +02:00
* @param Activitypub\Model\Post $activitypub_post
2022-12-09 19:05:43 +01:00
*/
2023-04-20 15:22:11 +02:00
public static function send_update_activity( Post $activitypub_post ) {
2023-02-02 01:42:15 +01:00
self::send_activity( $activitypub_post, 'Update' );
2019-08-18 21:54:11 +02:00
}
2022-12-09 19:05:43 +01:00
/**
* Send "delete" activities.
*
2023-04-20 15:22:11 +02:00
* @param Activitypub\Model\Post $activitypub_post
2022-12-09 19:05:43 +01:00
*/
2023-04-20 15:22:11 +02:00
public static function send_delete_activity( Post $activitypub_post ) {
2023-02-02 01:42:15 +01:00
self::send_activity( $activitypub_post, 'Delete' );
}
/**
* Undocumented function
*
2023-04-20 15:22:11 +02:00
* @param Activitypub\Model\Post $activitypub_post
2023-02-02 01:42:15 +01:00
* @param [type] $activity_type
2023-04-20 15:22:11 +02:00
*
2023-02-02 01:42:15 +01:00
* @return void
*/
2023-04-20 15:22:11 +02:00
public static function send_activity( Post $activitypub_post, $activity_type ) {
2020-05-14 21:37:59 +02:00
// get latest version of post
$user_id = $activitypub_post->get_post_author();
2019-08-18 21:54:11 +02:00
2023-04-20 15:22:11 +02:00
$activitypub_activity = new Activity( $activity_type );
2023-02-01 00:13:55 +01:00
$activitypub_activity->from_post( $activitypub_post );
2019-08-18 21:54:11 +02:00
2023-02-02 01:42:15 +01:00
$inboxes = \Activitypub\get_follower_inboxes( $user_id, $activitypub_activity->get_cc() );
foreach ( $inboxes as $inbox => $cc ) {
$cc = array_values( array_unique( $cc ) );
$activitypub_activity->add_cc( $cc );
$activity = $activitypub_activity->to_json();
2019-08-18 21:54:11 +02:00
\Activitypub\safe_remote_post( $inbox, $activity, $user_id );
}
}
}