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

158 lines
4.7 KiB
PHP
Raw Normal View History

2018-09-05 22:03:57 +02:00
<?php
namespace Activitypub\Rest;
2018-09-05 22:03:57 +02:00
/**
2019-02-24 13:01:28 +01:00
* ActivityPub Outbox REST-Class
2018-09-05 22:03:57 +02:00
*
* @author Matthias Pfefferle
2019-02-24 13:01:28 +01:00
*
* @see https://www.w3.org/TR/activitypub/#outbox
2018-09-05 22:03:57 +02:00
*/
class Outbox {
/**
2019-02-24 13:01:28 +01:00
* Initialize the class, registering WordPress hooks
*/
public static function init() {
add_action( 'rest_api_init', array( '\Activitypub\Rest\Outbox', 'register_routes' ) );
add_action( 'activitypub_send_post_activity', array( '\Activitypub\Rest\Outbox', 'send_post_activity' ) );
add_action( 'activitypub_send_update_activity', array( '\Activitypub\Rest\Outbox', 'send_update_activity' ) );
}
2018-09-05 22:03:57 +02:00
/**
2018-09-24 20:47:15 +02:00
* Register routes
2018-09-05 22:03:57 +02:00
*/
public static function register_routes() {
register_rest_route(
2018-09-24 20:47:15 +02:00
'activitypub/1.0', '/users/(?P<id>\d+)/outbox', array(
2018-09-05 22:03:57 +02:00
array(
'methods' => \WP_REST_Server::READABLE,
'callback' => array( '\Activitypub\Rest\Outbox', 'user_outbox' ),
2018-09-24 20:47:15 +02:00
'args' => self::request_parameters(),
2018-09-05 22:03:57 +02:00
),
)
);
}
/**
* Renders the user-outbox
*
* @param WP_REST_Request $request
* @return WP_REST_Response
*/
public static function user_outbox( $request ) {
$user_id = $request->get_param( 'id' );
$author = get_user_by( 'ID', $user_id );
2018-09-05 22:03:57 +02:00
2018-09-24 20:47:15 +02:00
if ( ! $author ) {
return new \WP_Error( 'rest_invalid_param', __( 'User not found', 'activitypub' ), array(
'status' => 404,
'params' => array(
'user_id' => __( 'User not found', 'activitypub' ),
),
2018-09-24 20:47:15 +02:00
) );
}
2018-09-30 22:51:22 +02:00
$page = $request->get_param( 'page', 0 );
2018-09-24 20:47:15 +02:00
/*
* Action triggerd prior to the ActivityPub profile being created and sent to the client
*/
do_action( 'activitypub_outbox_pre' );
$json = new \stdClass();
2018-09-24 20:47:15 +02:00
$json->{'@context'} = \Activitypub\get_context();
$json->id = home_url( add_query_arg( null, null ) );
2018-09-27 22:27:49 +02:00
$json->generator = 'http://wordpress.org/?v=' . get_bloginfo_rss( 'version' );
$json->actor = get_author_posts_url( $user_id );
2018-09-27 22:27:49 +02:00
$json->type = 'OrderedCollectionPage';
$json->partOf = get_rest_url( null, "/activitypub/1.0/users/$user_id/outbox" ); // phpcs:ignore
2018-09-24 20:47:15 +02:00
2018-09-27 22:27:49 +02:00
$count_posts = wp_count_posts();
$json->totalItems = intval( $count_posts->publish ); // phpcs:ignore
2018-09-24 20:47:15 +02:00
$posts = get_posts( array(
2018-09-30 22:51:22 +02:00
'posts_per_page' => 10,
'author' => $user_id,
2018-09-30 22:51:22 +02:00
'offset' => $page * 10,
2018-09-24 20:47:15 +02:00
) );
$json->first = add_query_arg( 'page', 0, $json->partOf ); // phpcs:ignore
$json->last = add_query_arg( 'page', ( ceil ( $json->totalItems / 10 ) ) - 1, $json->partOf ); // phpcs:ignore
2018-09-24 23:45:11 +02:00
if ( ( ceil ( $json->totalItems / 10 ) ) - 1 > $page ) { // phpcs:ignore
$json->next = add_query_arg( 'page', ++$page, $json->partOf ); // phpcs:ignore
2018-09-24 20:47:15 +02:00
}
foreach ( $posts as $post ) {
$activitypub_post = new \Activitypub\Post( $post );
$activitypub_activity = new \Activitypub\Activity( 'Create', \Activitypub\Activity::TYPE_NONE );
$activitypub_activity->from_post( $activitypub_post->to_array() );
$json->orderedItems[] = $activitypub_activity->to_array(); // phpcs:ignore
2018-09-24 20:47:15 +02:00
}
// filter output
$json = apply_filters( 'activitypub_outbox_array', $json );
/*
* Action triggerd after the ActivityPub profile has been created and sent to the client
*/
do_action( 'activitypub_outbox_post' );
$response = new \WP_REST_Response( $json, 200 );
2018-09-24 20:47:15 +02:00
2018-09-27 22:27:49 +02:00
$response->header( 'Content-Type', 'application/activity+json' );
2018-09-24 20:47:15 +02:00
return $response;
}
public static function request_parameters() {
$params = array();
$params['page'] = array(
'type' => 'integer',
);
$params['id'] = array(
'required' => true,
'type' => 'integer',
);
2018-09-05 22:03:57 +02:00
2018-09-24 20:47:15 +02:00
return $params;
2018-09-05 22:03:57 +02:00
}
public static function send_post_activity( $post_id ) {
$post = get_post( $post_id );
$user_id = $post->post_author;
$activitypub_post = new \Activitypub\Post( $post );
$activitypub_activity = new \Activitypub\Activity( 'Create', \Activitypub\Activity::TYPE_FULL );
$activitypub_activity->from_post( $activitypub_post->to_array() );
$activity = $activitypub_activity->to_json(); // phpcs:ignore
$followers = \Activitypub\Db\Followers::get_followers( $user_id );
foreach ( \Activitypub\get_follower_inboxes( $user_id, $followers ) as $inbox ) {
$response = \Activitypub\safe_remote_post( $inbox, $activity, $user_id );
}
}
2019-02-17 21:10:53 +01:00
public static function send_update_activity( $post_id ) {
$post = get_post( $post_id );
$user_id = $post->post_author;
$activitypub_post = new \Activitypub\Post( $post );
$activitypub_activity = new \Activitypub\Activity( 'Update', \Activitypub\Activity::TYPE_FULL );
2019-02-17 21:10:53 +01:00
$activitypub_activity->from_post( $activitypub_post->to_array() );
$activity = $activitypub_activity->to_json(); // phpcs:ignore
$followers = \Activitypub\Db\Followers::get_followers( $user_id );
2019-02-17 21:10:53 +01:00
foreach ( \Activitypub\get_follower_inboxes( $user_id, $followers ) as $inbox ) {
$response = \Activitypub\safe_remote_post( $inbox, $activity, $user_id );
2019-02-17 21:10:53 +01:00
}
}
2018-09-05 22:03:57 +02:00
}