wordpress-activitypub/includes/class-rest-activitypub-followers.php
Matthias Pfefferle 4e653f5f75 0.1.0
* added basic WebFinger support
* added basic NodeInfo support
* fully functional "follow" activity
* send new posts to your followers
* receive comments from your followers
2018-12-20 11:33:08 +01:00

76 lines
1.6 KiB
PHP

<?php
class Rest_Activitypub_Followers {
/**
* 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( 'Rest_Activitypub_Followers', 'get' ),
'args' => self::request_parameters(),
),
)
);
}
public static function get( $request ) {
$user_id = $request->get_param( 'id' );
$user = get_user_by( 'ID', $user_id );
if ( ! $user ) {
return new WP_Error( 'rest_invalid_param', __( 'User not found', 'activitypub' ), array(
'status' => 404, 'params' => array(
'user_id' => __( 'User not found', 'activitypub' )
)
) );
}
$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();
$json->{'@context'} = get_activitypub_context();
$followers = Db_Activitypub_Followers::get_followers( $user_id );
if ( ! is_array( $followers ) ) {
$followers = array();
}
$json->totlaItems = count( $followers );
$json->orderedItems = $followers;
$response = new WP_REST_Response( $json, 200 );
$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;
}
}