wordpress-event-bridge-for-.../includes/activitypub/handler/class-update.php

63 lines
1.3 KiB
PHP
Raw Normal View History

<?php
/**
* Update handler file.
*
* @package Event_Bridge_For_ActivityPub
*/
namespace Event_Bridge_For_ActivityPub\ActivityPub\Handler;
use Activitypub\Collection\Actors;
2024-12-11 23:09:12 +01:00
use Event_Bridge_For_ActivityPub\Setup;
use function Activitypub\is_activity_public;
/**
* Handle Update requests.
*/
class Update {
/**
* Initialize the class, registering WordPress hooks.
*/
public static function init() {
\add_action(
'activitypub_inbox_update',
2024-12-11 23:09:12 +01:00
array( self::class, 'handle_update' ),
15,
2
);
}
/**
* Handle "Follow" requests.
*
2024-12-11 23:09:12 +01:00
* @param array $activity The activity-object.
* @param int $user_id The id of the local blog-user.
*/
2024-12-11 23:09:12 +01:00
public static function handle_update( $activity, $user_id ) {
// We only process activities that are target the application user.
2024-12-15 13:42:57 +01:00
if ( Actors::BLOG_USER_ID !== $user_id ) {
return;
}
2024-12-11 23:09:12 +01:00
// Check if Activity is public or not.
if ( ! is_activity_public( $activity ) ) {
return;
}
2024-12-11 23:09:12 +01:00
// Check if an object is set.
if ( ! isset( $activity['object']['type'] ) || 'Event' !== $activity['object']['type'] ) {
return;
}
2024-12-11 23:09:12 +01:00
$transmogrifier_class = Setup::get_transmogrifier();
if ( ! $transmogrifier_class ) {
return;
}
2024-12-11 23:09:12 +01:00
$transmogrifier = new $transmogrifier_class( $activity['object'] );
2024-12-15 16:12:24 +01:00
$transmogrifier->save();
}
}