| 1 |
<?php |
| 2 |
// phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited |
| 3 |
$post = \get_post(); |
| 4 |
$transformer = \Activitypub\Transformer\Factory::get_transformer( $post ); |
| 5 |
|
| 6 |
if ( \is_wp_error( $transformer ) ) { |
| 7 |
\wp_die( |
| 8 |
esc_html( $transformer->get_error_message() ), |
| 9 |
404 |
| 10 |
); |
| 11 |
} |
| 12 |
|
| 13 |
|
| 14 |
/* |
| 15 |
* Action triggerd prior to the ActivityPub profile being created and sent to the client |
| 16 |
*/ |
| 17 |
\do_action( 'activitypub_json_post_pre' ); |
| 18 |
|
| 19 |
\header( 'Content-Type: application/activity+json' ); |
| 20 |
echo $transformer->to_object()->to_json(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 21 |
|
| 22 |
/* |
| 23 |
* Action triggerd after the ActivityPub profile has been created and sent to the client |
| 24 |
*/ |
| 25 |
\do_action( 'activitypub_json_post_post' ); |
| 26 |
|