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

97 lines
2.9 KiB
PHP
Raw Normal View History

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 {
/**
* Initialize the class, registering WordPress hooks
*/
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
}
/**
* Send "create" activities
*
* @param int $post_id
*/
2020-05-14 18:02:49 +02:00
public static function send_post_activity( $post ) {
if ( \is_object( $post ) ) {
$post_id = $post->ID;
} else {
$post_id = $post;
}
// get latest version of post
$post = \get_post( $post );
2019-08-18 21:54:11 +02:00
$user_id = $post->post_author;
2019-11-18 20:57:00 +01:00
$activitypub_post = new \Activitypub\Model\Post( $post );
$activitypub_activity = new \Activitypub\Model\Activity( 'Create', \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 );
}
}
/**
* Send "update" activities
*
* @param int $post_id
*/
2020-05-14 18:02:49 +02:00
public static function send_update_activity( $post ) {
if ( \is_object( $post ) ) {
$post_id = $post->ID;
} else {
$post_id = $post;
}
// get latest version of post
$post = \get_post( $post );
2019-08-18 21:54:11 +02:00
$user_id = $post->post_author;
2019-11-18 20:57:00 +01:00
$activitypub_post = new \Activitypub\Model\Post( $post );
$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 );
}
}
/**
* Send "delete" activities
*
* @param int $post_id
*/
2020-05-14 18:02:49 +02:00
public static function send_delete_activity( $post ) {
2019-08-18 21:54:11 +02:00
$user_id = $post->post_author;
2019-11-18 20:57:00 +01:00
$activitypub_post = new \Activitypub\Model\Post( $post );
$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 );
}
}
}