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

129 lines
3.3 KiB
PHP
Raw Normal View History

2019-08-18 19:54:11 +00:00
<?php
namespace Activitypub;
2023-07-03 15:59:42 +00:00
use WP_Post;
use Activitypub\Activity\Activity;
2023-07-03 09:20:44 +00:00
use Activitypub\Collection\Users;
2023-04-24 18:46:51 +00:00
use Activitypub\Collection\Followers;
2023-07-03 15:59:42 +00:00
use Activitypub\Transformer\Post;
2023-04-20 13:22:11 +00:00
2023-07-10 08:58:34 +00:00
use function Activitypub\is_single_user;
2023-07-03 09:56:25 +00:00
use function Activitypub\is_user_disabled;
2023-05-10 13:36:45 +00:00
use function Activitypub\safe_remote_post;
2019-08-18 19:54:11 +00:00
/**
* ActivityPub Activity_Dispatcher Class
*
* @author Matthias Pfefferle
*
* @see https://www.w3.org/TR/activitypub/
*/
class Activity_Dispatcher {
/**
2020-05-14 19:37:59 +00:00
* Initialize the class, registering WordPress hooks.
2019-08-18 19:54:11 +00:00
*/
public static function init() {
2023-07-10 08:58:34 +00:00
// check if a migration is needed before sending new posts
Migration::maybe_migrate();
\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 );
2019-08-18 19:54:11 +00:00
}
2023-07-10 10:12:12 +00:00
/**
* Send Activities to followers and mentioned users or `Announce` (boost) a blog post.
*
* @param WP_Post $wp_post The ActivityPub Post.
* @param string $type The Activity-Type.
*
* @return void
*/
public static function send_activity_or_announce( WP_Post $wp_post, $type ) {
2023-07-20 12:53:34 +00:00
if ( is_user_type_disabled( 'blog' ) ) {
2023-07-10 10:12:12 +00:00
return;
}
$wp_post->post_author = Users::BLOG_USER_ID;
if ( is_single_user() ) {
self::send_activity( $wp_post, $type );
} else {
self::send_announce( $wp_post, $type );
}
}
2019-08-18 19:54:11 +00:00
/**
2023-07-03 15:59:42 +00:00
* Send Activities to followers and mentioned users.
2019-08-18 19:54:11 +00:00
*
2023-07-03 09:56:25 +00:00
* @param WP_Post $wp_post The ActivityPub Post.
2023-07-03 16:18:03 +00:00
* @param string $type The Activity-Type.
2022-12-09 18:05:43 +00:00
*
2023-07-03 15:59:42 +00:00
* @return void
2022-12-09 18:05:43 +00:00
*/
2023-07-10 08:58:34 +00:00
public static function send_activity( WP_Post $wp_post, $type ) {
2023-07-03 09:56:25 +00:00
if ( is_user_disabled( $wp_post->post_author ) ) {
return;
}
2023-07-03 16:18:03 +00:00
$object = Post::transform( $wp_post )->to_object();
2023-07-03 15:59:42 +00:00
2023-07-03 16:18:03 +00:00
$activity = new Activity();
$activity->set_type( $type );
$activity->set_object( $object );
2023-07-03 15:59:42 +00:00
2023-07-10 08:58:34 +00:00
$follower_inboxes = Followers::get_inboxes( $wp_post->post_author );
2023-07-03 16:18:03 +00:00
$mentioned_inboxes = Mention::get_inboxes( $activity->get_cc() );
2023-07-03 15:59:42 +00:00
$inboxes = array_merge( $follower_inboxes, $mentioned_inboxes );
$inboxes = array_unique( $inboxes );
2023-07-03 16:18:03 +00:00
$json = $activity->to_json();
2023-07-03 15:59:42 +00:00
foreach ( $inboxes as $inbox ) {
2023-07-10 10:12:12 +00:00
safe_remote_post( $inbox, $json, $wp_post->post_author );
2023-07-03 15:59:42 +00:00
}
2023-02-02 00:42:15 +00:00
}
/**
2023-07-10 10:12:12 +00:00
* Send Announces to followers and mentioned users.
2023-07-05 14:16:31 +00:00
*
* @param WP_Post $wp_post The ActivityPub Post.
* @param string $type The Activity-Type.
*
* @return void
*/
2023-07-10 08:58:34 +00:00
public static function send_announce( WP_Post $wp_post, $type ) {
2023-07-05 14:16:31 +00:00
// check if a migration is needed before sending new posts
Migration::maybe_migrate();
2023-07-07 11:43:12 +00:00
if ( ! in_array( $type, array( 'Create', 'Update' ), true ) ) {
return;
}
2023-07-05 14:16:31 +00:00
if ( is_user_disabled( Users::BLOG_USER_ID ) ) {
return;
}
$object = Post::transform( $wp_post )->to_object();
$activity = new Activity();
$activity->set_type( 'Announce' );
2023-07-10 08:58:34 +00:00
// to pre-fill attributes like "published" and "id"
2023-07-05 14:16:31 +00:00
$activity->set_object( $object );
2023-07-10 08:58:34 +00:00
// send only the id
2023-07-05 14:16:31 +00:00
$activity->set_object( $object->get_id() );
2023-07-10 08:58:34 +00:00
$follower_inboxes = Followers::get_inboxes( $wp_post->post_author );
2023-07-03 16:18:03 +00:00
$mentioned_inboxes = Mention::get_inboxes( $activity->get_cc() );
$inboxes = array_merge( $follower_inboxes, $mentioned_inboxes );
$inboxes = array_unique( $inboxes );
2023-02-02 00:42:15 +00:00
2023-07-03 16:18:03 +00:00
$json = $activity->to_json();
2019-08-18 19:54:11 +00:00
2023-07-03 15:59:42 +00:00
foreach ( $inboxes as $inbox ) {
2023-07-10 10:12:12 +00:00
safe_remote_post( $inbox, $json, $wp_post->post_author );
2019-08-18 19:54:11 +00:00
}
}
}