*/ namespace RankMath\Links; use MyThemeShop\Helpers\Str; use RankMath\Sitemap\Classifier; defined( 'ABSPATH' ) || exit; /** * ContentProcessor class. */ class ContentProcessor { /** * Link storage. * * @var Storage */ public $storage; /** * Link classifier. * * @var Classifier */ protected $classifier; /** * The Constructor */ public function __construct() { $this->storage = new Storage; $this->classifier = new Classifier( home_url() ); } /** * Process the content. * * @param int $post_id The post ID. * @param string $content The content. */ public function process( $post_id, $content ) { $links = $this->extract( $content ); $counts = [ 'internal_link_count' => 0, 'external_link_count' => 0, ]; $new_links = []; foreach ( $links as $link ) { $this->process_link( $link, $new_links, $counts ); } $old_links = $this->get_stored_internal_links( $post_id ); $this->storage->cleanup( $post_id ); $this->storage->save_links( $post_id, $new_links ); $this->storage->update_link_counts( $post_id, $counts, array_merge( $new_links, $old_links ) ); } /** * Process a link. * * @param string $link Link to process. * @param array $list Links to add after process. * @param array $counts Counts array. */ private function process_link( $link, &$list, &$counts ) { $link_type = $this->is_valid_link_type( $link ); if ( empty( $link_type ) ) { return; } $target_post_id = 0; if ( Classifier::TYPE_INTERNAL === $link_type ) { $target_post_id = url_to_postid( $link ); } $counts[ "{$link_type}_link_count" ] += 1; $list[] = new Link( $link, $target_post_id, $link_type ); } /** * Extract href property values from HTML string. * * @param string $content Content to extract links from. * * @return array The extracted links. */ public function extract( $content ) { $links = []; if ( false === Str::contains( 'href', $content ) ) { return $links; } $regexp = ']*href=("??)([^" >]*?)\\1[^>]*>'; // Case insensitive & ungreedy modifiers. if ( preg_match_all( "/$regexp/iU", $content, $matches, PREG_SET_ORDER ) ) { foreach ( $matches as $match ) { $links[] = trim( $match[2], "'" ); } } return $links; } /** * Retrieves the stored internal links for the supplied post. * * @param int $post_id The post to fetch links for. * * @return Link[] List of internal links connected to the post. */ public function get_stored_internal_links( $post_id ) { $links = $this->storage->get_links( $post_id ); return array_filter( $links, [ $this, 'filter_internal_link' ] ); } /** * Filter internal links. * * @param Link $link Link to test. * * @return bool True if internal, false if external. */ protected function filter_internal_link( Link $link ) { return $link->get_type() === Classifier::TYPE_INTERNAL; } /** * Check if link is valid. * * @param string $link Link to check. * * @return boolean */ private function is_valid_link_type( $link ) { if ( empty( $link ) || '#' === $link[0] ) { return false; } return $this->classifier->classify( $link ); } }