updated plugin ActivityPub version 8.3.0

This commit is contained in:
2026-06-03 21:28:46 +00:00
committed by Gitium
parent a4b78ec277
commit 6fe182458a
340 changed files with 43232 additions and 7568 deletions

View File

@ -8,8 +8,6 @@
namespace Activitypub\Rest;
use function Activitypub\get_masked_wp_version;
use function Activitypub\get_total_users;
use function Activitypub\get_active_users;
use function Activitypub\get_rest_url_by_path;
/**
@ -54,7 +52,7 @@ class Nodeinfo_Controller extends \WP_REST_Controller {
$this->namespace,
'/' . $this->rest_base . '/(?P<version>\d\.\d)',
array(
'args' => array(
'args' => array(
'version' => array(
'description' => 'The version of the NodeInfo schema.',
'type' => 'string',
@ -66,6 +64,7 @@ class Nodeinfo_Controller extends \WP_REST_Controller {
'callback' => array( $this, 'get_item' ),
'permission_callback' => '__return_true',
),
'schema' => array( $this, 'get_item_schema' ),
)
);
}
@ -93,6 +92,14 @@ class Nodeinfo_Controller extends \WP_REST_Controller {
'rel' => 'https://nodeinfo.diaspora.software/ns/schema/2.0',
'href' => get_rest_url_by_path( '/nodeinfo/2.0' ),
),
array(
'rel' => 'http://nodeinfo.diaspora.software/ns/schema/2.1',
'href' => get_rest_url_by_path( '/nodeinfo/2.1' ),
),
array(
'rel' => 'https://nodeinfo.diaspora.software/ns/schema/2.1',
'href' => get_rest_url_by_path( '/nodeinfo/2.1' ),
),
array(
'rel' => 'https://www.w3.org/ns/activitystreams#Application',
'href' => get_rest_url_by_path( 'application' ),
@ -121,7 +128,8 @@ class Nodeinfo_Controller extends \WP_REST_Controller {
switch ( $version ) {
case '2.0':
$response = $this->get_version_2_0();
case '2.1':
$response = $this->get_version_2_X( $version );
break;
default:
@ -135,31 +143,23 @@ class Nodeinfo_Controller extends \WP_REST_Controller {
/**
* Get the NodeInfo 2.0 data.
*
* @return array
* @param string $version The NodeInfo version.
*
* @return array The NodeInfo data.
*/
public function get_version_2_0() {
public function get_version_2_X( $version ) {
$posts = \wp_count_posts();
$comments = \wp_count_comments();
return array(
'version' => '2.0',
$nodeinfo = array(
'version' => $version,
'software' => array(
'name' => 'wordpress',
'version' => get_masked_wp_version(),
),
'protocols' => array( 'activitypub' ),
'services' => array(
'inbound' => array(),
'outbound' => array(),
),
'openRegistrations' => (bool) get_option( 'users_can_register' ),
'usage' => array(
'users' => array(
'total' => get_total_users(),
'activeHalfyear' => get_active_users( 6 ),
'activeMonth' => get_active_users(),
),
'localPosts' => $posts->publish,
'localPosts' => (int) $posts->publish,
'localComments' => $comments->approved,
),
'metadata' => array(
@ -168,5 +168,181 @@ class Nodeinfo_Controller extends \WP_REST_Controller {
'nodeIcon' => \get_site_icon_url(),
),
);
/**
* Filter the NodeInfo data.
*
* @param array $nodeinfo The NodeInfo data.
* @param string $version The NodeInfo version.
*/
return \apply_filters( 'nodeinfo_data', $nodeinfo, $version );
}
/**
* Retrieves the NodeInfo schema, conforming to JSON Schema.
*
* @return array NodeInfo schema data.
*/
public function get_item_schema() {
return array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
'title' => 'nodeinfo',
'type' => 'object',
'properties' => array(
'version' => array(
'description' => 'The version of the NodeInfo schema.',
'type' => 'string',
'enum' => array( '2.0', '2.1' ),
),
'software' => array(
'description' => 'Information about the software.',
'type' => 'object',
'properties' => array(
'name' => array(
'description' => 'The canonical name of this server software.',
'type' => 'string',
),
'version' => array(
'description' => 'The version of this server software.',
'type' => 'string',
),
'homepage' => array(
'description' => 'The url of the homepage of this server software.',
'type' => 'string',
'format' => 'uri',
),
'repository' => array(
'description' => 'The url of the source code repository of this server software.',
'type' => 'string',
'format' => 'uri',
),
),
),
'protocols' => array(
'description' => 'The protocols supported on this server.',
'type' => 'array',
'items' => array(
'type' => 'string',
'enum' => array(
'activitypub',
'buddycloud',
'dfrn',
'diaspora',
'libertree',
'ostatus',
'pumpio',
'tent',
'xmpp',
'zot',
),
),
),
'services' => array(
'description' => 'The third party sites this server can connect to via their application API.',
'type' => 'object',
'properties' => array(
'inbound' => array(
'description' => 'The third party sites this server can retrieve messages from for combined display with regular traffic.',
'type' => 'array',
'items' => array(
'type' => 'string',
'enum' => array(
'atom1.0',
'gnusocial',
'imap',
'pnut',
'pop3',
'pumpio',
'rss2.0',
'twitter',
),
),
),
'outbound' => array(
'description' => 'The third party sites this server can publish messages to on the behalf of a user.',
'type' => 'array',
'items' => array(
'type' => 'string',
'enum' => array(
'atom1.0',
'blogger',
'buddycloud',
'diaspora',
'dreamwidth',
'drupal',
'facebook',
'friendica',
'gnusocial',
'google',
'insanejournal',
'libertree',
'linkedin',
'livejournal',
'mediagoblin',
'myspace',
'pinterest',
'pnut',
'posterous',
'pumpio',
'redmatrix',
'rss2.0',
'smtp',
'tent',
'tumblr',
'twitter',
'wordpress',
'xmpp',
),
),
),
),
),
'openRegistrations' => array(
'description' => 'Whether this server allows open self-registration.',
'type' => 'boolean',
),
'usage' => array(
'description' => 'Usage statistics for this server.',
'type' => 'object',
'properties' => array(
'users' => array(
'description' => 'Statistics about the users of this server.',
'type' => 'object',
'properties' => array(
'total' => array(
'description' => 'The total amount of on this server registered users.',
'type' => 'integer',
'minimum' => 0,
),
'activeMonth' => array(
'description' => 'The amount of users that signed in at least once in the last 30 days.',
'type' => 'integer',
'minimum' => 0,
),
'activeHalfyear' => array(
'description' => 'The amount of users that signed in at least once in the last 180 days.',
'type' => 'integer',
'minimum' => 0,
),
),
),
'localPosts' => array(
'description' => 'The amount of posts that were made by users that are registered on this server.',
'type' => 'integer',
'minimum' => 0,
),
'localComments' => array(
'description' => 'The amount of comments that were made by users that are registered on this server.',
'type' => 'integer',
'minimum' => 0,
),
),
),
'metadata' => array(
'description' => 'Free form key value pairs for software specific values.',
'type' => 'object',
),
),
);
}
}