[\w\-\.]+)/following', array( array( 'methods' => \WP_REST_Server::READABLE, 'callback' => array( self::class, 'get' ), 'args' => self::request_parameters(), 'permission_callback' => '__return_true', ), ) ); } /** * Handle GET request * * @param WP_REST_Request $request * * @return WP_REST_Response */ public static function get( $request ) { $user_id = $request->get_param( 'user_id' ); $user = User_Collection::get_by_various( $user_id ); if ( is_wp_error( $user ) ) { return $user; } /* * Action triggerd prior to the ActivityPub profile being created and sent to the client */ \do_action( 'activitypub_rest_following_pre' ); $json = new \stdClass(); $json->{'@context'} = \Activitypub\get_context(); $json->id = get_rest_url_by_path( sprintf( 'users/%d/following', $user->get__id() ) ); $json->generator = 'http://wordpress.org/?v=' . \get_bloginfo_rss( 'version' ); $json->actor = $user->get_id(); $json->type = 'OrderedCollectionPage'; $json->partOf = get_rest_url_by_path( sprintf( 'users/%d/following', $user->get__id() ) ); // phpcs:ignore $items = apply_filters( 'activitypub_rest_following', array(), $user ); // phpcs:ignore $json->totalItems = is_countable( $items ) ? count( $items ) : 0; // phpcs:ignore $json->orderedItems = $items; // phpcs:ignore $json->first = $json->partOf; // phpcs:ignore $rest_response = new WP_REST_Response( $json, 200 ); $rest_response->header( 'Content-Type', 'application/activity+json; charset=' . get_option( 'blog_charset' ) ); return $rest_response; } /** * The supported parameters * * @return array list of parameters */ public static function request_parameters() { $params = array(); $params['page'] = array( 'type' => 'integer', ); $params['user_id'] = array( 'required' => true, 'type' => 'string', ); return $params; } /** * Add the Blog Authors to the following list of the Blog Actor * if Blog not in single mode. * * @param array $array The array of following urls. * @param User $user The user object. * * @return array The array of following urls. */ public static function default_following( $array, $user ) { if ( 0 !== $user->get__id() || is_single_user() ) { return $array; } $users = User_Collection::get_collection(); foreach ( $users as $user ) { $array[] = $user->get_url(); } return $array; } }