2018-12-08 00:02:18 +01:00
|
|
|
<?php
|
2019-02-24 12:07:41 +01:00
|
|
|
namespace Activitypub\Rest;
|
|
|
|
|
2019-02-24 13:01:28 +01:00
|
|
|
/**
|
|
|
|
* ActivityPub Followers REST-Class
|
|
|
|
*
|
|
|
|
* @author Matthias Pfefferle
|
|
|
|
*
|
|
|
|
* @see https://www.w3.org/TR/activitypub/#followers
|
|
|
|
*/
|
2019-02-24 12:07:41 +01:00
|
|
|
class Followers {
|
2019-02-24 13:01:28 +01:00
|
|
|
/**
|
|
|
|
* Initialize the class, registering WordPress hooks
|
|
|
|
*/
|
2019-02-24 12:07:41 +01:00
|
|
|
public static function init() {
|
2019-09-27 10:12:59 +02:00
|
|
|
\add_action( 'rest_api_init', array( '\Activitypub\Rest\Followers', 'register_routes' ) );
|
2019-02-24 12:07:41 +01:00
|
|
|
}
|
2018-12-08 00:02:18 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register routes
|
|
|
|
*/
|
|
|
|
public static function register_routes() {
|
2019-09-27 10:12:59 +02:00
|
|
|
\register_rest_route(
|
2021-01-03 20:40:53 +01:00
|
|
|
'activitypub/1.0', '/users/(?P<user_id>\d+)/followers', array(
|
2018-12-08 00:02:18 +01:00
|
|
|
array(
|
2020-09-18 16:36:09 +02:00
|
|
|
'methods' => \WP_REST_Server::READABLE,
|
|
|
|
'callback' => array( '\Activitypub\Rest\Followers', 'get' ),
|
|
|
|
'args' => self::request_parameters(),
|
|
|
|
'permission_callback' => '__return_true',
|
2018-12-08 00:02:18 +01:00
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-02-28 19:31:55 +01:00
|
|
|
/**
|
|
|
|
* Handle GET request
|
|
|
|
*
|
|
|
|
* @param WP_REST_Request $request
|
|
|
|
*
|
|
|
|
* @return WP_REST_Response
|
|
|
|
*/
|
2018-12-08 00:02:18 +01:00
|
|
|
public static function get( $request ) {
|
2021-01-03 20:40:53 +01:00
|
|
|
$user_id = $request->get_param( 'user_id' );
|
2019-09-27 10:12:59 +02:00
|
|
|
$user = \get_user_by( 'ID', $user_id );
|
2018-12-08 00:02:18 +01:00
|
|
|
|
2018-12-20 11:33:08 +01:00
|
|
|
if ( ! $user ) {
|
2019-09-27 10:12:59 +02:00
|
|
|
return new \WP_Error( 'rest_invalid_param', \__( 'User not found', 'activitypub' ), array(
|
2019-02-24 12:07:41 +01:00
|
|
|
'status' => 404,
|
|
|
|
'params' => array(
|
2019-09-27 10:12:59 +02:00
|
|
|
'user_id' => \__( 'User not found', 'activitypub' ),
|
2019-02-24 12:07:41 +01:00
|
|
|
),
|
2018-12-08 00:02:18 +01:00
|
|
|
) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Action triggerd prior to the ActivityPub profile being created and sent to the client
|
|
|
|
*/
|
2019-09-27 10:12:59 +02:00
|
|
|
\do_action( 'activitypub_outbox_pre' );
|
2018-12-08 00:02:18 +01:00
|
|
|
|
2019-02-24 12:07:41 +01:00
|
|
|
$json = new \stdClass();
|
2018-12-08 00:02:18 +01:00
|
|
|
|
2019-02-24 12:21:25 +01:00
|
|
|
$json->{'@context'} = \Activitypub\get_context();
|
2018-12-08 00:02:18 +01:00
|
|
|
|
2021-01-05 21:56:38 +01: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( $user_id );
|
|
|
|
$json->type = 'OrderedCollectionPage';
|
|
|
|
|
2019-09-27 10:12:59 +02:00
|
|
|
$json->partOf = \get_rest_url( null, "/activitypub/1.0/users/$user_id/followers" ); // phpcs:ignore
|
2019-03-12 22:19:51 +01:00
|
|
|
$json->totalItems = \Activitypub\count_followers( $user_id ); // phpcs:ignore
|
2019-11-18 20:57:00 +01:00
|
|
|
$json->orderedItems = \Activitypub\Peer\Followers::get_followers( $user_id ); // phpcs:ignore
|
2018-12-08 00:02:18 +01:00
|
|
|
|
2019-03-09 01:23:10 +01:00
|
|
|
$json->first = $json->partOf; // phpcs:ignore
|
|
|
|
|
2019-09-27 10:12:59 +02:00
|
|
|
$json->first = \get_rest_url( null, "/activitypub/1.0/users/$user_id/followers" );
|
2019-03-09 01:23:10 +01:00
|
|
|
|
2019-02-24 12:07:41 +01:00
|
|
|
$response = new \WP_REST_Response( $json, 200 );
|
2018-12-08 00:02:18 +01:00
|
|
|
$response->header( 'Content-Type', 'application/activity+json' );
|
|
|
|
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The supported parameters
|
|
|
|
*
|
|
|
|
* @return array list of parameters
|
|
|
|
*/
|
|
|
|
public static function request_parameters() {
|
|
|
|
$params = array();
|
|
|
|
|
|
|
|
$params['page'] = array(
|
|
|
|
'type' => 'integer',
|
|
|
|
);
|
|
|
|
|
2021-01-03 20:40:53 +01:00
|
|
|
$params['user_id'] = array(
|
2018-12-08 00:02:18 +01:00
|
|
|
'required' => true,
|
|
|
|
'type' => 'integer',
|
|
|
|
);
|
|
|
|
|
|
|
|
return $params;
|
|
|
|
}
|
|
|
|
}
|