wordpress-activitypub/includes/class-mention.php

104 lines
2.9 KiB
PHP
Raw Normal View History

2022-12-09 11:59:24 +01:00
<?php
namespace Activitypub;
/**
* ActivityPub Mention Class
*
* @author Alex Kirk
*/
class Mention {
/**
* Initialize the class, registering WordPress hooks
*/
public static function init() {
2023-04-20 15:22:11 +02:00
\add_filter( 'the_content', array( self::class, 'the_content' ), 99, 2 );
\add_filter( 'activitypub_extract_mentions', array( self::class, 'extract_mentions' ), 99, 2 );
2022-12-09 11:59:24 +01:00
}
/**
2022-12-09 13:39:48 +01:00
* Filter to replace the mentions in the content with links
2022-12-09 11:59:24 +01:00
*
* @param string $the_content the post-content
*
* @return string the filtered post-content
*/
public static function the_content( $the_content ) {
2022-12-13 11:34:07 +01:00
$protected_tags = array();
2023-01-27 16:59:15 +01:00
$protect = function( $m ) use ( &$protected_tags ) {
$c = count( $protected_tags );
$protect = '!#!#PROTECT' . $c . '#!#!';
$protected_tags[ $protect ] = $m[0];
return $protect;
};
$the_content = preg_replace_callback(
2023-01-27 17:23:25 +01:00
'#<!\[CDATA\[.*?\]\]>#is',
2023-01-27 16:59:15 +01:00
$protect,
$the_content
);
2023-01-27 16:50:04 +01:00
$the_content = preg_replace_callback(
2023-01-27 16:55:52 +01:00
'#<(pre|code|textarea|style)\b[^>]*>.*?</\1[^>]*>#is',
2023-01-27 16:59:15 +01:00
$protect,
2023-01-27 16:50:04 +01:00
$the_content
);
2022-12-13 11:34:07 +01:00
$the_content = preg_replace_callback(
'#<a.*?href=[^>]+>.*?</a>#i',
2023-01-27 16:59:15 +01:00
$protect,
2022-12-13 11:34:07 +01:00
$the_content
);
$the_content = preg_replace_callback(
'#<img.*?[^>]+>#i',
$protect,
$the_content
);
2023-04-20 15:22:11 +02:00
$the_content = \preg_replace_callback( '/@' . ACTIVITYPUB_USERNAME_REGEXP . '/', array( self::class, 'replace_with_links' ), $the_content );
2022-12-09 11:59:24 +01:00
2023-01-27 17:23:25 +01:00
$the_content = str_replace( array_reverse( array_keys( $protected_tags ) ), array_reverse( array_values( $protected_tags ) ), $the_content );
2022-12-13 11:34:07 +01:00
2022-12-09 11:59:24 +01:00
return $the_content;
}
/**
2022-12-09 13:39:48 +01:00
* A callback for preg_replace to build the user links
2022-12-09 11:59:24 +01:00
*
* @param array $result the preg_match results
* @return string the final string
*/
public static function replace_with_links( $result ) {
$metadata = \ActivityPub\get_remote_metadata_by_actor( $result[0] );
if ( ! is_wp_error( $metadata ) && ! empty( $metadata['url'] ) ) {
2022-12-12 16:39:55 +01:00
$username = ltrim( $result[0], '@' );
if ( ! empty( $metadata['name'] ) ) {
$username = $metadata['name'];
}
2022-12-09 11:59:24 +01:00
if ( ! empty( $metadata['preferredUsername'] ) ) {
$username = $metadata['preferredUsername'];
}
$username = '@<span>' . $username . '</span>';
2022-12-09 13:39:48 +01:00
return \sprintf( '<a rel="mention" class="u-url mention" href="%s">%s</a>', $metadata['url'], $username );
2022-12-09 11:59:24 +01:00
}
2022-12-09 12:02:55 +01:00
return $result[0];
2022-12-09 11:59:24 +01:00
}
/**
* Extract the mentions from the post_content.
*
2023-01-27 16:50:04 +01:00
* @param array $mentions The already found mentions.
* @param string $post_content The post content.
* @return mixed The discovered mentions.
*/
public static function extract_mentions( $mentions, $post_content ) {
\preg_match_all( '/@' . ACTIVITYPUB_USERNAME_REGEXP . '/i', $post_content, $matches );
2022-12-09 11:59:24 +01:00
foreach ( $matches[0] as $match ) {
2022-12-09 19:05:43 +01:00
$link = \Activitypub\Webfinger::resolve( $match );
2022-12-09 11:59:24 +01:00
if ( ! is_wp_error( $link ) ) {
$mentions[ $match ] = $link;
}
}
return $mentions;
}
}