updated plugin ActivityPub version 8.3.0
This commit is contained in:
@ -7,15 +7,17 @@
|
||||
|
||||
namespace Activitypub\Collection;
|
||||
|
||||
use Activitypub\Comment;
|
||||
use Activitypub\Emoji;
|
||||
use Activitypub\Webfinger;
|
||||
use WP_Comment_Query;
|
||||
use Activitypub\Comment;
|
||||
|
||||
use function Activitypub\object_to_uri;
|
||||
use function Activitypub\is_post_disabled;
|
||||
use function Activitypub\url_to_commentid;
|
||||
use function Activitypub\object_id_to_comment;
|
||||
use function Activitypub\get_remote_metadata_by_actor;
|
||||
use function Activitypub\is_ap_post;
|
||||
use function Activitypub\is_post_disabled;
|
||||
use function Activitypub\object_id_to_comment;
|
||||
use function Activitypub\object_to_uri;
|
||||
use function Activitypub\url_to_commentid;
|
||||
|
||||
/**
|
||||
* ActivityPub Interactions Collection.
|
||||
@ -27,36 +29,73 @@ class Interactions {
|
||||
/**
|
||||
* Add a comment to a post.
|
||||
*
|
||||
* @param array $activity The activity-object.
|
||||
* When $user_id is provided, comment author data is built from the
|
||||
* local WordPress user instead of fetching remote actor metadata.
|
||||
*
|
||||
* @param array $activity The activity-object.
|
||||
* @param int|null $user_id Optional. Local user ID for outbox replies.
|
||||
*
|
||||
* @return int|false|\WP_Error The comment ID or false or WP_Error on failure.
|
||||
*/
|
||||
public static function add_comment( $activity ) {
|
||||
$commentdata = self::activity_to_comment( $activity );
|
||||
public static function add_comment( $activity, $user_id = null ) {
|
||||
$comment_data = self::activity_to_comment( $activity, $user_id );
|
||||
|
||||
if ( ! $commentdata || ! isset( $activity['object']['inReplyTo'] ) ) {
|
||||
if ( ! $comment_data ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$in_reply_to = object_to_uri( $activity['object']['inReplyTo'] );
|
||||
$in_reply_to = \esc_url_raw( $in_reply_to );
|
||||
$comment_post_id = \url_to_postid( $in_reply_to );
|
||||
$parent_comment_id = url_to_commentid( $in_reply_to );
|
||||
// Determine target URL from reply or quote.
|
||||
$parent_comment_id = 0;
|
||||
|
||||
// Save only replies and reactions.
|
||||
if ( ! empty( $activity['object']['inReplyTo'] ) ) {
|
||||
// Regular reply.
|
||||
$target_url = object_to_uri( $activity['object']['inReplyTo'] );
|
||||
$parent_comment_id = url_to_commentid( $target_url );
|
||||
} else {
|
||||
// Check for quote.
|
||||
$target_url = self::get_quote_url( $activity );
|
||||
|
||||
if ( ! $target_url ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Mark as quote and clean content.
|
||||
$comment_data['comment_type'] = 'quote';
|
||||
|
||||
if ( ! empty( $activity['object']['content'] ) ) {
|
||||
$pattern = '/<p[^>]*class=["\']quote-inline["\'][^>]*>.*?<\/p>/is';
|
||||
$cleaned_content = \preg_replace( $pattern, '', $activity['object']['content'], 1 );
|
||||
$comment_data['comment_content'] = \wp_kses_post( $cleaned_content );
|
||||
}
|
||||
}
|
||||
|
||||
// Get post ID from target URL.
|
||||
$target_url = \esc_url_raw( $target_url );
|
||||
$comment_post_id = \url_to_postid( $target_url );
|
||||
|
||||
if ( ! $comment_post_id ) {
|
||||
// Check for `ap_post`.
|
||||
$comment_post = Remote_Posts::get_by_guid( $target_url );
|
||||
if ( $comment_post instanceof \WP_Post ) {
|
||||
$comment_post_id = $comment_post->ID;
|
||||
}
|
||||
}
|
||||
|
||||
// Handle nested replies (replies to comments).
|
||||
if ( ! $comment_post_id && $parent_comment_id ) {
|
||||
$parent_comment = get_comment( $parent_comment_id );
|
||||
$parent_comment = \get_comment( $parent_comment_id );
|
||||
$comment_post_id = $parent_comment->comment_post_ID;
|
||||
}
|
||||
|
||||
if ( is_post_disabled( $comment_post_id ) ) {
|
||||
if ( ! $comment_post_id ) {
|
||||
// Not a reply to a post or comment.
|
||||
return false;
|
||||
}
|
||||
|
||||
$commentdata['comment_post_ID'] = $comment_post_id;
|
||||
$commentdata['comment_parent'] = $parent_comment_id ? $parent_comment_id : 0;
|
||||
$comment_data['comment_post_ID'] = $comment_post_id;
|
||||
$comment_data['comment_parent'] = $parent_comment_id ? $parent_comment_id : 0;
|
||||
|
||||
return self::persist( $commentdata, self::INSERT );
|
||||
return self::persist( $comment_data );
|
||||
}
|
||||
|
||||
/**
|
||||
@ -69,19 +108,29 @@ class Interactions {
|
||||
public static function update_comment( $activity ) {
|
||||
$meta = get_remote_metadata_by_actor( $activity['actor'] );
|
||||
|
||||
// Determine comment_ID.
|
||||
$comment = object_id_to_comment( \esc_url_raw( $activity['object']['id'] ) );
|
||||
$commentdata = \get_comment( $comment, ARRAY_A );
|
||||
if ( \is_wp_error( $meta ) || ! \is_array( $meta ) ) {
|
||||
return $meta;
|
||||
}
|
||||
|
||||
if ( ! $commentdata ) {
|
||||
// Determine comment_ID.
|
||||
$comment = object_id_to_comment( \esc_url_raw( $activity['object']['id'] ) );
|
||||
$comment_data = \get_comment( $comment, ARRAY_A );
|
||||
|
||||
if ( ! $comment_data ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Found a local comment id.
|
||||
$commentdata['comment_author'] = \esc_attr( $meta['name'] ? $meta['name'] : $meta['preferredUsername'] );
|
||||
$commentdata['comment_content'] = \addslashes( $activity['object']['content'] );
|
||||
$comment_data['comment_author'] = \sanitize_text_field( empty( $meta['name'] ) ? $meta['preferredUsername'] : $meta['name'] );
|
||||
|
||||
return self::persist( $commentdata, self::UPDATE );
|
||||
/*
|
||||
* Wrap emoji in content with blocks for runtime replacement.
|
||||
* Note: Remote images in comments are stripped for security (only emoji allowed).
|
||||
*/
|
||||
$content = Emoji::wrap_in_content( $activity['object']['content'], $activity['object'] );
|
||||
$comment_data['comment_content'] = \addslashes( $content );
|
||||
|
||||
return self::persist( $comment_data, self::UPDATE );
|
||||
}
|
||||
|
||||
/**
|
||||
@ -89,54 +138,59 @@ class Interactions {
|
||||
*
|
||||
* @param array $activity Activity array.
|
||||
*
|
||||
* @return array|false Comment data or `false` on failure.
|
||||
* @return array|string|int|\WP_Error|false Comment data or `false` on failure.
|
||||
*/
|
||||
public static function add_reaction( $activity ) {
|
||||
$commentdata = self::activity_to_comment( $activity );
|
||||
|
||||
if ( ! $commentdata ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$url = object_to_uri( $activity['object'] );
|
||||
$comment_post_id = \url_to_postid( $url );
|
||||
$parent_comment_id = url_to_commentid( $url );
|
||||
|
||||
if ( ! $comment_post_id ) {
|
||||
// Check for `ap_post`.
|
||||
$comment_post = Remote_Posts::get_by_guid( $url );
|
||||
if ( $comment_post instanceof \WP_Post ) {
|
||||
$comment_post_id = $comment_post->ID;
|
||||
}
|
||||
}
|
||||
|
||||
if ( ! $comment_post_id && $parent_comment_id ) {
|
||||
$parent_comment = \get_comment( $parent_comment_id );
|
||||
$comment_post_id = $parent_comment->comment_post_ID;
|
||||
}
|
||||
|
||||
if ( ! $comment_post_id || is_post_disabled( $comment_post_id ) ) {
|
||||
if ( ! $comment_post_id ) {
|
||||
// Not a reply to a post or comment.
|
||||
return false;
|
||||
}
|
||||
|
||||
$comment_type = Comment::get_comment_type_by_activity_type( $activity['type'] );
|
||||
|
||||
if ( ! $comment_type ) {
|
||||
// Not a valid comment type.
|
||||
return false;
|
||||
}
|
||||
|
||||
$comment_content = $comment_type['excerpt'];
|
||||
$comment_data = self::activity_to_comment( $activity );
|
||||
if ( ! $comment_data ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$commentdata['comment_post_ID'] = $comment_post_id;
|
||||
$commentdata['comment_content'] = \esc_html( $comment_content );
|
||||
$commentdata['comment_type'] = \esc_attr( $comment_type['type'] );
|
||||
$commentdata['comment_meta']['source_id'] = \esc_url_raw( $activity['id'] );
|
||||
$comment_data['comment_post_ID'] = $comment_post_id;
|
||||
$comment_data['comment_parent'] = $parent_comment_id ? $parent_comment_id : 0;
|
||||
$comment_data['comment_content'] = \esc_html( $comment_type['excerpt'] );
|
||||
$comment_data['comment_type'] = \esc_attr( $comment_type['type'] );
|
||||
$comment_data['comment_meta']['source_id'] = \esc_url_raw( $activity['id'] );
|
||||
|
||||
return self::persist( $commentdata, self::INSERT );
|
||||
return self::persist( $comment_data );
|
||||
}
|
||||
|
||||
/**
|
||||
* Get interaction(s) for a given URL/ID.
|
||||
* Get interaction(s) by ID.
|
||||
*
|
||||
* @param string $url The URL/ID to get interactions for.
|
||||
*
|
||||
* @return array The interactions as WP_Comment objects.
|
||||
*/
|
||||
public static function get_interaction_by_id( $url ) {
|
||||
public static function get_by_id( $url ) {
|
||||
$args = array(
|
||||
'nopaging' => true,
|
||||
// phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query
|
||||
@ -165,13 +219,28 @@ class Interactions {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get interaction(s) for a given actor.
|
||||
* Get interaction(s) for a given URL/ID.
|
||||
*
|
||||
* @deprecated 7.6.0 Use {@see Interactions::get_by_id()}.
|
||||
*
|
||||
* @param string $url The URL/ID to get interactions for.
|
||||
*
|
||||
* @return array The interactions as WP_Comment objects.
|
||||
*/
|
||||
public static function get_interaction_by_id( $url ) {
|
||||
\_deprecated_function( __METHOD__, '7.6.0', 'Activitypub\Collection\Interactions::get_by_id' );
|
||||
|
||||
return self::get_by_id( $url );
|
||||
}
|
||||
|
||||
/**
|
||||
* Get interaction(s) by actor.
|
||||
*
|
||||
* @param string $actor The Actor-URL.
|
||||
*
|
||||
* @return array The interactions as WP_Comment objects.
|
||||
*/
|
||||
public static function get_interactions_by_actor( $actor ) {
|
||||
public static function get_by_actor( $actor ) {
|
||||
$meta = get_remote_metadata_by_actor( $actor );
|
||||
|
||||
// Get URL, because $actor seems to be the ID.
|
||||
@ -191,7 +260,52 @@ class Interactions {
|
||||
),
|
||||
);
|
||||
|
||||
return get_comments( $args );
|
||||
return \get_comments( $args );
|
||||
}
|
||||
|
||||
/**
|
||||
* Get interaction(s) by remote actor ID.
|
||||
*
|
||||
* This is an optimized query that uses the remote actor post ID directly
|
||||
* instead of querying by author_url.
|
||||
*
|
||||
* @param int $remote_actor_id The remote actor post ID.
|
||||
*
|
||||
* @return array The interactions as WP_Comment objects.
|
||||
*/
|
||||
public static function get_by_remote_actor_id( $remote_actor_id ) {
|
||||
$args = array(
|
||||
'nopaging' => true,
|
||||
// phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query
|
||||
'meta_query' => array(
|
||||
'relation' => 'AND',
|
||||
array(
|
||||
'key' => 'protocol',
|
||||
'value' => 'activitypub',
|
||||
),
|
||||
array(
|
||||
'key' => '_activitypub_remote_actor_id',
|
||||
'value' => $remote_actor_id,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
return \get_comments( $args );
|
||||
}
|
||||
|
||||
/**
|
||||
* Get interaction(s) for a given actor.
|
||||
*
|
||||
* @deprecated 7.6.0 Use {@see Interactions::get_by_actor()}.
|
||||
*
|
||||
* @param string $actor The Actor-URL.
|
||||
*
|
||||
* @return array The interactions as WP_Comment objects.
|
||||
*/
|
||||
public static function get_interactions_by_actor( $actor ) {
|
||||
\_deprecated_function( __METHOD__, '7.6.0', 'Activitypub\Collection\Interactions::get_by_actor' );
|
||||
|
||||
return self::get_by_actor( $actor );
|
||||
}
|
||||
|
||||
/**
|
||||
@ -217,84 +331,134 @@ class Interactions {
|
||||
$allowed_tags['p'] = array();
|
||||
}
|
||||
|
||||
// Add `img` for custom emoji support with strict validation.
|
||||
$emoji_html = Emoji::get_kses_allowed_html();
|
||||
if ( ! array_key_exists( 'img', $allowed_tags ) ) {
|
||||
$allowed_tags['img'] = $emoji_html['img'];
|
||||
}
|
||||
|
||||
return $allowed_tags;
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert an Activity to a WP_Comment
|
||||
* Convert an Activity to a WP_Comment.
|
||||
*
|
||||
* @param array $activity The Activity array.
|
||||
* When $user_id is provided, comment author data is built from the
|
||||
* local WordPress user instead of fetching remote actor metadata.
|
||||
*
|
||||
* @param array $activity The Activity array.
|
||||
* @param int|null $user_id Optional. Local user ID for outbox comments.
|
||||
*
|
||||
* @return array|false The comment data or false on failure.
|
||||
*/
|
||||
public static function activity_to_comment( $activity ) {
|
||||
public static function activity_to_comment( $activity, $user_id = null ) {
|
||||
$comment_content = null;
|
||||
$actor = object_to_uri( $activity['actor'] ?? null );
|
||||
$actor = get_remote_metadata_by_actor( $actor );
|
||||
|
||||
// Check Actor-Meta.
|
||||
if ( ! $actor || is_wp_error( $actor ) ) {
|
||||
return false;
|
||||
}
|
||||
if ( $user_id ) {
|
||||
// Outbox: resolve author from the local WordPress user.
|
||||
$user = \get_userdata( $user_id );
|
||||
|
||||
// Check Actor-Name.
|
||||
if ( isset( $actor['name'] ) ) {
|
||||
$comment_author = $actor['name'];
|
||||
} elseif ( isset( $actor['preferredUsername'] ) ) {
|
||||
$comment_author = $actor['preferredUsername'];
|
||||
if ( ! $user ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$comment_author = $user->display_name;
|
||||
$comment_author_url = $user->user_url;
|
||||
$comment_author_email = $user->user_email;
|
||||
$comment_content = \wp_kses_post( $activity['object']['content'] ?? '' );
|
||||
} else {
|
||||
return false;
|
||||
// S2S: resolve author from remote actor metadata.
|
||||
$actor = object_to_uri( $activity['actor'] ?? null );
|
||||
$actor = get_remote_metadata_by_actor( $actor );
|
||||
|
||||
if ( ! $actor || is_wp_error( $actor ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$comment_author = null;
|
||||
if ( ! empty( $actor['name'] ) ) {
|
||||
$comment_author = $actor['name'];
|
||||
} elseif ( ! empty( $actor['preferredUsername'] ) ) {
|
||||
$comment_author = $actor['preferredUsername'];
|
||||
}
|
||||
|
||||
if ( empty( $comment_author ) && \get_option( 'require_name_email' ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$comment_author = $comment_author ?? __( 'Anonymous', 'activitypub' );
|
||||
$comment_author_url = \esc_url_raw( object_to_uri( $actor['url'] ?? $actor['id'] ) );
|
||||
|
||||
$webfinger = Webfinger::uri_to_acct( $comment_author_url );
|
||||
if ( is_wp_error( $webfinger ) ) {
|
||||
$comment_author_email = '';
|
||||
} else {
|
||||
$comment_author_email = str_replace( 'acct:', '', $webfinger );
|
||||
}
|
||||
|
||||
if ( isset( $activity['object']['content'] ) ) {
|
||||
/*
|
||||
* Wrap emoji in content with blocks for runtime replacement.
|
||||
* Note: Remote images in comments are stripped for security (only emoji allowed).
|
||||
*/
|
||||
$content = Emoji::wrap_in_content( $activity['object']['content'], $activity['object'] );
|
||||
$comment_content = \addslashes( $content );
|
||||
}
|
||||
}
|
||||
|
||||
$url = object_to_uri( $actor['url'] ?? $actor['id'] );
|
||||
$published = $activity['object']['published'] ?? $activity['published'] ?? 'now';
|
||||
$gm_date = \gmdate( 'Y-m-d H:i:s', \strtotime( $published ) );
|
||||
|
||||
if ( ! $url ) {
|
||||
$url = object_to_uri( $actor['id'] );
|
||||
}
|
||||
|
||||
if ( isset( $activity['object']['content'] ) ) {
|
||||
$comment_content = \addslashes( $activity['object']['content'] );
|
||||
}
|
||||
|
||||
$webfinger = Webfinger::uri_to_acct( $url );
|
||||
if ( is_wp_error( $webfinger ) ) {
|
||||
$webfinger = '';
|
||||
} else {
|
||||
$webfinger = str_replace( 'acct:', '', $webfinger );
|
||||
}
|
||||
|
||||
$commentdata = array(
|
||||
'comment_author' => \esc_attr( $comment_author ),
|
||||
'comment_author_url' => \esc_url_raw( $url ),
|
||||
$comment_data = array(
|
||||
'comment_author' => $comment_author,
|
||||
'comment_author_url' => $comment_author_url,
|
||||
'comment_content' => $comment_content,
|
||||
'comment_type' => 'comment',
|
||||
'comment_author_email' => $webfinger,
|
||||
'comment_meta' => array(
|
||||
'source_id' => \esc_url_raw( object_to_uri( $activity['object'] ) ),
|
||||
'protocol' => 'activitypub',
|
||||
),
|
||||
'comment_author_email' => $comment_author_email,
|
||||
'comment_date' => \get_date_from_gmt( $gm_date ),
|
||||
'comment_date_gmt' => $gm_date,
|
||||
'comment_meta' => array(),
|
||||
);
|
||||
|
||||
if ( isset( $actor['icon']['url'] ) ) {
|
||||
$commentdata['comment_meta']['avatar_url'] = \esc_url_raw( $actor['icon']['url'] );
|
||||
if ( $user_id ) {
|
||||
$comment_data['user_id'] = $user_id;
|
||||
} else {
|
||||
$comment_data['comment_meta']['protocol'] = 'activitypub';
|
||||
$comment_data['comment_meta']['source_id'] = \esc_url_raw( object_to_uri( $activity['object'] ) );
|
||||
|
||||
// Store reference to remote actor post.
|
||||
$actor_uri = object_to_uri( $activity['actor'] ?? null );
|
||||
if ( $actor_uri ) {
|
||||
$remote_actor = Remote_Actors::get_by_uri( $actor_uri );
|
||||
if ( ! \is_wp_error( $remote_actor ) ) {
|
||||
$comment_data['comment_meta']['_activitypub_remote_actor_id'] = $remote_actor->ID;
|
||||
}
|
||||
}
|
||||
|
||||
if ( isset( $activity['object']['url'] ) ) {
|
||||
$comment_data['comment_meta']['source_url'] = \esc_url_raw( object_to_uri( $activity['object']['url'] ) );
|
||||
}
|
||||
}
|
||||
|
||||
if ( isset( $activity['object']['url'] ) ) {
|
||||
$commentdata['comment_meta']['source_url'] = \esc_url_raw( object_to_uri( $activity['object']['url'] ) );
|
||||
}
|
||||
|
||||
return $commentdata;
|
||||
return $comment_data;
|
||||
}
|
||||
|
||||
/**
|
||||
* Persist a comment.
|
||||
*
|
||||
* @param array $commentdata The commentdata array.
|
||||
* @param string $action Optional. Either 'insert' or 'update'. Default 'insert'.
|
||||
* @param array $comment_data The comment data array.
|
||||
* @param string $action Optional. Either 'insert' or 'update'. Default 'insert'.
|
||||
*
|
||||
* @return array|string|int|\WP_Error|false The comment data or false on failure
|
||||
*/
|
||||
public static function persist( $commentdata, $action = self::INSERT ) {
|
||||
public static function persist( $comment_data, $action = self::INSERT ) {
|
||||
if (
|
||||
is_post_disabled( $comment_data['comment_post_ID'] ) &&
|
||||
! is_ap_post( $comment_data['comment_post_ID'] )
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Disable flood control.
|
||||
\remove_action( 'check_comment_flood', 'check_comment_flood_db' );
|
||||
// Do not require email for AP entries.
|
||||
@ -302,16 +466,16 @@ class Interactions {
|
||||
// No nonce possible for this submission route.
|
||||
\add_filter(
|
||||
'akismet_comment_nonce',
|
||||
function () {
|
||||
static function () {
|
||||
return 'inactive';
|
||||
}
|
||||
);
|
||||
\add_filter( 'wp_kses_allowed_html', array( self::class, 'allowed_comment_html' ), 10, 2 );
|
||||
|
||||
if ( self::INSERT === $action ) {
|
||||
$state = \wp_new_comment( $commentdata, true );
|
||||
$state = \wp_new_comment( $comment_data, true );
|
||||
} else {
|
||||
$state = \wp_update_comment( $commentdata, true );
|
||||
$state = \wp_update_comment( $comment_data, true );
|
||||
}
|
||||
|
||||
\remove_filter( 'wp_kses_allowed_html', array( self::class, 'allowed_comment_html' ) );
|
||||
@ -320,7 +484,7 @@ class Interactions {
|
||||
\add_action( 'check_comment_flood', 'check_comment_flood_db', 10, 4 );
|
||||
|
||||
if ( 1 === $state ) {
|
||||
return $commentdata;
|
||||
return $comment_data;
|
||||
} else {
|
||||
return $state; // Either WP_Comment, false, a WP_Error, 0, or 1!
|
||||
}
|
||||
@ -346,4 +510,33 @@ class Interactions {
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the quote URL from an activity.
|
||||
*
|
||||
* Checks for quote properties in priority order: quote -> quoteUrl -> quoteUri -> _misskey_quote.
|
||||
*
|
||||
* @param array $activity The activity array.
|
||||
*
|
||||
* @return string|false The quote URL or false if not found.
|
||||
*/
|
||||
public static function get_quote_url( $activity ) {
|
||||
if ( ! empty( $activity['object']['quote'] ) ) {
|
||||
return object_to_uri( $activity['object']['quote'] );
|
||||
}
|
||||
|
||||
if ( ! empty( $activity['object']['quoteUrl'] ) ) {
|
||||
return object_to_uri( $activity['object']['quoteUrl'] );
|
||||
}
|
||||
|
||||
if ( ! empty( $activity['object']['quoteUri'] ) ) {
|
||||
return object_to_uri( $activity['object']['quoteUri'] );
|
||||
}
|
||||
|
||||
if ( ! empty( $activity['object']['_misskey_quote'] ) ) {
|
||||
return object_to_uri( $activity['object']['_misskey_quote'] );
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user