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

100 lines
2.1 KiB
PHP
Raw Normal View History

2018-12-08 00:02:18 +01:00
<?php
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
*/
class Followers {
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\Followers', 'register_routes' ) );
}
2018-12-08 00:02:18 +01:00
/**
* Register routes
*/
public static function register_routes() {
register_rest_route(
'activitypub/1.0', '/users/(?P<id>\d+)/followers', array(
array(
'methods' => \WP_REST_Server::READABLE,
'callback' => array( '\Activitypub\Rest\Followers', 'get' ),
2018-12-08 00:02:18 +01:00
'args' => self::request_parameters(),
),
)
);
}
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 ) {
$user_id = $request->get_param( 'id' );
$user = get_user_by( 'ID', $user_id );
2018-12-08 00:02:18 +01:00
if ( ! $user ) {
return new \WP_Error( 'rest_invalid_param', __( 'User not found', 'activitypub' ), array(
'status' => 404,
'params' => array(
'user_id' => __( 'User not found', 'activitypub' ),
),
2018-12-08 00:02:18 +01:00
) );
}
$page = $request->get_param( 'page', 0 );
/*
* Action triggerd prior to the ActivityPub profile being created and sent to the client
*/
do_action( 'activitypub_outbox_pre' );
$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
$followers = \Activitypub\Db\Followers::get_followers( $user_id );
2018-12-08 00:02:18 +01:00
if ( ! is_array( $followers ) ) {
$followers = array();
}
$json->totlaItems = count( $followers ); // phpcs:ignore
$json->orderedItems = $followers; // phpcs:ignore
2018-12-08 00:02:18 +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',
);
$params['id'] = array(
'required' => true,
'type' => 'integer',
);
return $params;
}
}