wordads.php
176 lines
| 1 | <?php //phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
| 2 | /** |
| 3 | * Ads Block. |
| 4 | * |
| 5 | * @since 7.1.0 |
| 6 | * |
| 7 | * @package automattic/jetpack |
| 8 | */ |
| 9 | |
| 10 | namespace Automattic\Jetpack\Extensions; |
| 11 | |
| 12 | use Automattic\Jetpack\Blocks; |
| 13 | use Automattic\Jetpack\Current_Plan as Jetpack_Plan; |
| 14 | use Jetpack; |
| 15 | use Jetpack_Gutenberg; |
| 16 | |
| 17 | /** |
| 18 | * Jetpack's Ads Block class. |
| 19 | * |
| 20 | * @since 7.1.0 |
| 21 | */ |
| 22 | class WordAds { |
| 23 | /** |
| 24 | * Mapping array of gutenberg ad snippet with the WordAds_Smart formats. |
| 25 | * |
| 26 | * @var array |
| 27 | */ |
| 28 | private static $gutenberg_ad_snippet_x_smart_format = array( |
| 29 | 'gutenberg_300x250' => 'gutenberg_rectangle', |
| 30 | 'gutenberg_728x90' => 'gutenberg_leaderboard', |
| 31 | 'gutenberg_320x50' => 'gutenberg_mobile_leaderboard', |
| 32 | 'gutenberg_160x600' => 'gutenberg_skyscraper', |
| 33 | ); |
| 34 | |
| 35 | /** |
| 36 | * Check if site is on WP.com Simple. |
| 37 | * |
| 38 | * @return bool |
| 39 | */ |
| 40 | private static function is_wpcom() { |
| 41 | return defined( 'IS_WPCOM' ) && IS_WPCOM; |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Check if the WordAds module is active. |
| 46 | * |
| 47 | * @return bool |
| 48 | */ |
| 49 | private static function is_jetpack_module_active() { |
| 50 | return method_exists( 'Jetpack', 'is_module_active' ) && Jetpack::is_module_active( 'wordads' ); |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Check if the site is approved for ads for WP.com Simple sites. |
| 55 | * |
| 56 | * @return bool |
| 57 | */ |
| 58 | private static function is_available() { |
| 59 | if ( self::is_wpcom() ) { |
| 60 | return has_any_blog_stickers( array( 'wordads', 'wordads-approved', 'wordads-approved-misfits' ), get_current_blog_id() ); |
| 61 | } |
| 62 | |
| 63 | return Jetpack_Plan::supports( 'wordads' ); |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * Register the WordAds block. |
| 68 | */ |
| 69 | public static function register() { |
| 70 | if ( self::is_available() ) { |
| 71 | Blocks::jetpack_register_block( |
| 72 | __DIR__, |
| 73 | array( |
| 74 | 'render_callback' => array( __CLASS__, 'gutenblock_render' ), |
| 75 | ) |
| 76 | ); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Set if the WordAds block is available. |
| 82 | */ |
| 83 | public static function set_availability() { |
| 84 | $block_name = 'wordads'; |
| 85 | |
| 86 | if ( ! self::is_available() ) { |
| 87 | Jetpack_Gutenberg::set_extension_unavailable( $block_name, 'WordAds unavailable' ); |
| 88 | return; |
| 89 | } |
| 90 | // Make the block available. Just in case it wasn't registered before. |
| 91 | Jetpack_Gutenberg::set_extension_available( $block_name ); |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Renders the WordAds block. |
| 96 | * |
| 97 | * @param array $attr Block attributes. |
| 98 | * |
| 99 | * @return string Block HTML. |
| 100 | */ |
| 101 | public static function gutenblock_render( $attr ) { |
| 102 | global $wordads; |
| 103 | |
| 104 | /** If the WordAds module is not active, don't render the block. */ |
| 105 | if ( ! self::is_jetpack_module_active() ) { |
| 106 | return ''; |
| 107 | } |
| 108 | |
| 109 | /** This filter is already documented in modules/wordads/class-wordads.php `insert_ad()` */ |
| 110 | if ( |
| 111 | empty( $wordads ) |
| 112 | || empty( $wordads->params ) |
| 113 | || is_feed() |
| 114 | || apply_filters( 'wordads_inpost_disable', false ) |
| 115 | ) { |
| 116 | return ''; |
| 117 | } |
| 118 | |
| 119 | if ( ! empty( $attr['hideMobile'] ) && $wordads->params->is_mobile() ) { |
| 120 | return ''; |
| 121 | } |
| 122 | |
| 123 | if ( ! self::is_wpcom() && $wordads->option( 'wordads_house' ) ) { |
| 124 | return $wordads->get_ad( 'inline', 'house' ); |
| 125 | } |
| 126 | |
| 127 | // section_id is mostly deprecated at this point, but it helps us (devs) keep track of which ads end up where |
| 128 | // 6 is to keep track of gutenblock ads. |
| 129 | $section_id = $wordads->params->blog_id . '6'; |
| 130 | $align = 'center'; |
| 131 | if ( isset( $attr['align'] ) && in_array( $attr['align'], array( 'left', 'center', 'right' ), true ) ) { |
| 132 | $align = $attr['align']; |
| 133 | } |
| 134 | $align = 'align' . $align; |
| 135 | |
| 136 | $ad_tag_ids = $wordads->get_ad_tags(); |
| 137 | $format = 'mrec'; |
| 138 | if ( isset( $attr['format'] ) && isset( $ad_tag_ids[ $attr['format'] ] ) ) { |
| 139 | $format = $attr['format']; |
| 140 | } |
| 141 | |
| 142 | $height = $ad_tag_ids[ $format ]['height']; |
| 143 | $width = $ad_tag_ids[ $format ]['width']; |
| 144 | $location = 'gutenberg'; |
| 145 | $snippet = $wordads->get_ad_snippet( $section_id, $height, $width, $location, $wordads->get_solo_unit_css() ); |
| 146 | |
| 147 | $key = "{$location}_{$width}x{$height}"; |
| 148 | $smart_format = self::$gutenberg_ad_snippet_x_smart_format[ $key ] ?? null; |
| 149 | // phpcs:disable WordPress.Security.NonceVerification.Recommended |
| 150 | $is_watl_enabled = $smart_format && ( isset( $_GET[ $smart_format ] ) && 'true' === $_GET[ $smart_format ] ); |
| 151 | $ad_div = $wordads->get_ad_div( 'inline', $snippet, array( $align ) ); |
| 152 | // Render IPW div if WATL is not enabled. |
| 153 | if ( ! $is_watl_enabled ) { |
| 154 | return $ad_div; |
| 155 | } |
| 156 | |
| 157 | // Remove linebreaks and sanitize. |
| 158 | $snippet = esc_js( str_replace( array( "\n", "\t", "\r" ), '', $ad_div ) ); |
| 159 | |
| 160 | // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped |
| 161 | $fallback_snippet = <<<HTML |
| 162 | <script> |
| 163 | var sas_fallback = sas_fallback || []; |
| 164 | sas_fallback.push( |
| 165 | { tag: "$snippet", type: '$smart_format' } |
| 166 | ); |
| 167 | </script> |
| 168 | HTML; |
| 169 | |
| 170 | return $fallback_snippet . $wordads->get_watl_ad_html_tag( $smart_format ); |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | add_action( 'init', array( 'Automattic\\Jetpack\\Extensions\\WordAds', 'register' ) ); |
| 175 | add_action( 'jetpack_register_gutenberg_extensions', array( 'Automattic\\Jetpack\\Extensions\\WordAds', 'set_availability' ) ); |
| 176 |