256 lines
7.2 KiB
PHP
256 lines
7.2 KiB
PHP
<?php
|
|
/**
|
|
* Inbox_Controller file.
|
|
*
|
|
* @package Activitypub
|
|
*/
|
|
|
|
namespace Activitypub\Rest;
|
|
|
|
use Activitypub\Activity\Activity;
|
|
use Activitypub\Collection\Actors;
|
|
use Activitypub\Debug;
|
|
|
|
use function Activitypub\is_same_domain;
|
|
use function Activitypub\extract_recipients_from_activity;
|
|
|
|
/**
|
|
* Inbox_Controller class.
|
|
*
|
|
* @author Matthias Pfefferle
|
|
*
|
|
* @see https://www.w3.org/TR/activitypub/#inbox
|
|
*/
|
|
class Inbox_Controller extends \WP_REST_Controller {
|
|
/**
|
|
* The namespace of this controller's route.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $namespace = ACTIVITYPUB_REST_NAMESPACE;
|
|
|
|
/**
|
|
* The base of this controller's route.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $rest_base = 'inbox';
|
|
|
|
/**
|
|
* Register routes.
|
|
*/
|
|
public function register_routes() {
|
|
\register_rest_route(
|
|
$this->namespace,
|
|
'/' . $this->rest_base,
|
|
array(
|
|
array(
|
|
'methods' => \WP_REST_Server::CREATABLE,
|
|
'callback' => array( $this, 'create_item' ),
|
|
'permission_callback' => array( 'Activitypub\Rest\Server', 'verify_signature' ),
|
|
'args' => array(
|
|
'id' => array(
|
|
'description' => 'The unique identifier for the activity.',
|
|
'type' => 'string',
|
|
'format' => 'uri',
|
|
'required' => true,
|
|
),
|
|
'actor' => array(
|
|
'description' => 'The actor performing the activity.',
|
|
'type' => 'string',
|
|
'required' => true,
|
|
'sanitize_callback' => '\Activitypub\object_to_uri',
|
|
),
|
|
'type' => array(
|
|
'description' => 'The type of the activity.',
|
|
'type' => 'string',
|
|
'required' => true,
|
|
),
|
|
'object' => array(
|
|
'description' => 'The object of the activity.',
|
|
'required' => true,
|
|
'validate_callback' => function ( $param, $request, $key ) {
|
|
/**
|
|
* Filter the ActivityPub object validation.
|
|
*
|
|
* @param bool $validate The validation result.
|
|
* @param array $param The object data.
|
|
* @param object $request The request object.
|
|
* @param string $key The key.
|
|
*/
|
|
return \apply_filters( 'activitypub_validate_object', true, $param, $request, $key );
|
|
},
|
|
),
|
|
'to' => array(
|
|
'description' => 'The primary recipients of the activity.',
|
|
'type' => array( 'string', 'array' ),
|
|
'required' => false,
|
|
'sanitize_callback' => function ( $param ) {
|
|
if ( \is_string( $param ) ) {
|
|
$param = array( $param );
|
|
}
|
|
|
|
return $param;
|
|
},
|
|
),
|
|
'cc' => array(
|
|
'description' => 'The secondary recipients of the activity.',
|
|
'type' => array( 'string', 'array' ),
|
|
'sanitize_callback' => function ( $param ) {
|
|
if ( \is_string( $param ) ) {
|
|
$param = array( $param );
|
|
}
|
|
|
|
return $param;
|
|
},
|
|
),
|
|
'bcc' => array(
|
|
'description' => 'The private recipients of the activity.',
|
|
'type' => array( 'string', 'array' ),
|
|
'sanitize_callback' => function ( $param ) {
|
|
if ( \is_string( $param ) ) {
|
|
$param = array( $param );
|
|
}
|
|
|
|
return $param;
|
|
},
|
|
),
|
|
),
|
|
),
|
|
'schema' => array( $this, 'get_item_schema' ),
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* The shared inbox.
|
|
*
|
|
* @param \WP_REST_Request $request The request object.
|
|
*
|
|
* @return \WP_REST_Response|\WP_Error Response object or WP_Error.
|
|
*/
|
|
public function create_item( $request ) {
|
|
$data = $request->get_json_params();
|
|
$activity = Activity::init_from_array( $data );
|
|
$type = \strtolower( $request->get_param( 'type' ) );
|
|
|
|
// phpcs:ignore WordPress.Security.ValidatedSanitizedInput
|
|
if ( \wp_check_comment_disallowed_list( $activity->to_json( false ), '', '', '', $_SERVER['REMOTE_ADDR'], $_SERVER['HTTP_USER_AGENT'] ?? '' ) ) {
|
|
Debug::write_log( 'Blocked activity from: ' . $activity->get_actor() );
|
|
} else {
|
|
$recipients = extract_recipients_from_activity( $data );
|
|
|
|
foreach ( $recipients as $recipient ) {
|
|
if ( ! is_same_domain( $recipient ) ) {
|
|
continue;
|
|
}
|
|
|
|
$actor = Actors::get_by_various( $recipient );
|
|
|
|
if ( ! $actor || \is_wp_error( $actor ) ) {
|
|
continue;
|
|
}
|
|
|
|
/**
|
|
* ActivityPub inbox action.
|
|
*
|
|
* @param array $data The data array.
|
|
* @param int $user_id The user ID.
|
|
* @param string $type The type of the activity.
|
|
* @param Activity|\WP_Error $activity The Activity object.
|
|
*/
|
|
\do_action( 'activitypub_inbox', $data, $actor->get__id(), $type, $activity );
|
|
|
|
/**
|
|
* ActivityPub inbox action for specific activity types.
|
|
*
|
|
* @param array $data The data array.
|
|
* @param int $user_id The user ID.
|
|
* @param Activity|\WP_Error $activity The Activity object.
|
|
*/
|
|
\do_action( 'activitypub_inbox_' . $type, $data, $actor->get__id(), $activity );
|
|
}
|
|
}
|
|
|
|
$response = \rest_ensure_response( array() );
|
|
$response->set_status( 202 );
|
|
$response->header( 'Content-Type', 'application/activity+json; charset=' . \get_option( 'blog_charset' ) );
|
|
|
|
return $response;
|
|
}
|
|
|
|
/**
|
|
* Retrieves the schema for a single inbox item, conforming to JSON Schema.
|
|
*
|
|
* @return array Item schema data.
|
|
*/
|
|
public function get_item_schema() {
|
|
if ( $this->schema ) {
|
|
return $this->add_additional_fields_schema( $this->schema );
|
|
}
|
|
|
|
$schema = array(
|
|
'$schema' => 'https://json-schema.org/draft-04/schema#',
|
|
'title' => 'activity',
|
|
'type' => 'object',
|
|
'properties' => array(
|
|
'@context' => array(
|
|
'description' => 'The JSON-LD context for the activity.',
|
|
'type' => array( 'string', 'array', 'object' ),
|
|
'required' => true,
|
|
),
|
|
'id' => array(
|
|
'description' => 'The unique identifier for the activity.',
|
|
'type' => 'string',
|
|
'format' => 'uri',
|
|
'required' => true,
|
|
),
|
|
'type' => array(
|
|
'description' => 'The type of the activity.',
|
|
'type' => 'string',
|
|
'required' => true,
|
|
),
|
|
'actor' => array(
|
|
'description' => 'The actor performing the activity.',
|
|
'type' => array( 'string', 'object' ),
|
|
'format' => 'uri',
|
|
'required' => true,
|
|
),
|
|
'object' => array(
|
|
'description' => 'The object of the activity.',
|
|
'type' => array( 'string', 'object' ),
|
|
'required' => true,
|
|
),
|
|
'to' => array(
|
|
'description' => 'The primary recipients of the activity.',
|
|
'type' => 'array',
|
|
'items' => array(
|
|
'type' => 'string',
|
|
'format' => 'uri',
|
|
),
|
|
),
|
|
'cc' => array(
|
|
'description' => 'The secondary recipients of the activity.',
|
|
'type' => 'array',
|
|
'items' => array(
|
|
'type' => 'string',
|
|
'format' => 'uri',
|
|
),
|
|
),
|
|
'bcc' => array(
|
|
'description' => 'The private recipients of the activity.',
|
|
'type' => 'array',
|
|
'items' => array(
|
|
'type' => 'string',
|
|
'format' => 'uri',
|
|
),
|
|
),
|
|
),
|
|
);
|
|
|
|
$this->schema = $schema;
|
|
|
|
return $this->add_additional_fields_schema( $this->schema );
|
|
}
|
|
}
|