HEX
Server: Apache/2.4.65 (Debian)
System: Linux 88f31f35b0b8 6.1.0-38-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.147-1 (2025-08-02) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/wp-seopress/src/Services/Metas/SocialMeta.php
<?php // phpcs:ignore

namespace SEOPress\Services\Metas;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use SEOPress\Helpers\Metas\SocialSettings;

/**
 * SocialMeta
 */
class SocialMeta {

	/**
	 * The getTypeSocial function.
	 *
	 * @param string $meta The meta.
	 *
	 * @return string
	 */
	protected function getTypeSocial( $meta ) { // phpcs:ignore -- TODO: check if method is outside this class before renaming.
		switch ( $meta ) {
			case '_seopress_social_fb_title':
			case '_seopress_social_fb_desc':
			case '_seopress_social_fb_img':
			case '_seopress_social_fb_img_attachment_id':
			case '_seopress_social_fb_img_width':
			case '_seopress_social_fb_img_height':
				return 'og';

			case '_seopress_social_twitter_title':
			case '_seopress_social_twitter_desc':
			case '_seopress_social_twitter_img':
			case '_seopress_social_twitter_img_attachment_id':
			case '_seopress_social_twitter_img_width':
			case '_seopress_social_twitter_img_height':
				return 'twitter';
		}
	}

	/**
	 * The getKeySocial function.
	 *
	 * @param string $meta The meta.
	 *
	 * @return string
	 */
	public function getKeySocial( $meta ) { // phpcs:ignore -- TODO: check if method is outside this class before renaming.
		switch ( $meta ) {
			case '_seopress_social_fb_title':
			case '_seopress_social_twitter_title':
				return 'title';
			case '_seopress_social_fb_desc':
			case '_seopress_social_twitter_desc':
				return 'description';

			case '_seopress_social_fb_img':
			case '_seopress_social_twitter_img':
				return 'image';
			case '_seopress_social_fb_img_attachment_id':
			case '_seopress_social_twitter_img_attachment_id':
				return 'attachment_id';
			case '_seopress_social_fb_img_width':
			case '_seopress_social_twitter_img_width':
				return 'image_width';
			case '_seopress_social_fb_img_height':
			case '_seopress_social_twitter_img_height':
				return 'image_height';
		}
	}

	/**
	 * The getFacebookHomeDescription function.
	 *
	 * @return string
	 */
	public function getFacebookHomeDescription() { // phpcs:ignore -- TODO: check if method is outside this class before renaming.
		$page_id = get_option( 'page_for_posts' );
		$value   = get_post_meta( $page_id, '_seopress_social_fb_desc', true );
		if ( empty( $value ) ) {
			return;
		}

		return $value;
	}

	/**
	 * The getFacebookTaxonomyDescription function.
	 *
	 * @param int $id The id.
	 *
	 * @return string
	 */
	public function getFacebookTaxonomyDescription( $id ) { // phpcs:ignore -- TODO: check if method is outside this class before renaming.
		$value = get_term_meta( $id, '_seopress_social_fb_desc', true );
		if ( empty( $value ) ) {
			return;
		}

		return $value;
	}

	/**
	 * The getValue function.
	 *
	 * @param array $context The context.
	 *
	 * @return string|null
	 */
	public function getValue( $context ) { // phpcs:ignore -- TODO: check if method is outside this class before renaming.
		$data = array(
			'og'      => array(),
			'twitter' => array(),
		);

		$callback = 'get_post_meta';
		$id       = null;
		if ( isset( $context['post'] ) ) {
			$id = $context['post']->ID;
		} elseif ( isset( $context['term_id'] ) ) {
			$id       = $context['term_id'];
			$callback = 'get_term_meta';
		}

		if ( null === $id ) {
			return $data;
		}

		$metas = SocialSettings::getMetaKeys( $id );

		foreach ( $metas as $key => $value ) {
			$type       = $this->getTypeSocial( $value['key'] );
			$result     = $callback( $id, $value['key'], true );
			$key_social = $this->getKeySocial( $value['key'] );

			$data[ $type ][ $key_social ] = $result;
		}

		return $data;
	}
}