2018-09-27 22:27:23 +02:00
|
|
|
<?php
|
2022-12-02 20:44:56 +01:00
|
|
|
// phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
|
2019-09-27 11:36:52 +02:00
|
|
|
$post = \get_post();
|
2018-09-27 22:27:23 +02:00
|
|
|
|
2023-07-03 17:59:42 +02:00
|
|
|
$object = new \Activitypub\Transformer\Post( $post );
|
|
|
|
$json = \array_merge( array( '@context' => \Activitypub\get_context() ), $object->to_object()->to_array() );
|
2018-09-27 22:27:23 +02:00
|
|
|
|
|
|
|
// filter output
|
2019-09-27 11:36:52 +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
|
|
|
|
*/
|
2019-09-27 11:36:52 +02:00
|
|
|
\do_action( 'activitypub_json_post_pre' );
|
2018-09-27 22:27:23 +02:00
|
|
|
|
|
|
|
$options = 0;
|
|
|
|
// JSON_PRETTY_PRINT added in PHP 5.4
|
2019-09-27 11:36:52 +02:00
|
|
|
if ( \get_query_var( 'pretty' ) ) {
|
2020-05-12 19:42:09 +02:00
|
|
|
$options |= \JSON_PRETTY_PRINT; // phpcs:ignore
|
2018-09-27 22:27:23 +02:00
|
|
|
}
|
|
|
|
|
2020-05-12 19:42:09 +02: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
|
|
|
|
*/
|
2019-09-27 11:36:52 +02:00
|
|
|
$options = \apply_filters( 'activitypub_json_post_options', $options );
|
2018-09-27 22:27:23 +02:00
|
|
|
|
2019-09-27 11:36:52 +02:00
|
|
|
\header( 'Content-Type: application/activity+json' );
|
|
|
|
echo \wp_json_encode( $json, $options );
|
2018-09-27 22:27:23 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Action triggerd after the ActivityPub profile has been created and sent to the client
|
|
|
|
*/
|
2019-09-27 11:36:52 +02:00
|
|
|
\do_action( 'activitypub_json_post_post' );
|