André Menrath
ef1248beed
All checks were successful
PHP Code Checker / PHP Code Checker (pull_request) Successful in 55s
PHPUnit / PHPUnit – PHP 7.4 (pull_request) Successful in 1m10s
PHPUnit / PHPUnit – PHP 8.0 (pull_request) Successful in 1m7s
PHPUnit / PHPUnit – PHP 8.1 (pull_request) Successful in 1m6s
PHPUnit / PHPUnit – PHP 8.2 (pull_request) Successful in 1m9s
PHPUnit / PHPUnit – PHP 8.3 (pull_request) Successful in 1m3s
PHPUnit / PHPUnit – PHP 8.4 (pull_request) Successful in 1m9s
50 lines
1 KiB
PHP
50 lines
1 KiB
PHP
<?php
|
|
/**
|
|
* Update handler file.
|
|
*
|
|
* @package Event_Bridge_For_ActivityPub
|
|
*/
|
|
|
|
namespace Event_Bridge_For_ActivityPub\ActivityPub\Handler;
|
|
|
|
use Activitypub\Notification;
|
|
use Activitypub\Collection\Actors;
|
|
use Activitypub\Http;
|
|
|
|
/**
|
|
* Handle Update requests.
|
|
*/
|
|
class Update {
|
|
/**
|
|
* Initialize the class, registering WordPress hooks.
|
|
*/
|
|
public static function init() {
|
|
\add_action(
|
|
'activitypub_inbox_update',
|
|
array( self::class, 'handle_update' )
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Handle "Follow" requests.
|
|
*
|
|
* @param array $activity The activity object.
|
|
*/
|
|
public static function handle_update( $activity ) {
|
|
if ( ! isset( $activity['object'] ) ) {
|
|
return;
|
|
}
|
|
|
|
$object = Actors::get_by_resource( $activity['object'] );
|
|
|
|
if ( ! $object || is_wp_error( $object ) ) {
|
|
// If we can not find a actor, we handle the `Update` activity.
|
|
return;
|
|
}
|
|
|
|
// We only expect `Update` activities being answers to follow requests by the application actor.
|
|
if ( Actors::APPLICATION_USER_ID !== $object->get__id() ) {
|
|
return;
|
|
}
|
|
}
|
|
}
|