2022-11-15 20:36:24 +01:00
|
|
|
<?php
|
|
|
|
namespace Activitypub;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Comments Class
|
|
|
|
*
|
2023-10-01 20:18:01 +02:00
|
|
|
* @author Django Doucet
|
2022-11-15 20:36:24 +01:00
|
|
|
*/
|
|
|
|
class Comments {
|
|
|
|
/**
|
|
|
|
* Initialize the class, registering WordPress hooks.
|
|
|
|
*/
|
|
|
|
public static function init() {
|
|
|
|
|
2023-10-01 20:18:01 +02:00
|
|
|
\add_filter( 'preprocess_comment', array( self::class, 'preprocess_comment' ) );
|
|
|
|
\add_filter( 'comment_excerpt', array( self::class, 'comment_excerpt' ), 10, 3 );
|
|
|
|
\add_filter( 'comment_text', array( self::class, 'comment_content_filter' ), 10, 3 );
|
|
|
|
\add_filter( 'comment_post', array( self::class, 'postprocess_comment' ), 10, 3 );
|
|
|
|
\add_action( 'edit_comment', array( self::class, 'edit_comment' ), 20, 2 ); //schedule_admin_comment_activity
|
2022-11-15 20:36:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* preprocess local comments for federated replies
|
|
|
|
*/
|
|
|
|
public static function preprocess_comment( $commentdata ) {
|
2023-01-30 05:44:15 +01:00
|
|
|
// only process replies from authorized local actors, for ap enabled post types
|
2023-10-01 20:18:01 +02:00
|
|
|
if ( 0 === $commentdata['user_id'] ) {
|
2023-02-07 06:43:39 +01:00
|
|
|
return $commentdata;
|
|
|
|
}
|
2022-12-10 21:36:49 +01:00
|
|
|
$user = \get_userdata( $commentdata['user_id'] );
|
2023-03-10 23:23:08 +01:00
|
|
|
$comment_parent_post = \get_post_type( $commentdata['comment_post_ID'] );
|
2023-01-30 05:44:15 +01:00
|
|
|
$post_types = \get_option( 'activitypub_support_post_types', array( 'post', 'page' ) );
|
|
|
|
|
2023-03-10 23:23:08 +01:00
|
|
|
if ( $user->has_cap( 'publish_post', $commentdata['comment_post_ID'] ) && \in_array( $comment_parent_post, $post_types, true ) ) {
|
2023-01-30 05:44:15 +01:00
|
|
|
$commentdata['comment_meta']['protocol'] = 'activitypub';
|
2022-11-15 20:36:24 +01:00
|
|
|
}
|
|
|
|
return $commentdata;
|
|
|
|
}
|
|
|
|
|
2023-03-10 16:43:03 +01:00
|
|
|
/**
|
2023-03-10 23:48:09 +01:00
|
|
|
* Filters the comment text to display webfinger in the Recently Published Dashboard Widget.
|
2023-03-11 01:11:59 +01:00
|
|
|
* comment_excerpt( $comment_excerpt, $comment_id )
|
2023-03-10 16:43:03 +01:00
|
|
|
*
|
2023-03-10 23:48:09 +01:00
|
|
|
* doesn't work on received webfinger links as get_comment_excerpt strips tags
|
|
|
|
* https://developer.wordpress.org/reference/functions/get_comment_excerpt/
|
2023-03-10 16:43:03 +01:00
|
|
|
* @param string $comment_text
|
2023-03-11 01:11:59 +01:00
|
|
|
* @param int $comment_id
|
2023-03-10 16:43:03 +01:00
|
|
|
* @param array $args
|
|
|
|
* @return void
|
|
|
|
*/
|
2023-03-11 01:11:59 +01:00
|
|
|
public static function comment_excerpt( $comment_excerpt, $comment_id ) {
|
|
|
|
$comment = get_comment( $comment_id );
|
2023-03-10 16:43:03 +01:00
|
|
|
$comment_excerpt = \apply_filters( 'the_content', $comment_excerpt, $comment );
|
|
|
|
return $comment_excerpt;
|
|
|
|
}
|
|
|
|
|
2023-01-30 05:44:15 +01:00
|
|
|
/**
|
|
|
|
* comment_text( $comment )
|
|
|
|
* Filters the comment text for display.
|
|
|
|
*
|
|
|
|
* @param string $comment_text
|
|
|
|
* @param WP_Comment $comment
|
|
|
|
* @param array $args
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function comment_content_filter( $comment_text, $comment, $args ) {
|
2023-03-10 23:26:25 +01:00
|
|
|
$comment_text = \apply_filters( 'the_content', $comment_text, $comment );
|
2023-01-30 05:52:19 +01:00
|
|
|
$protocol = \get_comment_meta( $comment->comment_ID, 'protocol', true );
|
2023-01-30 05:44:15 +01:00
|
|
|
// TODO Test if this is returned by Model/Comment
|
|
|
|
if ( 'activitypub' === $protocol ) {
|
2023-10-06 16:33:54 +02:00
|
|
|
$updated = \get_comment_meta( $comment->comment_ID, 'activitypub_last_modified', true );
|
2023-01-30 05:44:15 +01:00
|
|
|
if ( $updated ) {
|
2023-03-11 01:11:59 +01:00
|
|
|
$format = get_option( 'date_format' ) . ' ' . get_option( 'time_format' );
|
|
|
|
$formatted_datetime = \date_i18n( $format, \strtotime( $updated ) );
|
|
|
|
$iso_date = \wp_date( 'c', \strtotime( $updated ) );
|
|
|
|
$i18n_text = sprintf(
|
|
|
|
/* translators: %s: Displays comment last modified date and time */
|
|
|
|
__( '(Last edited on %s)', 'activitypub' ),
|
|
|
|
"<time class='modified' datetime='{$iso_date}'>$formatted_datetime</time>"
|
|
|
|
);
|
|
|
|
$comment_text .= "<small>$i18n_text<small>";
|
2023-01-30 05:44:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $comment_text;
|
|
|
|
}
|
|
|
|
|
2022-11-15 20:36:24 +01:00
|
|
|
/**
|
|
|
|
* comment_post()
|
|
|
|
* postprocess_comment for federating replies and inbox-forwarding
|
|
|
|
*/
|
|
|
|
public static function postprocess_comment( $comment_id, $comment_approved, $commentdata ) {
|
2023-01-30 05:44:15 +01:00
|
|
|
//Administrator role users comments bypass transition_comment_status (auto approved)
|
2022-11-15 20:36:24 +01:00
|
|
|
$user = \get_userdata( $commentdata['user_id'] );
|
2022-12-10 21:36:49 +01:00
|
|
|
if (
|
|
|
|
( 1 === $comment_approved ) &&
|
|
|
|
\in_array( 'administrator', $user->roles )
|
|
|
|
) {
|
2023-10-27 22:44:47 +02:00
|
|
|
// Only needed for Admins (because of transition bypass)
|
2023-10-01 20:18:01 +02:00
|
|
|
$wp_comment = \get_comment( $comment_id );
|
2023-10-27 22:44:47 +02:00
|
|
|
\wp_schedule_single_event( \time(), 'activitypub_send_activity', array( $wp_comment, 'Create' ) );
|
2022-11-15 20:36:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* edit_comment()
|
|
|
|
*
|
|
|
|
* Fires immediately after a comment is updated in the database.
|
|
|
|
* Fires immediately before comment status transition hooks are fired. (useful only for admin)
|
|
|
|
*/
|
2023-10-01 20:18:01 +02:00
|
|
|
public static function edit_comment( $comment_id, $commentdata ) {
|
2023-10-06 16:33:54 +02:00
|
|
|
update_comment_meta( $comment_id, 'activitypub_last_modified', \wp_date( 'Y-m-d H:i:s' ) );
|
2023-10-01 20:18:01 +02:00
|
|
|
$user = \get_userdata( $commentdata['user_id'] );
|
2023-03-10 23:38:52 +01:00
|
|
|
if ( \in_array( 'administrator', $user->roles ) ) {
|
2023-10-01 20:18:01 +02:00
|
|
|
$wp_comment = \get_comment( $comment_id );
|
2023-10-27 22:44:47 +02:00
|
|
|
\wp_schedule_single_event( \time(), 'activitypub_send_activity', array( $wp_comment, 'Update' ) );
|
|
|
|
}
|
|
|
|
}
|
2022-11-15 20:36:24 +01:00
|
|
|
}
|