| @@ -1,126 +1,95 @@ | ||
| 1 | 1 | <?php |
| 2 | +/** | |
| 3 | + * Mention class file. | |
| 4 | + * | |
| 5 | + * @package Activitypub | |
| 6 | + */ | |
| 7 | + | |
| 2 | 8 | namespace Activitypub; |
| 3 | 9 | |
| 4 | -use WP_Error; | |
| 5 | -use Activitypub\Webfinger; | |
| 10 | +use Activitypub\Collection\Remote_Actors; | |
| 6 | 11 | |
| 7 | 12 | /** |
| 8 | - * ActivityPub Mention Class | |
| 13 | + * ActivityPub Mention Class. | |
| 9 | 14 | * |
| 10 | 15 | * @author Alex Kirk |
| 11 | 16 | */ |
| 12 | 17 | class Mention { |
| 13 | 18 | /** |
| 14 | - * Initialize the class, registering WordPress hooks | |
| 19 | + * Initialize the class, registering WordPress hooks. | |
| 15 | 20 | */ |
| 16 | 21 | public static function init() { |
| 17 | - \add_filter( 'the_content', array( self::class, 'the_content' ), 99, 1 ); | |
| 18 | - \add_filter( 'comment_text', array( self::class, 'the_content' ), 10, 1 ); | |
| 22 | + \add_filter( 'the_content', array( self::class, 'the_content' ), 99 ); | |
| 23 | + \add_filter( 'comment_text', array( self::class, 'the_content' ) ); | |
| 24 | + \add_filter( 'activitypub_extra_field_content', array( self::class, 'the_content' ) ); | |
| 19 | 25 | \add_filter( 'activitypub_extract_mentions', array( self::class, 'extract_mentions' ), 99, 2 ); |
| 26 | + \add_filter( 'activitypub_activity_object_array', array( self::class, 'filter_activity_object' ), 99 ); | |
| 20 | 27 | } |
| 21 | 28 | |
| 22 | 29 | /** |
| 23 | - * Filter to replace the mentions in the content with links | |
| 30 | + * Filter only the activity object and replace summery it with URLs | |
| 31 | + * add tag to user. | |
| 24 | 32 | * |
| 25 | - * @param string $the_content the post-content | |
| 33 | + * @param array $object_array Array of activity. | |
| 26 | 34 | * |
| 27 | - * @return string the filtered post-content | |
| 35 | + * @return array The activity object array. | |
| 28 | 36 | */ |
| 29 | - public static function the_content( $the_content ) { | |
| 30 | - // small protection against execution timeouts: limit to 1 MB | |
| 31 | - if ( mb_strlen( $the_content ) > MB_IN_BYTES ) { | |
| 32 | - return $the_content; | |
| 37 | + public static function filter_activity_object( $object_array ) { | |
| 38 | + if ( ! empty( $object_array['summary'] ) ) { | |
| 39 | + $object_array['summary'] = self::the_content( $object_array['summary'] ); | |
| 33 | 40 | } |
| 34 | - $tag_stack = array(); | |
| 35 | - $protected_tags = array( | |
| 36 | - 'pre', | |
| 37 | - 'code', | |
| 38 | - 'textarea', | |
| 39 | - 'style', | |
| 40 | - 'a', | |
| 41 | - ); | |
| 42 | - $content_with_links = ''; | |
| 43 | - $in_protected_tag = false; | |
| 44 | - foreach ( wp_html_split( $the_content ) as $chunk ) { | |
| 45 | - if ( preg_match( '#^<!--[\s\S]*-->$#i', $chunk, $m ) ) { | |
| 46 | - $content_with_links .= $chunk; | |
| 47 | - continue; | |
| 48 | - } | |
| 49 | 41 | |
| 50 | - if ( preg_match( '#^<(/)?([a-z-]+)\b[^>]*>$#i', $chunk, $m ) ) { | |
| 51 | - $tag = strtolower( $m[2] ); | |
| 52 | - if ( '/' === $m[1] ) { | |
| 53 | - // Closing tag. | |
| 54 | - $i = array_search( $tag, $tag_stack ); | |
| 55 | - // We can only remove the tag from the stack if it is in the stack. | |
| 56 | - if ( false !== $i ) { | |
| 57 | - $tag_stack = array_slice( $tag_stack, 0, $i ); | |
| 58 | - } | |
| 59 | - } else { | |
| 60 | - // Opening tag, add it to the stack. | |
| 61 | - $tag_stack[] = $tag; | |
| 62 | - } | |
| 42 | + if ( ! empty( $object_array['content'] ) ) { | |
| 43 | + $object_array['content'] = self::the_content( $object_array['content'] ); | |
| 44 | + } | |
| 63 | 45 | |
| 64 | - // If we're in a protected tag, the tag_stack contains at least one protected tag string. | |
| 65 | - // The protected tag state can only change when we encounter a start or end tag. | |
| 66 | - $in_protected_tag = array_intersect( $tag_stack, $protected_tags ); | |
| 46 | + return $object_array; | |
| 47 | + } | |
| 67 | 48 | |
| 68 | - // Never inspect tags. | |
| 69 | - $content_with_links .= $chunk; | |
| 70 | - continue; | |
| 71 | - } | |
| 72 | - | |
| 73 | - if ( $in_protected_tag ) { | |
| 74 | - // Don't inspect a chunk inside an inspected tag. | |
| 75 | - $content_with_links .= $chunk; | |
| 76 | - continue; | |
| 77 | - } | |
| 78 | - | |
| 79 | - // Only reachable when there is no protected tag in the stack. | |
| 80 | - $content_with_links .= \preg_replace_callback( '/@' . ACTIVITYPUB_USERNAME_REGEXP . '/', array( self::class, 'replace_with_links' ), $chunk ); | |
| 81 | - } | |
| 82 | - | |
| 83 | - return $content_with_links; | |
| 49 | + /** | |
| 50 | + * Filter to replace the mentions in the content with links. | |
| 51 | + * | |
| 52 | + * @param string $the_content The post content. | |
| 53 | + * | |
| 54 | + * @return string The filtered post-content. | |
| 55 | + */ | |
| 56 | + public static function the_content( $the_content ) { | |
| 57 | + return enrich_content_data( $the_content, '/@' . ACTIVITYPUB_USERNAME_REGEXP . '/', array( self::class, 'replace_with_links' ) ); | |
| 84 | 58 | } |
| 85 | 59 | |
| 86 | 60 | /** |
| 87 | - * A callback for preg_replace to build the user links | |
| 61 | + * A callback for preg_replace to build the user links. | |
| 88 | 62 | * |
| 89 | - * @param array $result the preg_match results | |
| 63 | + * @param array $result The preg_match results. | |
| 90 | 64 | * |
| 91 | - * @return string the final string | |
| 65 | + * @return string The final string. | |
| 92 | 66 | */ |
| 93 | 67 | public static function replace_with_links( $result ) { |
| 94 | - $metadata = get_remote_metadata_by_actor( $result[0] ); | |
| 68 | + $post = Remote_Actors::fetch_by_acct( $result[0] ); | |
| 95 | 69 | |
| 96 | - if ( ! empty( $metadata ) && ! is_wp_error( $metadata ) && ! empty( $metadata['url'] ) ) { | |
| 97 | - $username = ltrim( $result[0], '@' ); | |
| 98 | - if ( ! empty( $metadata['name'] ) ) { | |
| 99 | - $username = $metadata['name']; | |
| 100 | - } | |
| 101 | - if ( ! empty( $metadata['preferredUsername'] ) ) { | |
| 102 | - $username = $metadata['preferredUsername']; | |
| 103 | - } | |
| 70 | + if ( \is_wp_error( $post ) ) { | |
| 71 | + return $result[0]; | |
| 72 | + } | |
| 104 | 73 | |
| 105 | - $url = isset( $metadata['url'] ) ? $metadata['url'] : $metadata['url']; | |
| 74 | + $actor = Remote_Actors::get_actor( $post ); | |
| 106 | 75 | |
| 107 | - if ( \is_array( $url ) ) { | |
| 108 | - $url = $url[0]; | |
| 109 | - } | |
| 76 | + if ( \is_wp_error( $actor ) ) { | |
| 77 | + return $result[0]; | |
| 78 | + } | |
| 110 | 79 | |
| 111 | - return \sprintf( '<a rel="mention" class="u-url mention" href="%s">@<span>%s</span></a>', esc_url( $url ), esc_html( $username ) ); | |
| 112 | - } | |
| 80 | + $username = $actor->get_preferred_username() ?: $actor->get_name() ?: Sanitize::webfinger( $result[0] ); | |
| 81 | + $url = object_to_uri( $actor->get_url() ?: $actor->get_id() ); | |
| 113 | 82 | |
| 114 | - return $result[0]; | |
| 83 | + return \sprintf( '<a rel="mention" class="u-url mention" href="%1$s">@%2$s</a>', esc_url( $url ), esc_html( $username ) ); | |
| 115 | 84 | } |
| 116 | 85 | |
| 117 | 86 | /** |
| 118 | - * Get the Inboxes for the mentioned Actors | |
| 87 | + * Get the Inboxes for the mentioned Actors. | |
| 119 | 88 | * |
| 120 | - * @param array $mentioned The list of Actors that were mentioned | |
| 89 | + * @param array $mentioned The list of Actors that were mentioned. | |
| 121 | 90 | * |
| 122 | - * @return array The list of Inboxes | |
| 91 | + * @return array The list of Inboxes. | |
| 123 | 92 | */ |
| 124 | 93 | public static function get_inboxes( $mentioned ) { |
| 125 | 94 | $inboxes = array(); |
| 126 | 95 | |
| @@ -135,13 +104,13 @@ | ||
| 135 | 104 | return $inboxes; |
| 136 | 105 | } |
| 137 | 106 | |
| 138 | 107 | /** |
| 139 | - * Get the inbox from the Remote-Profile of a mentioned Actor | |
| 108 | + * Get the inbox from the Remote-Profile of a mentioned Actor. | |
| 140 | 109 | * |
| 141 | - * @param string $actor The Actor-URL | |
| 110 | + * @param string $actor The Actor URL. | |
| 142 | 111 | * |
| 143 | - * @return string The Inbox-URL | |
| 112 | + * @return string|\WP_Error The Inbox-URL or WP_Error if not found. | |
| 144 | 113 | */ |
| 145 | 114 | public static function get_inbox_by_mentioned_actor( $actor ) { |
| 146 | 115 | $metadata = get_remote_metadata_by_actor( $actor ); |
| 147 | 116 | |
| @@ -148,9 +117,9 @@ | ||
| 148 | 117 | if ( \is_wp_error( $metadata ) ) { |
| 149 | 118 | return $metadata; |
| 150 | 119 | } |
| 151 | 120 | |
| 152 | - if ( isset( $metadata['endpoints'] ) && isset( $metadata['endpoints']['sharedInbox'] ) ) { | |
| 121 | + if ( isset( $metadata['endpoints']['sharedInbox'] ) ) { | |
| 153 | 122 | return $metadata['endpoints']['sharedInbox']; |
| 154 | 123 | } |
| 155 | 124 | |
| 156 | 125 | if ( \array_key_exists( 'inbox', $metadata ) ) { |
| @@ -156,18 +125,18 @@ | ||
| 156 | 125 | if ( \array_key_exists( 'inbox', $metadata ) ) { |
| 157 | 126 | return $metadata['inbox']; |
| 158 | 127 | } |
| 159 | 128 | |
| 160 | - return new WP_Error( 'activitypub_no_inbox', \__( 'No "Inbox" found', 'activitypub' ), $metadata ); | |
| 129 | + return new \WP_Error( 'activitypub_no_inbox', \__( 'No "Inbox" found', 'activitypub' ), $metadata ); | |
| 161 | 130 | } |
| 162 | 131 | |
| 163 | 132 | /** |
| 164 | 133 | * Extract the mentions from the post_content. |
| 165 | 134 | * |
| 166 | - * @param array $mentions The already found mentions. | |
| 135 | + * @param array $mentions The already found mentions. | |
| 167 | 136 | * @param string $post_content The post content. |
| 168 | 137 | * |
| 169 | - * @return mixed The discovered mentions. | |
| 138 | + * @return array The discovered mentions. | |
| 170 | 139 | */ |
| 171 | 140 | public static function extract_mentions( $mentions, $post_content ) { |
| 172 | 141 | \preg_match_all( '/@' . ACTIVITYPUB_USERNAME_REGEXP . '/i', $post_content, $matches ); |
| 173 | 142 | foreach ( $matches[0] as $match ) { |
| @@ -175,7 +144,7 @@ | ||
| 175 | 144 | if ( ! is_wp_error( $link ) ) { |
| 176 | 145 | $mentions[ $match ] = $link; |
| 177 | 146 | } |
| 178 | 147 | } |
| 179 | - return $mentions; | |
| 148 | + return \array_unique( $mentions ); | |
| 180 | 149 | } |
| 181 | 150 | } |