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

71 lines
1.5 KiB
PHP
Raw Permalink 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 Event_Bridge_For_ActivityPub\ActivityPub\Handler;
2024-12-11 23:09:12 +01:00
use function Activitypub\is_activity_public;
/**
* Handle Update requests.
*/
class Update {
/**
* Initialize the class, registering the handler for incoming `Update` activities to the ActivityPub plugin.
*/
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 incoming "Update" activities..
*
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 to the application user.
2024-12-15 13:42:57 +01:00
if ( Actors::BLOG_USER_ID !== $user_id ) {
return;
}
if ( ! Handler::actor_is_event_source( $activity['actor'] ) ) {
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;
}
if ( Handler::is_time_passed( $activity['object']['startTime'] ) ) {
return;
}
2024-12-15 22:25:28 +01:00
$transmogrifier = Setup::get_transmogrifier();
2024-12-11 23:09:12 +01:00
2024-12-15 22:25:28 +01:00
if ( ! $transmogrifier ) {
return;
}
2024-12-11 23:09:12 +01:00
2024-12-15 22:25:28 +01:00
$transmogrifier->save( $activity['object'] );
}
}