some cleanups and refactorings
This commit is contained in:
parent
24034cacf3
commit
1a0777a06f
1 changed files with 35 additions and 38 deletions
|
@ -32,7 +32,7 @@ class Activitypub_Outbox {
|
||||||
) );
|
) );
|
||||||
}
|
}
|
||||||
|
|
||||||
$page = $request->get_param( 'page', 0 );
|
$page = $request->get_param( 'page' );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Action triggerd prior to the ActivityPub profile being created and sent to the client
|
* Action triggerd prior to the ActivityPub profile being created and sent to the client
|
||||||
|
@ -44,15 +44,42 @@ class Activitypub_Outbox {
|
||||||
$json->{'@context'} = array(
|
$json->{'@context'} = array(
|
||||||
'https://www.w3.org/ns/activitystreams',
|
'https://www.w3.org/ns/activitystreams',
|
||||||
'https://w3id.org/security/v1',
|
'https://w3id.org/security/v1',
|
||||||
|
array(
|
||||||
|
'manuallyApprovesFollowers' => 'as:manuallyApprovesFollowers',
|
||||||
|
'sensitive' => 'as:sensitive',
|
||||||
|
'movedTo' => array(
|
||||||
|
'@id' => 'as:movedTo',
|
||||||
|
'@type' => '@id',
|
||||||
|
),
|
||||||
|
'Hashtag' => 'as:Hashtag',
|
||||||
|
'ostatus' => 'http://ostatus.org#',
|
||||||
|
'atomUri' => 'ostatus:atomUri',
|
||||||
|
'inReplyToAtomUri' => 'ostatus:inReplyToAtomUri',
|
||||||
|
'conversation' => 'ostatus:conversation',
|
||||||
|
'toot' => 'http://joinmastodon.org/ns#',
|
||||||
|
'Emoji' => 'toot:Emoji',
|
||||||
|
'focalPoint' => array(
|
||||||
|
'@container' => '@list',
|
||||||
|
'@id' => 'toot:focalPoint',
|
||||||
|
),
|
||||||
|
'featured' => array(
|
||||||
|
'@id' => 'toot:featured',
|
||||||
|
'@type' => '@id',
|
||||||
|
),
|
||||||
|
'schema' => 'http://schema.org#',
|
||||||
|
'PropertyValue' => 'schema:PropertyValue',
|
||||||
|
'value' => 'schema:value',
|
||||||
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
$json->generator = 'http://wordpress.org/?v=' . get_bloginfo_rss( 'version' );
|
$json->id = home_url( add_query_arg( NULL, NULL ) );
|
||||||
$json->actor = get_author_posts_url( $author_id );
|
$json->generator = 'http://wordpress.org/?v=' . get_bloginfo_rss( 'version' );
|
||||||
$json->type = 'OrderedCollectionPage';
|
$json->actor = get_author_posts_url( $author_id );
|
||||||
$json->partOf = get_rest_url( null, "/activitypub/1.0/users/$author_id/outbox" ); // phpcs:ignore
|
$json->type = 'OrderedCollectionPage';
|
||||||
|
$json->partOf = get_rest_url( null, "/activitypub/1.0/users/$author_id/outbox" ); // phpcs:ignore
|
||||||
|
|
||||||
$count_posts = wp_count_posts();
|
$count_posts = wp_count_posts();
|
||||||
$json->totalItems = $count_posts->publish;
|
$json->totalItems = intval( $count_posts->publish );
|
||||||
|
|
||||||
$posts = get_posts( array(
|
$posts = get_posts( array(
|
||||||
'author' => $author_id,
|
'author' => $author_id,
|
||||||
|
@ -80,41 +107,11 @@ class Activitypub_Outbox {
|
||||||
|
|
||||||
$response = new WP_REST_Response( $json, 200 );
|
$response = new WP_REST_Response( $json, 200 );
|
||||||
|
|
||||||
$response->header( 'Content-Type', 'application/activity-json' );
|
$response->header( 'Content-Type', 'application/activity+json' );
|
||||||
|
|
||||||
return $response;
|
return $response;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function post_to_json( $post ) {
|
|
||||||
$json = new stdClass();
|
|
||||||
|
|
||||||
$json->published = date( 'Y-m-d\TH:i:s\Z', strtotime( $post->post_date ) );
|
|
||||||
$json->id = $post->guid . '&activitypub';
|
|
||||||
$json->type = 'Create';
|
|
||||||
$json->actor = get_author_posts_url( $post->post_author );
|
|
||||||
$json->to = array( 'https://www.w3.org/ns/activitystreams#Public' );
|
|
||||||
$json->cc = array( 'https://www.w3.org/ns/activitystreams#Public' );
|
|
||||||
|
|
||||||
$json->object = array(
|
|
||||||
'id' => $post->guid,
|
|
||||||
'type' => 'Note',
|
|
||||||
'published' => date( 'Y-m-d\TH:i:s\Z', strtotime( $post->post_date ) ),
|
|
||||||
'to' => array( 'https://www.w3.org/ns/activitystreams#Public' ),
|
|
||||||
'cc' => array( 'https://www.w3.org/ns/activitystreams#Public' ),
|
|
||||||
'summary' => null,
|
|
||||||
'inReplyTo' => null,
|
|
||||||
'content' => esc_html( $post->post_content ),
|
|
||||||
'contentMap' => array(
|
|
||||||
strstr( get_locale(), '_', true ) => $post->post_content,
|
|
||||||
),
|
|
||||||
'attachment' => array(),
|
|
||||||
'tag' => array(),
|
|
||||||
);
|
|
||||||
|
|
||||||
return $json;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public static function request_parameters() {
|
public static function request_parameters() {
|
||||||
$params = array();
|
$params = array();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue