tiled-gallery.php
214 lines
| 1 | <?php //phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
| 2 | /** |
| 3 | * Tiled Gallery block. |
| 4 | * Relies on Photon, but can be used even when the module is not active. |
| 5 | * |
| 6 | * @since 6.9.0 |
| 7 | * |
| 8 | * @package automattic/jetpack |
| 9 | */ |
| 10 | |
| 11 | namespace Automattic\Jetpack\Extensions; |
| 12 | |
| 13 | use Automattic\Jetpack\Blocks; |
| 14 | use Automattic\Jetpack\Current_Plan as Jetpack_Plan; |
| 15 | use Automattic\Jetpack\Status; |
| 16 | use Automattic\Jetpack\Status\Host; |
| 17 | use Jetpack; |
| 18 | use Jetpack_Gutenberg; |
| 19 | |
| 20 | /** |
| 21 | * Jetpack Tiled Gallery Block class |
| 22 | * |
| 23 | * @since 7.3 |
| 24 | */ |
| 25 | class Tiled_Gallery { |
| 26 | /* Values for building srcsets */ |
| 27 | const IMG_SRCSET_WIDTH_MAX = 2000; |
| 28 | const IMG_SRCSET_WIDTH_MIN = 600; |
| 29 | const IMG_SRCSET_WIDTH_STEP = 300; |
| 30 | |
| 31 | /** |
| 32 | * Register the block |
| 33 | */ |
| 34 | public static function register() { |
| 35 | if ( |
| 36 | ( defined( 'IS_WPCOM' ) && IS_WPCOM ) |
| 37 | || Jetpack::is_connection_ready() |
| 38 | || ( new Status() )->is_offline_mode() |
| 39 | ) { |
| 40 | Blocks::jetpack_register_block( |
| 41 | __DIR__, |
| 42 | array( |
| 43 | 'render_callback' => array( __CLASS__, 'render' ), |
| 44 | ) |
| 45 | ); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Tiled gallery block registration |
| 51 | * |
| 52 | * @param array $attr Array containing the block attributes. |
| 53 | * @param string $content String containing the block content. |
| 54 | * |
| 55 | * @return string |
| 56 | */ |
| 57 | public static function render( $attr, $content ) { |
| 58 | Jetpack_Gutenberg::load_assets_as_required( __DIR__ ); |
| 59 | |
| 60 | $is_squareish_layout = self::is_squareish_layout( $attr ); |
| 61 | // For backward compatibility (ensuring Tiled Galleries using now deprecated versions of the block are not affected). |
| 62 | // See isVIP() in utils/index.js. |
| 63 | $jetpack_plan = Jetpack_Plan::get(); |
| 64 | wp_localize_script( 'jetpack-gallery-settings', 'jetpack_plan', array( 'data' => $jetpack_plan['product_slug'] ) ); |
| 65 | |
| 66 | if ( preg_match_all( '/<img [^>]+>/', $content, $images ) ) { |
| 67 | /** |
| 68 | * This block processes all of the images that are found and builds $find and $replace. |
| 69 | * |
| 70 | * The original img is added to the $find array and the replacement is made and added |
| 71 | * to the $replace array. This is so that the same find and replace operations can be |
| 72 | * made on the entire $content. |
| 73 | */ |
| 74 | $find = array(); |
| 75 | $replace = array(); |
| 76 | |
| 77 | foreach ( $images[0] as $image_html ) { |
| 78 | if ( |
| 79 | preg_match( '/data-width="([0-9]+)"/', $image_html, $img_width ) |
| 80 | && preg_match( '/data-height="([0-9]+)"/', $image_html, $img_height ) |
| 81 | && preg_match( '/src="([^"]+)"/', $image_html, $img_src ) |
| 82 | ) { |
| 83 | // Drop img src query string so it can be used as a base to add photon params |
| 84 | // for the srcset. |
| 85 | $src_parts = explode( '?', $img_src[1], 2 ); |
| 86 | $orig_src = $src_parts[0]; |
| 87 | $orig_height = absint( $img_height[1] ); |
| 88 | $orig_width = absint( $img_width[1] ); |
| 89 | |
| 90 | // Because URLs are already "photon", the photon function used short-circuits |
| 91 | // before ssl is added. Detect ssl and add is if necessary. |
| 92 | $is_ssl = ! empty( $src_parts[1] ) && str_contains( $src_parts[1], 'ssl=1' ); |
| 93 | |
| 94 | if ( ! $orig_width || ! $orig_height || ! $orig_src ) { |
| 95 | continue; |
| 96 | } |
| 97 | |
| 98 | $srcset_parts = array(); |
| 99 | if ( $is_squareish_layout ) { |
| 100 | $min_width = min( self::IMG_SRCSET_WIDTH_MIN, $orig_width, $orig_height ); |
| 101 | $max_width = min( self::IMG_SRCSET_WIDTH_MAX, $orig_width, $orig_height ); |
| 102 | |
| 103 | for ( $w = $min_width; $w <= $max_width; $w = min( $max_width, $w + self::IMG_SRCSET_WIDTH_STEP ) ) { |
| 104 | $srcset_src = add_query_arg( |
| 105 | array( |
| 106 | 'resize' => $w . ',' . $w, |
| 107 | 'strip' => 'info', |
| 108 | ), |
| 109 | $orig_src |
| 110 | ); |
| 111 | if ( $is_ssl ) { |
| 112 | $srcset_src = add_query_arg( 'ssl', '1', $srcset_src ); |
| 113 | } |
| 114 | $srcset_parts[] = esc_url( $srcset_src ) . ' ' . $w . 'w'; |
| 115 | if ( $w >= $max_width ) { |
| 116 | break; |
| 117 | } |
| 118 | } |
| 119 | } else { |
| 120 | $min_width = min( self::IMG_SRCSET_WIDTH_MIN, $orig_width ); |
| 121 | $max_width = min( self::IMG_SRCSET_WIDTH_MAX, $orig_width ); |
| 122 | |
| 123 | for ( $w = $min_width; $w <= $max_width; $w = min( $max_width, $w + self::IMG_SRCSET_WIDTH_STEP ) ) { |
| 124 | $srcset_src = add_query_arg( |
| 125 | array( |
| 126 | 'strip' => 'info', |
| 127 | 'w' => $w, |
| 128 | ), |
| 129 | $orig_src |
| 130 | ); |
| 131 | if ( $is_ssl ) { |
| 132 | $srcset_src = add_query_arg( 'ssl', '1', $srcset_src ); |
| 133 | } |
| 134 | $srcset_parts[] = esc_url( $srcset_src ) . ' ' . $w . 'w'; |
| 135 | if ( $w >= $max_width ) { |
| 136 | break; |
| 137 | } |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | if ( ! empty( $srcset_parts ) ) { |
| 142 | $srcset = 'srcset="' . esc_attr( implode( ',', $srcset_parts ) ) . '"'; |
| 143 | |
| 144 | $find[] = $image_html; |
| 145 | $replace[] = str_replace( '<img', '<img ' . $srcset, $image_html ); |
| 146 | } |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | if ( ! empty( $find ) ) { |
| 151 | $content = str_replace( $find, $replace, $content ); |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | // Apply non-interactive markup last to clean up interactivity attributes. |
| 156 | $content = self::non_interactive_markup( $attr, $content ); |
| 157 | |
| 158 | /** |
| 159 | * Filter the output of the Tiled Galleries content. |
| 160 | * |
| 161 | * @module tiled-gallery |
| 162 | * |
| 163 | * @since 6.9.0 |
| 164 | * |
| 165 | * @param string $content Tiled Gallery block content. |
| 166 | */ |
| 167 | return apply_filters( 'jetpack_tiled_galleries_block_content', $content ); |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Removes tabindex and role markup for images that should not be interactive. |
| 172 | * |
| 173 | * @param array $attr Attributes key/value array. |
| 174 | * @param string $content String containing the block content. |
| 175 | */ |
| 176 | private static function non_interactive_markup( $attr, $content ) { |
| 177 | $link_to = $attr['linkTo'] ?? 'none'; |
| 178 | |
| 179 | $host = new Host(); |
| 180 | $is_module_active = $host->is_wpcom_simple() |
| 181 | ? get_option( 'carousel_enable_it' ) |
| 182 | : Jetpack::is_module_active( 'carousel' ); |
| 183 | |
| 184 | if ( $link_to === 'none' && ! $is_module_active ) { |
| 185 | // Remove tabIndex and role="button" by replacing the content |
| 186 | $content = preg_replace( |
| 187 | '/\s*(role="button"|tabindex="0")/', |
| 188 | '', |
| 189 | $content |
| 190 | ); |
| 191 | } |
| 192 | return $content; |
| 193 | } |
| 194 | |
| 195 | /** |
| 196 | * Determines whether a Tiled Gallery block uses square or circle images (1:1 ratio) |
| 197 | * |
| 198 | * Layouts are block styles and will be available as `is-style-[LAYOUT]` in the className |
| 199 | * attribute. The default (rectangular) will be omitted. |
| 200 | * |
| 201 | * @param array $attr Attributes key/value array. |
| 202 | * @return boolean True if layout is squareish, otherwise false. |
| 203 | */ |
| 204 | private static function is_squareish_layout( $attr ) { |
| 205 | return isset( $attr['className'] ) |
| 206 | && ( |
| 207 | 'is-style-square' === $attr['className'] |
| 208 | || 'is-style-circle' === $attr['className'] |
| 209 | ); |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | add_action( 'init', array( Tiled_Gallery::class, 'register' ) ); |
| 214 |