tiled-gallery.php
187 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 Jetpack; |
| 17 | use Jetpack_Gutenberg; |
| 18 | |
| 19 | /** |
| 20 | * Jetpack Tiled Gallery Block class |
| 21 | * |
| 22 | * @since 7.3 |
| 23 | */ |
| 24 | class Tiled_Gallery { |
| 25 | const FEATURE_NAME = 'tiled-gallery'; |
| 26 | const BLOCK_NAME = 'jetpack/' . self::FEATURE_NAME; |
| 27 | |
| 28 | /* Values for building srcsets */ |
| 29 | const IMG_SRCSET_WIDTH_MAX = 2000; |
| 30 | const IMG_SRCSET_WIDTH_MIN = 600; |
| 31 | const IMG_SRCSET_WIDTH_STEP = 300; |
| 32 | |
| 33 | /** |
| 34 | * Register the block |
| 35 | */ |
| 36 | public static function register() { |
| 37 | if ( |
| 38 | ( defined( 'IS_WPCOM' ) && IS_WPCOM ) |
| 39 | || Jetpack::is_connection_ready() |
| 40 | || ( new Status() )->is_offline_mode() |
| 41 | ) { |
| 42 | Blocks::jetpack_register_block( |
| 43 | self::BLOCK_NAME, |
| 44 | array( |
| 45 | 'render_callback' => array( __CLASS__, 'render' ), |
| 46 | ) |
| 47 | ); |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Tiled gallery block registration |
| 53 | * |
| 54 | * @param array $attr Array containing the block attributes. |
| 55 | * @param string $content String containing the block content. |
| 56 | * |
| 57 | * @return string |
| 58 | */ |
| 59 | public static function render( $attr, $content ) { |
| 60 | Jetpack_Gutenberg::load_assets_as_required( self::FEATURE_NAME ); |
| 61 | |
| 62 | $is_squareish_layout = self::is_squareish_layout( $attr ); |
| 63 | |
| 64 | $jetpack_plan = Jetpack_Plan::get(); |
| 65 | wp_localize_script( 'jetpack-gallery-settings', 'jetpack_plan', array( 'data' => $jetpack_plan['product_slug'] ) ); |
| 66 | |
| 67 | if ( preg_match_all( '/<img [^>]+>/', $content, $images ) ) { |
| 68 | /** |
| 69 | * This block processes all of the images that are found and builds $find and $replace. |
| 70 | * |
| 71 | * The original img is added to the $find array and the replacement is made and added |
| 72 | * to the $replace array. This is so that the same find and replace operations can be |
| 73 | * made on the entire $content. |
| 74 | */ |
| 75 | $find = array(); |
| 76 | $replace = array(); |
| 77 | |
| 78 | foreach ( $images[0] as $image_html ) { |
| 79 | if ( |
| 80 | preg_match( '/data-width="([0-9]+)"/', $image_html, $img_width ) |
| 81 | && preg_match( '/data-height="([0-9]+)"/', $image_html, $img_height ) |
| 82 | && preg_match( '/src="([^"]+)"/', $image_html, $img_src ) |
| 83 | ) { |
| 84 | // Drop img src query string so it can be used as a base to add photon params |
| 85 | // for the srcset. |
| 86 | $src_parts = explode( '?', $img_src[1], 2 ); |
| 87 | $orig_src = $src_parts[0]; |
| 88 | $orig_height = absint( $img_height[1] ); |
| 89 | $orig_width = absint( $img_width[1] ); |
| 90 | |
| 91 | // Because URLs are already "photon", the photon function used short-circuits |
| 92 | // before ssl is added. Detect ssl and add is if necessary. |
| 93 | $is_ssl = ! empty( $src_parts[1] ) && false !== strpos( $src_parts[1], 'ssl=1' ); |
| 94 | |
| 95 | if ( ! $orig_width || ! $orig_height || ! $orig_src ) { |
| 96 | continue; |
| 97 | } |
| 98 | |
| 99 | $srcset_parts = array(); |
| 100 | if ( $is_squareish_layout ) { |
| 101 | $min_width = min( self::IMG_SRCSET_WIDTH_MIN, $orig_width, $orig_height ); |
| 102 | $max_width = min( self::IMG_SRCSET_WIDTH_MAX, $orig_width, $orig_height ); |
| 103 | |
| 104 | for ( $w = $min_width; $w <= $max_width; $w = min( $max_width, $w + self::IMG_SRCSET_WIDTH_STEP ) ) { |
| 105 | $srcset_src = add_query_arg( |
| 106 | array( |
| 107 | 'resize' => $w . ',' . $w, |
| 108 | 'strip' => 'info', |
| 109 | ), |
| 110 | $orig_src |
| 111 | ); |
| 112 | if ( $is_ssl ) { |
| 113 | $srcset_src = add_query_arg( 'ssl', '1', $srcset_src ); |
| 114 | } |
| 115 | $srcset_parts[] = esc_url( $srcset_src ) . ' ' . $w . 'w'; |
| 116 | if ( $w >= $max_width ) { |
| 117 | break; |
| 118 | } |
| 119 | } |
| 120 | } else { |
| 121 | $min_width = min( self::IMG_SRCSET_WIDTH_MIN, $orig_width ); |
| 122 | $max_width = min( self::IMG_SRCSET_WIDTH_MAX, $orig_width ); |
| 123 | |
| 124 | for ( $w = $min_width; $w <= $max_width; $w = min( $max_width, $w + self::IMG_SRCSET_WIDTH_STEP ) ) { |
| 125 | $srcset_src = add_query_arg( |
| 126 | array( |
| 127 | 'strip' => 'info', |
| 128 | 'w' => $w, |
| 129 | ), |
| 130 | $orig_src |
| 131 | ); |
| 132 | if ( $is_ssl ) { |
| 133 | $srcset_src = add_query_arg( 'ssl', '1', $srcset_src ); |
| 134 | } |
| 135 | $srcset_parts[] = esc_url( $srcset_src ) . ' ' . $w . 'w'; |
| 136 | if ( $w >= $max_width ) { |
| 137 | break; |
| 138 | } |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | if ( ! empty( $srcset_parts ) ) { |
| 143 | $srcset = 'srcset="' . esc_attr( implode( ',', $srcset_parts ) ) . '"'; |
| 144 | |
| 145 | $find[] = $image_html; |
| 146 | $replace[] = str_replace( '<img', '<img ' . $srcset, $image_html ); |
| 147 | } |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | if ( ! empty( $find ) ) { |
| 152 | $content = str_replace( $find, $replace, $content ); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Filter the output of the Tiled Galleries content. |
| 158 | * |
| 159 | * @module tiled-gallery |
| 160 | * |
| 161 | * @since 6.9.0 |
| 162 | * |
| 163 | * @param string $content Tiled Gallery block content. |
| 164 | */ |
| 165 | return apply_filters( 'jetpack_tiled_galleries_block_content', $content ); |
| 166 | } |
| 167 | |
| 168 | /** |
| 169 | * Determines whether a Tiled Gallery block uses square or circle images (1:1 ratio) |
| 170 | * |
| 171 | * Layouts are block styles and will be available as `is-style-[LAYOUT]` in the className |
| 172 | * attribute. The default (rectangular) will be omitted. |
| 173 | * |
| 174 | * @param {Array} $attr Attributes key/value array. |
| 175 | * @return {boolean} True if layout is squareish, otherwise false. |
| 176 | */ |
| 177 | private static function is_squareish_layout( $attr ) { |
| 178 | return isset( $attr['className'] ) |
| 179 | && ( |
| 180 | 'is-style-square' === $attr['className'] |
| 181 | || 'is-style-circle' === $attr['className'] |
| 182 | ); |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | Tiled_Gallery::register(); |
| 187 |