/home/bonphmya/mercandestockages.store/wp-content/plugins/aioseo-eeat/app/Ui/AuthorBioCompact.php
<?php
namespace AIOSEO\Plugin\Addon\Eeat\Ui {
	if ( ! defined( 'ABSPATH' ) ) {
		exit;
	}

	use AIOSEO\Plugin\Common\Traits;

	/**
	 * Handles the compact author bio block.
	 *
	 * @since 1.0.0
	 */
	class AuthorBioCompact {
		use Traits\SocialProfiles;

		/**
		 * Class constructor.
		 *
		 * @since 1.0.0
		 */
		public function __construct() {
			add_filter( 'the_content', [ $this, 'inject' ], 200 );
		}

		/**
		 * Injects the author bio block into the post content.
		 *
		 * @since 1.0.0
		 *
		 * @return string $postContent The post content.
		 */
		public function inject( $postContent ) {
			if ( ! is_singular() ) {
				return $postContent;
			}

			$post = get_post();
			if (
				! is_a( $post, 'WP_Post' ) ||
				empty( $post->post_author ) ||
				in_array( $post->post_type, [ 'download', 'product' ], true ) ||
				! post_type_supports( $post->post_type, 'author' ) ||
				post_password_required()
			) {
				return $postContent;
			}

			$authorMetaData = aioseoEeat()->helpers->getAuthorMetaData( $post->post_author );
			$enabled        = ! empty( $authorMetaData['enabled'] ) ? aioseoEeat()->options->eeat->settings->authorBioInjection : false;
			if ( ! empty( $authorMetaData['enabled'] ) && empty( $authorMetaData['injectAuthorBioDefault'] ) ) {
				$enabled = ! empty( $authorMetaData['injectAuthorBio'] );
			}

			if ( ! apply_filters( 'aioseo_eeat_author_bio_inject', $enabled, $post ) ) {
				return $postContent;
			}

			$postTypes = aioseoEeat()->options->eeat->settings->postTypes->all();
			if (
				! $postTypes['all'] &&
				! in_array( $post->post_type, $postTypes['included'], true )
			) {
				return $postContent;
			}

			$postContent .= $this->render( false );

			return $postContent;
		}

		/**
		 * Renders the author bio block.
		 *
		 * @since 1.0.0
		 *
		 * @param  bool        $echo Whether to echo or return the output.
		 * @return string|void       The output from the output buffering or nothing.
		 */
		public function render( $echo = true ) {
			if ( ! aioseo()->license->hasAddonFeature( 'aioseo-eeat', 'author-info' ) ) {
				return;
			}

			$template = aioseoEeat()->utils->templates->locateTemplate( 'AuthorBioCompact.php' );
			if ( ! $template ) {
				return;
			}

			// If there is no post, fall back to the ID of the current user. We need to do so in order to generate a sample in the Site Editor.
			$authorId              = 0;
			$showSampleDescription = false; // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
			$post = get_post();
			if ( is_singular() && is_a( $post, 'WP_Post' ) ) {
				$authorId = $post->post_author;
			}

			if ( ! $authorId ) {
				if ( is_a( $post, 'WP_Post' ) ) {
					$authorId = $post->post_author;
				} else {
					$authorId              = get_current_user_id();
					$showSampleDescription = true; // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
				}
			}

			$authorMetaData = aioseoEeat()->helpers->getAuthorMetaData( $authorId );

			$data = [
				'authorId'       => $authorId,
				'authorMetaData' => $authorMetaData,
				'authorName'     => get_the_author_meta( 'display_name', $authorId ),
				'authorImageUrl' => ! empty( $authorMetaData['authorImage'] ) ? $authorMetaData['authorImage'] : get_avatar_url( $authorId, [ 'size' => 300 ] ),
				'authorUrl'      => get_author_posts_url( $authorId ),
				'socialUrls'     => $this->getUserProfiles( $authorId ),
				'socialIcons'    => aioseoEeat()->helpers->getSocialIcons()
			];

			$data = apply_filters( 'aioseo_eeat_author_bio_data', $data );

			if ( $echo ) {
				require $template;

				return;
			}

			ob_start();
			require $template;

			return ob_get_clean();
		}
	}
}