__( 'Processed', 'activitypub' ),
);
}
/**
* Add action links to Stream drop row in admin list screen
*
* @filter wp_stream_action_links_{connector}
*
* @param array $links Previous links registered.
* @param Record $record Stream record.
*
* @return array Action links
*/
public function action_links( $links, $record ) {
if ( 'processed' === $record->action ) {
$error = json_decode( $record->get_meta( 'error', true ), true );
if ( $error ) {
$message = sprintf(
'%1$s
%2$s
',
__( 'Inbox Error', 'activitypub' ),
wp_json_encode( $error )
);
$links[ $message ] = '';
}
$debug = json_decode( $record->get_meta( 'debug', true ), true );
if ( $debug ) {
$message = sprintf(
'%1$s
%2$s
',
__( 'Debug', 'activitypub' ),
wp_json_encode( $debug )
);
$links[ $message ] = '';
}
}
return $links;
}
/**
* Callback for activitypub_notification_follow.
*
* @param \Activitypub\Notification $notification The notification object.
*/
public function callback_activitypub_notification_follow( $notification ) {
$this->log(
sprintf(
// translators: %s is a URL.
__( 'New Follower: %s', 'activitypub' ),
$notification->actor
),
array(
'notification' => \wp_json_encode( $notification, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE ),
),
null,
'notification',
$notification->type,
$notification->target
);
}
/**
* Callback for activitypub_outbox_processing_complete.
*
* @param array $inboxes The inboxes.
* @param string $json The ActivityPub Activity JSON.
* @param int $actor_id The actor ID.
* @param int $outbox_item_id The Outbox item ID.
*/
public function callback_activitypub_outbox_processing_complete( $inboxes, $json, $actor_id, $outbox_item_id ) {
$outbox_item = \get_post( $outbox_item_id );
$outbox_data = $this->prepare_outbox_data_for_response( $outbox_item );
$this->log(
sprintf(
// translators: %s is a URL.
__( 'Outbox processing complete: %s', 'activitypub' ),
$outbox_data['title']
),
array(
'debug' => wp_json_encode(
array(
'actor_id' => $actor_id,
'outbox_item_id' => $outbox_item_id,
)
),
),
$outbox_data['id'],
$outbox_data['type'],
'processed'
);
}
/**
* Callback for activitypub_outbox_processing_batch_complete.
*
* @param array $inboxes The inboxes.
* @param string $json The ActivityPub Activity JSON.
* @param int $actor_id The actor ID.
* @param int $outbox_item_id The Outbox item ID.
* @param int $batch_size The batch size.
* @param int $offset The offset.
*/
public function callback_activitypub_outbox_processing_batch_complete( $inboxes, $json, $actor_id, $outbox_item_id, $batch_size, $offset ) {
$outbox_item = \get_post( $outbox_item_id );
$outbox_data = $this->prepare_outbox_data_for_response( $outbox_item );
$this->log(
sprintf(
// translators: %s is a URL.
__( 'Outbox processing batch complete: %s', 'activitypub' ),
$outbox_data['title']
),
array(
'debug' => wp_json_encode(
array(
'actor_id' => $actor_id,
'outbox_item_id' => $outbox_item_id,
'batch_size' => $batch_size,
'offset' => $offset,
)
),
),
$outbox_data['id'],
$outbox_data['type'],
'processed'
);
}
/**
* Get the title of the outbox object.
*
* @param \WP_Post $outbox_item The outbox item.
*
* @return array The title, object ID, and object type of the outbox object.
*/
protected function prepare_outbox_data_for_response( $outbox_item ) {
$object_id = $outbox_item->ID;
$object_type = $outbox_item->post_type;
$object_title = $outbox_item->post_title;
$post_id = url_to_postid( $outbox_item->post_title );
if ( $post_id ) {
$post = get_post( $post_id );
$object_id = $post_id;
$object_type = $post->post_type;
$object_title = $post->post_title;
} else {
$comment_id = url_to_commentid( $outbox_item->post_title );
if ( $comment_id ) {
$comment = get_comment( $comment_id );
$object_id = $comment_id;
$object_type = 'comments';
$object_title = $comment->comment_content;
} else {
$author_id = url_to_authorid( $outbox_item->post_title );
if ( null !== $author_id ) {
$object_id = $author_id;
$object_type = 'profiles';
if ( $author_id ) {
$object_title = get_userdata( $author_id )->display_name;
} elseif ( Actors::BLOG_USER_ID === $author_id ) {
$object_title = __( 'Blog User', 'activitypub' );
} elseif ( Actors::APPLICATION_USER_ID === $author_id ) {
$object_title = __( 'Application User', 'activitypub' );
}
}
}
}
return array(
'id' => $object_id,
'type' => $object_type,
'title' => $object_title,
);
}
}