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

130 lines
3.3 KiB
PHP
Raw Normal View History

2018-09-05 22:03:57 +02:00
<?php
/**
* ActivityPub Outbox Class
*
* @author Matthias Pfefferle
*/
class Activitypub_Outbox {
/**
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_Outbox', 'get' ),
2018-09-24 20:47:15 +02:00
'args' => self::request_parameters(),
2018-09-05 22:03:57 +02:00
),
)
);
}
public static function get( $request ) {
2018-09-24 20:47:15 +02:00
$author_id = $request->get_param( 'id' );
$author = get_user_by( 'ID', $author_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-27 22:27:49 +02:00
$page = $request->get_param( 'page' );
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();
$json->{'@context'} = array(
2018-09-05 22:03:57 +02:00
'https://www.w3.org/ns/activitystreams',
'https://w3id.org/security/v1',
2018-09-27 22:27:49 +02:00
array(
'manuallyApprovesFollowers' => 'as:manuallyApprovesFollowers',
'sensitive' => 'as:sensitive',
'movedTo' => array(
'@id' => 'as:movedTo',
'@type' => '@id',
),
'Hashtag' => 'as:Hashtag',
'ostatus' => 'http://ostatus.org#',
'atomUri' => 'ostatus:atomUri',
'inReplyToAtomUri' => 'ostatus:inReplyToAtomUri',
'conversation' => 'ostatus:conversation',
'toot' => 'http://joinmastodon.org/ns#',
'Emoji' => 'toot:Emoji',
'focalPoint' => array(
'@container' => '@list',
'@id' => 'toot:focalPoint',
),
'featured' => array(
'@id' => 'toot:featured',
'@type' => '@id',
),
'schema' => 'http://schema.org#',
'PropertyValue' => 'schema:PropertyValue',
'value' => 'schema:value',
),
2018-09-05 22:03:57 +02:00
);
2018-09-27 22:27:49 +02:00
$json->id = home_url( add_query_arg( NULL, NULL ) );
$json->generator = 'http://wordpress.org/?v=' . get_bloginfo_rss( 'version' );
$json->actor = get_author_posts_url( $author_id );
$json->type = 'OrderedCollectionPage';
$json->partOf = get_rest_url( null, "/activitypub/1.0/users/$author_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 );
2018-09-24 20:47:15 +02:00
$posts = get_posts( array(
'author' => $author_id,
'offset' => $page,
) );
$json->first = add_query_arg( 'page', 0, $json->partOf );
2018-09-24 23:45:11 +02:00
$json->last = add_query_arg( 'page', ( ceil ( $json->totalItems / 10 ) ) - 1, $json->partOf );
if ( ( ceil ( $json->totalItems / 10 ) ) - 1 > $page ) {
2018-09-24 20:47:15 +02:00
$json->next = add_query_arg( 'page', ++$page, $json->partOf );
}
foreach ( $posts as $post ) {
$json->orderedItems[] = self::post_to_json( $post ); // phpcs:ignore
}
// 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-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
}
}