2018-09-27 22:27:23 +02:00
|
|
|
<?php
|
|
|
|
$post = get_post();
|
|
|
|
|
2019-02-24 12:07:41 +01:00
|
|
|
$activitypub_post = new \Activitypub\Post( $post );
|
2019-04-13 20:07:56 +02:00
|
|
|
$json = array_merge( array( '@context' => \Activitypub\get_context() ), $activitypub_post->to_array() );
|
2018-09-27 22:27:23 +02:00
|
|
|
|
|
|
|
// filter output
|
2019-04-13 20:07:56 +02:00
|
|
|
$json = apply_filters( 'activitypub_json_post_array', $json );
|
2018-09-27 22:27:23 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Action triggerd prior to the ActivityPub profile being created and sent to the client
|
|
|
|
*/
|
|
|
|
do_action( 'activitypub_json_post_pre' );
|
|
|
|
|
|
|
|
$options = 0;
|
|
|
|
// JSON_PRETTY_PRINT added in PHP 5.4
|
|
|
|
if ( get_query_var( 'pretty' ) ) {
|
|
|
|
$options |= JSON_PRETTY_PRINT; // phpcs:ignore
|
|
|
|
}
|
|
|
|
|
2019-02-03 00:44:01 +01:00
|
|
|
$options |= JSON_HEX_TAG | JSON_HEX_AMP | JSON_HEX_QUOT;
|
2019-02-02 23:56:05 +01:00
|
|
|
|
2018-09-27 22:27:23 +02:00
|
|
|
/*
|
|
|
|
* Options to be passed to json_encode()
|
|
|
|
*
|
|
|
|
* @param int $options The current options flags
|
|
|
|
*/
|
|
|
|
$options = apply_filters( 'activitypub_json_post_options', $options );
|
|
|
|
|
|
|
|
header( 'Content-Type: application/activity+json' );
|
|
|
|
echo wp_json_encode( $json, $options );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Action triggerd after the ActivityPub profile has been created and sent to the client
|
|
|
|
*/
|
|
|
|
do_action( 'activitypub_json_post_post' );
|