PageRenderTime 106ms CodeModel.GetById 13ms RepoModel.GetById 1ms app.codeStats 0ms

/wp-content/plugins/jetpack/class.jetpack-twitter-cards.php

https://gitlab.com/thisishayat/itv-2016
PHP | 213 lines | 148 code | 35 blank | 30 comment | 59 complexity | 96d914801873cc6fe03fe3d9b0835608 MD5 | raw file
  1. <?php
  2. /* Twitter Cards
  3. *
  4. * Hooks onto the Open Graph protocol and extends it by adding only the tags
  5. * we need for twitter cards.
  6. *
  7. * @see /wp-content/blog-plugins/open-graph.php
  8. * @see https://dev.twitter.com/cards/overview
  9. */
  10. class Jetpack_Twitter_Cards {
  11. static function twitter_cards_tags( $og_tags ) {
  12. global $post;
  13. if ( post_password_required() ) {
  14. return $og_tags;
  15. }
  16. /** This action is documented in class.jetpack.php */
  17. if ( apply_filters( 'jetpack_disable_twitter_cards', false ) ) {
  18. return $og_tags;
  19. }
  20. /*
  21. * These tags apply to any page (home, archives, etc)
  22. */
  23. $site_tag = self::site_tag();
  24. /** This action is documented in modules/sharedaddy/sharing-sources.php */
  25. $site_tag = apply_filters( 'jetpack_sharing_twitter_via', $site_tag, ( is_singular() ? $post->ID : null ) );
  26. /** This action is documented in modules/sharedaddy/sharing-sources.php */
  27. $site_tag = apply_filters( 'jetpack_twitter_cards_site_tag', $site_tag, $og_tags );
  28. if ( ! empty( $site_tag ) ) {
  29. $og_tags['twitter:site'] = self::sanitize_twitter_user( $site_tag );
  30. }
  31. if ( ! is_singular() || ! empty( $og_tags['twitter:card'] ) ) {
  32. return $og_tags;
  33. }
  34. /*
  35. * The following tags only apply to single pages.
  36. */
  37. $card_type = 'summary';
  38. // Try to give priority to featured images
  39. if ( class_exists('Jetpack_PostImages') ) {
  40. $featured = Jetpack_PostImages::from_thumbnail( $post->ID, 240, 240 );
  41. if ( !empty( $featured ) && count( $featured ) > 0 ) {
  42. if ( (int) $featured[0]['src_width'] >= 280 && (int) $featured[0]['src_height'] >= 150 ) {
  43. $card_type = 'summary_large_image';
  44. $og_tags['twitter:image'] = esc_url( add_query_arg( 'w', 640, $featured[0]['src'] ) );
  45. } else {
  46. $og_tags['twitter:image'] = esc_url( add_query_arg( 'w', 240, $featured[0]['src'] ) );
  47. }
  48. }
  49. }
  50. // Only proceed with media analysis if a featured image has not superseded it already.
  51. if ( empty( $og_tags['twitter:image'] ) && empty( $og_tags['twitter:image:src'] ) ) {
  52. if ( ! class_exists( 'Jetpack_Media_Summary' ) && defined('IS_WPCOM') && IS_WPCOM ) {
  53. include( WP_CONTENT_DIR . '/lib/class.wpcom-media-summary.php' );
  54. }
  55. // Test again, class should already be auto-loaded in Jetpack.
  56. // If not, skip extra media analysis and stick with a summary card
  57. if ( class_exists( 'Jetpack_Media_Summary' ) ) {
  58. $extract = Jetpack_Media_Summary::get( $post->ID );
  59. if ( 'gallery' == $extract['type'] ) {
  60. list( $og_tags, $card_type ) = self::twitter_cards_define_type_based_on_image_count( $og_tags, $extract );
  61. } elseif ( 'video' == $extract['type'] ) {
  62. // Leave as summary, but with large pict of poster frame (we know those comply to Twitter's size requirements)
  63. $card_type = 'summary_large_image';
  64. $og_tags['twitter:image'] = esc_url( add_query_arg( 'w', 640, $extract['image'] ) );
  65. } else {
  66. list( $og_tags, $card_type ) = self::twitter_cards_define_type_based_on_image_count( $og_tags, $extract );
  67. }
  68. }
  69. }
  70. $og_tags['twitter:card'] = $card_type;
  71. // If we have information on the author/creator, then include that as well
  72. if ( ! empty( $post ) && ! empty( $post->post_author ) ) {
  73. /** This action is documented in modules/sharedaddy/sharing-sources.php */
  74. $handle = apply_filters( 'jetpack_sharing_twitter_via', '', $post->ID );
  75. if ( ! empty( $handle ) && 'wordpressdotcom' != $handle && 'jetpack' != $handle ) {
  76. $og_tags['twitter:creator'] = self::sanitize_twitter_user( $handle );
  77. }
  78. }
  79. // Make sure we have a description for Twitter, their validator isn't happy without some content (single space not valid).
  80. if ( ! isset( $og_tags['og:description'] ) || '' == trim( $og_tags['og:description'] ) || __('Visit the post for more.', 'jetpack') == $og_tags['og:description'] ) { // empty( trim( $og_tags['og:description'] ) ) isn't valid php
  81. $has_creator = ( ! empty($og_tags['twitter:creator']) && '@wordpressdotcom' != $og_tags['twitter:creator'] ) ? true : false;
  82. if ( ! empty( $extract ) && 'video' == $extract['type'] ) { // use $extract['type'] since $card_type is 'summary' for video posts
  83. $og_tags['twitter:description'] = ( $has_creator ) ? sprintf( __('Video post by %s.', 'jetpack'), $og_tags['twitter:creator'] ) : __('Video post.', 'jetpack');
  84. } else {
  85. $og_tags['twitter:description'] = ( $has_creator ) ? sprintf( __('Post by %s.', 'jetpack'), $og_tags['twitter:creator'] ) : __('Visit the post for more.', 'jetpack');
  86. }
  87. }
  88. return $og_tags;
  89. }
  90. static function sanitize_twitter_user( $str ) {
  91. return '@' . preg_replace( '/^@/', '', $str );
  92. }
  93. static function prioritize_creator_over_default_site( $site_tag, $og_tags = array() ) {
  94. if ( ! empty( $og_tags['twitter:creator'] ) && in_array( $site_tag, array( '@wordpressdotcom', '@jetpack' ) ) ) {
  95. $site_tag = $og_tags['twitter:creator'];
  96. }
  97. return $site_tag;
  98. }
  99. static function twitter_cards_define_type_based_on_image_count( $og_tags, $extract ) {
  100. $card_type = 'summary';
  101. $img_count = $extract['count']['image'];
  102. if ( empty( $img_count ) ) {
  103. // No images, use Blavatar as a thumbnail for the summary type.
  104. if ( function_exists('blavatar_domain') ) {
  105. $blavatar_domain = blavatar_domain( site_url() );
  106. if ( blavatar_exists( $blavatar_domain ) ) {
  107. $og_tags['twitter:image'] = blavatar_url( $blavatar_domain, 'img', 240 );
  108. }
  109. }
  110. // Second fall back, Site Logo
  111. if ( empty( $og_tags['twitter:image'] ) && ( function_exists( 'jetpack_has_site_logo' ) && jetpack_has_site_logo() ) ) {
  112. $og_tags['twitter:image'] = jetpack_get_site_logo( 'url' );
  113. }
  114. // Third fall back, Site Icon
  115. if ( empty( $og_tags['twitter:image'] ) && ( function_exists( 'jetpack_has_site_icon' ) && jetpack_has_site_icon() ) ) {
  116. $og_tags['twitter:image'] = jetpack_site_icon_url( null, '240' );
  117. }
  118. // Not falling back on Gravatar, because there's no way to know if we end up with an auto-generated one.
  119. } elseif ( $img_count && ( 'image' == $extract['type'] || 'gallery' == $extract['type'] ) ) {
  120. // Test for $extract['type'] to limit to image and gallery, so we don't send a potential fallback image like a Gravatar as a photo post.
  121. $card_type = 'summary_large_image';
  122. $og_tags['twitter:image'] = esc_url( add_query_arg( 'w', 1400, ( empty( $extract['images'] ) ) ? $extract['image'] : $extract['images'][0]['url'] ) );
  123. }
  124. return array( $og_tags, $card_type );
  125. }
  126. static function twitter_cards_output( $og_tag ) {
  127. return ( false !== strpos( $og_tag, 'twitter:' ) ) ? preg_replace( '/property="([^"]+)"/', 'name="\1"', $og_tag ) : $og_tag;
  128. }
  129. static function settings_init() {
  130. add_settings_section( 'jetpack-twitter-cards-settings', 'Twitter Cards', '__return_false', 'sharing' );
  131. add_settings_field(
  132. 'jetpack-twitter-cards-site-tag',
  133. __( 'Twitter Site Tag', 'jetpack' ),
  134. array( __CLASS__, 'settings_field' ),
  135. 'sharing',
  136. 'jetpack-twitter-cards-settings',
  137. array(
  138. 'label_for' => 'jetpack-twitter-cards-site-tag',
  139. )
  140. );
  141. }
  142. static function sharing_global_options() {
  143. do_settings_fields( 'sharing', 'jetpack-twitter-cards-settings' );
  144. }
  145. static function site_tag() {
  146. $site_tag = get_option( 'jetpack-twitter-cards-site-tag' );
  147. if ( empty( $site_tag ) ) {
  148. if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
  149. return 'wordpressdotcom';
  150. } else {
  151. return;
  152. }
  153. }
  154. return $site_tag;
  155. }
  156. static function settings_field() {
  157. wp_nonce_field( 'jetpack-twitter-cards-settings', 'jetpack_twitter_cards_nonce', false );
  158. ?>
  159. <input type="text" id="jetpack-twitter-cards-site-tag" class="regular-text" name="jetpack-twitter-cards-site-tag" value="<?php echo esc_attr( get_option( 'jetpack-twitter-cards-site-tag' ) ); ?>" />
  160. <p class="description" style="width: auto;"><?php esc_html_e( 'The Twitter username of the owner of this site\'s domain.', 'jetpack' ); ?></p>
  161. <?php
  162. }
  163. static function settings_validate() {
  164. if ( wp_verify_nonce( $_POST['jetpack_twitter_cards_nonce'], 'jetpack-twitter-cards-settings' ) ) {
  165. update_option( 'jetpack-twitter-cards-site-tag', trim( ltrim( strip_tags( $_POST['jetpack-twitter-cards-site-tag'] ), '@' ) ) );
  166. }
  167. }
  168. static function init() {
  169. add_filter( 'jetpack_open_graph_tags', array( __CLASS__, 'twitter_cards_tags' ) );
  170. add_filter( 'jetpack_open_graph_output', array( __CLASS__, 'twitter_cards_output' ) );
  171. add_filter( 'jetpack_twitter_cards_site_tag', array( __CLASS__, 'site_tag' ), -99 );
  172. add_filter( 'jetpack_twitter_cards_site_tag', array( __CLASS__, 'prioritize_creator_over_default_site' ), 99, 2 );
  173. add_action( 'admin_init', array( __CLASS__, 'settings_init' ) );
  174. add_action( 'sharing_global_options', array( __CLASS__, 'sharing_global_options' ) );
  175. add_action( 'sharing_admin_update', array( __CLASS__, 'settings_validate' ) );
  176. }
  177. }
  178. Jetpack_Twitter_Cards::init();