wordpress-activitypub/includes/rest/class-outbox.php

154 lines
3.9 KiB
PHP
Raw Normal View History

2018-09-05 20:03:57 +00:00
<?php
namespace Activitypub\Rest;
2023-05-19 10:00:11 +00:00
use stdClass;
use WP_Error;
use WP_REST_Server;
use WP_REST_Response;
2023-07-03 15:59:42 +00:00
use Activitypub\Transformer\Post;
2023-07-03 17:25:49 +00:00
use Activitypub\Activity\Activity;
2023-07-03 17:52:54 +00:00
use Activitypub\Collection\Users as User_Collection;
2023-05-19 10:00:11 +00:00
2023-05-19 16:03:05 +00:00
use function Activitypub\get_context;
2023-05-12 20:31:53 +00:00
use function Activitypub\get_rest_url_by_path;
2018-09-05 20:03:57 +00:00
/**
2019-02-24 12:01:28 +00:00
* ActivityPub Outbox REST-Class
2018-09-05 20:03:57 +00:00
*
* @author Matthias Pfefferle
2019-02-24 12:01:28 +00:00
*
* @see https://www.w3.org/TR/activitypub/#outbox
2018-09-05 20:03:57 +00:00
*/
class Outbox {
/**
2019-02-24 12:01:28 +00:00
* Initialize the class, registering WordPress hooks
*/
public static function init() {
2023-04-20 13:22:11 +00:00
\add_action( 'rest_api_init', array( self::class, 'register_routes' ) );
}
2018-09-05 20:03:57 +00:00
/**
2018-09-24 18:47:15 +00:00
* Register routes
2018-09-05 20:03:57 +00:00
*/
public static function register_routes() {
2019-09-27 08:12:59 +00:00
\register_rest_route(
ACTIVITYPUB_REST_NAMESPACE,
2023-05-26 14:08:08 +00:00
'/users/(?P<user_id>[\w\-\.]+)/outbox',
2022-01-27 12:09:11 +00:00
array(
2018-09-05 20:03:57 +00:00
array(
2023-05-19 10:00:11 +00:00
'methods' => WP_REST_Server::READABLE,
2023-04-20 13:22:11 +00:00
'callback' => array( self::class, 'user_outbox_get' ),
2020-09-18 14:36:09 +00:00
'args' => self::request_parameters(),
'permission_callback' => '__return_true',
2018-09-05 20:03:57 +00:00
),
)
);
}
/**
* Renders the user-outbox
*
* @param WP_REST_Request $request
* @return WP_REST_Response
*/
public static function user_outbox_get( $request ) {
2021-01-03 19:40:53 +00:00
$user_id = $request->get_param( 'user_id' );
2023-07-03 17:52:54 +00:00
$user = User_Collection::get_by_various( $user_id );
2018-09-05 20:03:57 +00:00
if ( is_wp_error( $user ) ) {
return $user;
2018-09-24 18:47:15 +00:00
}
$post_types = \get_option( 'activitypub_support_post_types', array( 'post', 'page' ) );
2023-07-07 13:10:22 +00:00
$page = $request->get_param( 'page', 1 );
2018-09-24 18:47:15 +00:00
/*
* Action triggerd prior to the ActivityPub profile being created and sent to the client
*/
2023-07-25 08:47:59 +00:00
\do_action( 'activitypub_rest_outbox_pre' );
2018-09-24 18:47:15 +00:00
2023-05-19 10:00:11 +00:00
$json = new stdClass();
2018-09-24 18:47:15 +00:00
2023-05-19 10:00:11 +00:00
$json->{'@context'} = get_context();
2023-07-25 11:47:49 +00:00
$json->id = get_rest_url_by_path( sprintf( 'users/%d/outbox', $user_id ) );
2019-09-27 08:12:59 +00:00
$json->generator = 'http://wordpress.org/?v=' . \get_bloginfo_rss( 'version' );
2023-07-03 17:52:54 +00:00
$json->actor = $user->get_id();
2018-09-27 20:27:49 +00:00
$json->type = 'OrderedCollectionPage';
2023-07-03 15:59:42 +00:00
$json->partOf = get_rest_url_by_path( sprintf( 'users/%d/outbox', $user_id ) ); // phpcs:ignore
2022-12-05 19:55:13 +00:00
$json->totalItems = 0; // phpcs:ignore
2018-09-24 18:47:15 +00:00
foreach ( $post_types as $post_type ) {
$count_posts = \wp_count_posts( $post_type );
$json->totalItems += \intval( $count_posts->publish ); // phpcs:ignore
}
2018-09-24 18:47:15 +00:00
2021-01-09 00:25:49 +00:00
$json->first = \add_query_arg( 'page', 1, $json->partOf ); // phpcs:ignore
$json->last = \add_query_arg( 'page', \ceil ( $json->totalItems / 10 ), $json->partOf ); // phpcs:ignore
2018-09-24 18:47:15 +00:00
2021-01-09 00:25:49 +00:00
if ( $page && ( ( \ceil ( $json->totalItems / 10 ) ) > $page ) ) { // phpcs:ignore
$json->next = \add_query_arg( 'page', $page + 1, $json->partOf ); // phpcs:ignore
2018-09-24 18:47:15 +00:00
}
2023-07-07 13:10:22 +00:00
if ( $page && ( $page > 1 ) ) { // phpcs:ignore
$json->prev = \add_query_arg( 'page', $page - 1, $json->partOf ); // phpcs:ignore
}
2021-01-09 00:25:49 +00:00
if ( $page ) {
2022-01-27 12:09:11 +00:00
$posts = \get_posts(
array(
'posts_per_page' => 10,
2023-07-07 13:10:22 +00:00
'author' => $user_id,
'paged' => $page,
'post_type' => $post_types,
2022-01-27 12:09:11 +00:00
)
);
2021-01-09 00:25:49 +00:00
foreach ( $posts as $post ) {
2023-07-03 15:59:42 +00:00
$post = Post::transform( $post )->to_object();
$activity = new Activity();
$activity->set_type( 'Create' );
$activity->set_context( null );
$activity->set_object( $post );
2023-07-03 15:59:42 +00:00
$json->orderedItems[] = $activity->to_array(); // phpcs:ignore
2021-01-09 00:25:49 +00:00
}
2018-09-24 18:47:15 +00:00
}
// filter output
2019-09-27 08:12:59 +00:00
$json = \apply_filters( 'activitypub_outbox_array', $json );
2018-09-24 18:47:15 +00:00
/*
* Action triggerd after the ActivityPub profile has been created and sent to the client
*/
2019-09-27 08:12:59 +00:00
\do_action( 'activitypub_outbox_post' );
2018-09-24 18:47:15 +00:00
2023-05-19 10:00:11 +00:00
$response = new WP_REST_Response( $json, 200 );
2018-09-24 18:47:15 +00:00
2018-09-27 20:27:49 +00:00
$response->header( 'Content-Type', 'application/activity+json' );
2018-09-24 18:47:15 +00:00
return $response;
}
2019-02-28 18:31:55 +00:00
/**
* The supported parameters
*
* @return array list of parameters
*/
2018-09-24 18:47:15 +00:00
public static function request_parameters() {
$params = array();
$params['page'] = array(
'type' => 'integer',
2023-07-07 13:10:22 +00:00
'default' => 1,
2018-09-24 18:47:15 +00:00
);
2021-01-03 19:40:53 +00:00
$params['user_id'] = array(
2018-09-24 18:47:15 +00:00
'required' => true,
'type' => 'string',
2018-09-24 18:47:15 +00:00
);
2018-09-05 20:03:57 +00:00
2018-09-24 18:47:15 +00:00
return $params;
2018-09-05 20:03:57 +00:00
}
}