| @@ -7,8 +7,10 @@ | ||
| 7 | 7 | private $is_gallery_used = true; // TODO: Would be nice to detect if the gallery is actually used on the current page. |
| 8 | 8 | private $skeleton_handler; |
| 9 | 9 | private $pro_module = false; |
| 10 | 10 | |
| 11 | + public $preview_cutoff = 12; // Limit the number of images to show in the preview (for performance reasons) | |
| 12 | + | |
| 11 | 13 | private static $plugin_option_name = 'mgl_options'; |
| 12 | 14 | private $pro; |
| 13 | 15 | private $option_name = 'mgl_options'; |
| 14 | 16 | private $infinite_layouts = [ |
| @@ -21,8 +23,11 @@ | ||
| 21 | 23 | ]; |
| 22 | 24 | |
| 23 | 25 | private $rewrittenMwlData = []; |
| 24 | 26 | |
| 27 | + // Holds the image counts of the last preview render (used by the block editor). | |
| 28 | + public $last_preview_counts = [ 'total' => 0, 'shown' => 0 ]; | |
| 29 | + | |
| 25 | 30 | public function __construct() { |
| 26 | 31 | load_plugin_textdomain( MGL_DOMAIN, false, MGL_PATH . '/languages' ); |
| 27 | 32 | |
| 28 | 33 | //TODO: Move Skeleton into PRO |
| @@ -33,16 +38,19 @@ | ||
| 33 | 38 | // Initializes the classes needed |
| 34 | 39 | MeowKit_MGL_Helpers::is_rest() && new Meow_MGL_Rest( $this ); |
| 35 | 40 | |
| 36 | 41 | // The gallery build process should only be enabled if the request is non-asynchronous |
| 42 | + add_filter( 'wp_get_attachment_image_attributes', array( $this, 'wp_get_attachment_image_attributes' ), 25, 3 ); | |
| 43 | + | |
| 37 | 44 | if ( !MeowKit_MGL_Helpers::is_asynchronous_request() ) { |
| 38 | - add_filter( 'wp_get_attachment_image_attributes', array( $this, 'wp_get_attachment_image_attributes' ), 25, 3 ); | |
| 45 | + | |
| 39 | 46 | if ( is_admin() || $this->is_gallery_used ) { |
| 40 | 47 | new Meow_MGL_Run( $this ); |
| 41 | 48 | } |
| 42 | 49 | } |
| 43 | 50 | |
| 44 | - // Load the Pro version *after* loading the Run class due to the JS file was gatherd into one file. | |
| 51 | + // Load the Pro version *after* the Run class: both share the same JS bundle, and Run is | |
| 52 | + // the one registering it (the Pro class only localizes extra data on it). | |
| 45 | 53 | |
| 46 | 54 | $this->pro_module = class_exists( 'MeowPro_MGL_Core' ); |
| 47 | 55 | if ( $this->pro_module ) { |
| 48 | 56 | $this->pro = new MeowPro_MGL_Core( $this ); |
| @@ -69,8 +77,34 @@ | ||
| 69 | 77 | function collection() { |
| 70 | 78 | return "<b>Meow Collection</b>: This is only available in the Pro version. Please <a href='https://meowapps.com/products/meow-gallery-pro/'>upgrade to Meow Gallery Pro</a> to use this feature."; |
| 71 | 79 | } |
| 72 | 80 | |
| 81 | + // Gallery and collection IDs are plain identifiers (generate_uniqid(), stored as varchar). | |
| 82 | + // Anything else is rejected, and rejected rather than stripped: stripping could turn a crafted | |
| 83 | + // ID into a different existing one. Security: esc_attr() does NOT escape "]", so an ID coming | |
| 84 | + // from a request and concatenated into a shortcode string could close the tag and run | |
| 85 | + // arbitrary shortcodes. Keep IDs on this charset and never build a shortcode string from them. | |
| 86 | + public static function sanitize_id( $id ) { | |
| 87 | + if ( !is_scalar( $id ) ) { | |
| 88 | + return ''; | |
| 89 | + } | |
| 90 | + $id = (string) $id; | |
| 91 | + return preg_match( '/^[A-Za-z0-9_-]+$/', $id ) ? $id : ''; | |
| 92 | + } | |
| 93 | + | |
| 94 | + // Renders a collection from its ID. Deliberately calls the handler directly instead of going | |
| 95 | + // through do_shortcode(): there is no shortcode string to inject into that way. | |
| 96 | + public function render_collection( $id, $is_preview = false ) { | |
| 97 | + $id = self::sanitize_id( $id ); | |
| 98 | + if ( $id === '' ) { | |
| 99 | + return "<p class='meow-error'><b>Meow Gallery:</b> This collection ID is not valid.</p>"; | |
| 100 | + } | |
| 101 | + if ( $this->pro_module && $this->pro ) { | |
| 102 | + return $this->pro->collection( array( 'id' => $id ), $is_preview ); | |
| 103 | + } | |
| 104 | + return $this->collection(); | |
| 105 | + } | |
| 106 | + | |
| 73 | 107 | public function can_access_settings() { |
| 74 | 108 | return apply_filters( 'mgl_allow_setup', current_user_can( 'manage_options' ) ); |
| 75 | 109 | } |
| 76 | 110 | |
| @@ -95,11 +129,14 @@ | ||
| 95 | 129 | else if ( $this->gallery_layout === 'cascade' ) |
| 96 | 130 | $sizes = '80vw'; |
| 97 | 131 | else if ( $this->gallery_layout === 'justified' ) |
| 98 | 132 | $sizes = '(max-width: 800px) 80vw, 50vw'; |
| 133 | + | |
| 99 | 134 | $sizes = apply_filters( 'mgl_sizes', $sizes, $this->gallery_layout, $attachment, $attr ); |
| 135 | + | |
| 100 | 136 | if ( !empty( $sizes ) ) |
| 101 | 137 | $attr['sizes'] = $sizes; |
| 138 | + | |
| 102 | 139 | return $attr; |
| 103 | 140 | } |
| 104 | 141 | |
| 105 | 142 | function get_rewritten_mwl_data() { |
| @@ -105,8 +142,14 @@ | ||
| 105 | 142 | function get_rewritten_mwl_data() { |
| 106 | 143 | return $this->rewrittenMwlData; |
| 107 | 144 | } |
| 108 | 145 | |
| 146 | + // Get the IDs of the image attachments attached to the current post. | |
| 147 | + private function get_attached_image_ids() { | |
| 148 | + $attachments = get_attached_media( 'image' ); | |
| 149 | + return array_map( function( $x ) { return $x->ID; }, $attachments ); | |
| 150 | + } | |
| 151 | + | |
| 109 | 152 | function gallery( $atts, $options = [] ) { |
| 110 | 153 | $atts = apply_filters( 'shortcode_atts_gallery', $atts, null, $atts, 'gallery' ); |
| 111 | 154 | |
| 112 | 155 | $isPreview = isset( $options['isPreview'] ) ? $options['isPreview'] : false; |
| @@ -126,11 +169,11 @@ | ||
| 126 | 169 | if ( isset( $atts['meow'] ) && $atts['meow'] === 'false' ) { |
| 127 | 170 | return gallery_shortcode( $atts ); |
| 128 | 171 | } |
| 129 | 172 | |
| 130 | - // If the attributes contain "collection" then use the collection shortcode instead | |
| 173 | + // If the attributes contain "collection" then render that collection instead | |
| 131 | 174 | if ( isset( $atts['collection'] ) && !empty( $atts['collection'] ) ) { |
| 132 | - return do_shortcode( '[meow-collection id="' . $atts['collection'] . '"]' ); | |
| 175 | + return $this->render_collection( $atts['collection'] ); | |
| 133 | 176 | } |
| 134 | 177 | |
| 135 | 178 | $image_ids = array(); |
| 136 | 179 | $layout = ''; |
| @@ -141,8 +184,9 @@ | ||
| 141 | 184 | $has_include = isset( $atts['include'] ) && !empty( $atts['include'] ); |
| 142 | 185 | $has_tags = isset( $atts['tags'] ) && !empty( $atts['tags'] ); |
| 143 | 186 | $has_posts = isset( $atts['posts'] ) && !empty( $atts['posts'] ); |
| 144 | 187 | $has_latest_posts = isset( $atts['latest_posts'] ) && !empty( $atts['latest_posts'] ); |
| 188 | + $has_attachments = isset( $atts['attachments'] ) && ( $atts['attachments'] === 'true' || $atts['attachments'] === true || $atts['attachments'] === 1 || $atts['attachments'] === '1' ); | |
| 145 | 189 | |
| 146 | 190 | if ( $has_id && $has_ids ) { |
| 147 | 191 | unset( $atts['ids'] ); |
| 148 | 192 | error_log( "⚠️ Meow Gallery: in gallery $atts[id] both 'id' and 'ids' attributes are used in the same shortcode. 'id' will be ignored." ); |
| @@ -156,9 +200,10 @@ | ||
| 156 | 200 | try { |
| 157 | 201 | $shortcode = $this->get_gallery_by_id( $shortcode_id ); |
| 158 | 202 | } |
| 159 | 203 | catch ( Exception $e ) { |
| 160 | - return "<p class='meow-error'><b>Meow Gallery:</b> This ID wasn't found in the Gallery Manager. (ID: $shortcode_id). " . $e->getMessage() . "</p>"; | |
| 204 | + $safe_id = esc_html( is_scalar( $shortcode_id ) ? $shortcode_id : '' ); | |
| 205 | + return "<p class='meow-error'><b>Meow Gallery:</b> This ID wasn't found in the Gallery Manager. (ID: $safe_id). " . esc_html( $e->getMessage() ) . "</p>"; | |
| 161 | 206 | } |
| 162 | 207 | |
| 163 | 208 | if ( !isset( $shortcode['medias'] ) || !isset( $shortcode['medias']['thumbnail_ids'])) { |
| 164 | 209 | return "<p class='meow-error'><b>Meow Gallery:</b> Thumbnail IDs not found.</p>"; |
| @@ -176,8 +221,21 @@ | ||
| 176 | 221 | |
| 177 | 222 | $atts = array_merge( $shortcode, $atts ); |
| 178 | 223 | } |
| 179 | 224 | |
| 225 | + // Real Media Library folder path (e.g. rml="2025/France/Tours"). | |
| 226 | + // Re-evaluated here (not only from the top) so it also works when the value | |
| 227 | + // comes from a saved gallery loaded via [gallery id="..."]. The logic lives | |
| 228 | + // in Meow_MGL_RML::get_image_ids() to keep this method clean. | |
| 229 | + $has_rml = isset( $atts['rml'] ) && !empty( $atts['rml'] ); | |
| 230 | + if ( $has_rml ) { | |
| 231 | + $rml_ids = Meow_MGL_RML::get_image_ids( $atts['rml'] ); | |
| 232 | + if ( is_wp_error( $rml_ids ) ) { | |
| 233 | + return "<p class='meow-error'><b>Meow Gallery:</b> " . esc_html( $rml_ids->get_error_message() ) . "</p>"; | |
| 234 | + } | |
| 235 | + $image_ids = implode( ',', $rml_ids ); | |
| 236 | + } | |
| 237 | + | |
| 180 | 238 | if ( $has_ids ) { |
| 181 | 239 | $image_ids = $atts['ids']; |
| 182 | 240 | } |
| 183 | 241 | |
| @@ -252,8 +310,15 @@ | ||
| 252 | 310 | } |
| 253 | 311 | |
| 254 | 312 | } |
| 255 | 313 | |
| 314 | + if( $has_attachments ) { | |
| 315 | + $attachmentIds = $this->get_attached_image_ids(); | |
| 316 | + if ( !empty( $attachmentIds ) ) { | |
| 317 | + $image_ids = implode( ',', $attachmentIds ); | |
| 318 | + } | |
| 319 | + } | |
| 320 | + | |
| 256 | 321 | $posts_ids = []; |
| 257 | 322 | if ( $has_posts ) { |
| 258 | 323 | |
| 259 | 324 | $posts_ids = is_array( $atts['posts'] ) ? $atts['posts'] : explode( ',', $atts['posts'] ); |
| @@ -283,23 +348,32 @@ | ||
| 283 | 348 | $image_ids = implode( ',', $ids ); |
| 284 | 349 | |
| 285 | 350 | #endregion |
| 286 | 351 | |
| 287 | - // Use attached images if still empty | |
| 288 | - if ( empty( $image_ids ) ) { | |
| 289 | - $attachments = get_attached_media( 'image' ); | |
| 290 | - $attachmentIds = array_map( function($x) { return $x->ID; }, $attachments ); | |
| 352 | + // Fall back to the attachments of the current post if the gallery is empty and the option is enabled. | |
| 353 | + if ( empty( $image_ids ) && !$has_attachments && $this->get_option( 'use_attachments_on_empty', false ) ) { | |
| 354 | + $attachmentIds = $this->get_attached_image_ids(); | |
| 291 | 355 | if ( !empty( $attachmentIds ) ) { |
| 292 | 356 | $image_ids = implode( ',', $attachmentIds ); |
| 357 | + $has_attachments = true; | |
| 293 | 358 | } |
| 294 | - else { | |
| 295 | - return "<p class='meow-error'><b>Meow Gallery:</b> The gallery is empty.</p>"; | |
| 359 | + } | |
| 360 | + | |
| 361 | + // Use attached images if still empty | |
| 362 | + if ( empty( $image_ids ) ) { | |
| 363 | + | |
| 364 | + if( $has_attachments ) { | |
| 365 | + return "<p class='meow-error'><b>Meow Gallery:</b> No attached medias were found in the current post.</p>"; | |
| 296 | 366 | } |
| 367 | + | |
| 368 | + return "<p class='meow-error'><b>Meow Gallery:</b> The gallery is empty.</p>"; | |
| 297 | 369 | } |
| 298 | 370 | |
| 299 | 371 | if ( $isPreview ) { |
| 300 | 372 | $check = explode( ',', $image_ids ); |
| 301 | - $check = array_slice( $check, 0, 40 ); | |
| 373 | + $total = count( $check ); | |
| 374 | + $check = array_slice( $check, 0, $this->preview_cutoff ); | |
| 375 | + $this->last_preview_counts = [ 'total' => $total, 'shown' => count( $check ) ]; | |
| 302 | 376 | $image_ids = implode( ',', $check ); |
| 303 | 377 | } |
| 304 | 378 | |
| 305 | 379 | // Limit images on archive/listing pages (not viewing the full single post) |
| @@ -475,9 +549,11 @@ | ||
| 475 | 549 | |
| 476 | 550 | foreach ( $gallery_images as $image ) { |
| 477 | 551 | if ( !empty( $image['link_href'] ) ) { |
| 478 | 552 | // If there is a link, we will get the alt from the image id so we have a proper aria-label |
| 479 | - $aria = get_post_meta( $image['id'], '_wp_attachment_image_alt', true ); | |
| 553 | + $aria_label = __('Open image', MGL_DOMAIN); | |
| 554 | + $aria_value = esc_attr( get_post_meta( $image['id'], '_wp_attachment_image_alt', true ) ); | |
| 555 | + $aria = !empty( $aria_value ) ? $aria_label . ': ' . $aria_value : $aria_label; | |
| 480 | 556 | |
| 481 | 557 | $custom_link_classes = apply_filters( 'mgl_custom_link_classes', '', $image ); |
| 482 | 558 | $html .= '<a class="' . $custom_link_classes . '" href="' . $image['link_href'] . '" target="' . $image['link_target'] . '" rel="' . $image['link_rel'] . |
| 483 | 559 | '" aria-label="' . $aria . '">'; |
| @@ -635,8 +711,26 @@ | ||
| 635 | 711 | static function get_plugin_option_name() { |
| 636 | 712 | return self::$plugin_option_name; |
| 637 | 713 | } |
| 638 | 714 | |
| 715 | + // Tiles density, from the shortcode attributes when they set one, from the options otherwise. | |
| 716 | + // Shared by the front-end settings (Meow_MGL_Run) and the tiles CSS (Meow_MGL_Builders_Tiles). | |
| 717 | + static function get_tiles_density( $atts = [] ) { | |
| 718 | + if ( isset( $atts['density'] ) ) { | |
| 719 | + return array( | |
| 720 | + 'desktop' => $atts['density'], | |
| 721 | + 'tablet' => $atts['density'], | |
| 722 | + 'mobile' => $atts['density'], | |
| 723 | + ); | |
| 724 | + } | |
| 725 | + $options = get_option( self::$plugin_option_name, [] ); | |
| 726 | + return array( | |
| 727 | + 'desktop' => $options['tiles_density'] ?? 'high', | |
| 728 | + 'tablet' => $options['tiles_density_tablet'] ?? 'medium', | |
| 729 | + 'mobile' => $options['tiles_density_mobile'] ?? 'low', | |
| 730 | + ); | |
| 731 | + } | |
| 732 | + | |
| 639 | 733 | static function get_plugin_option( $option_name, $default = null ) { |
| 640 | 734 | $options = get_option( self::$plugin_option_name, null ); |
| 641 | 735 | if ( !empty( $options ) && array_key_exists( $option_name, $options ) ) { |
| 642 | 736 | return $options[$option_name]; |
| @@ -668,8 +762,10 @@ | ||
| 668 | 762 | 'animation' => false, |
| 669 | 763 | 'image_size' => 'srcset', |
| 670 | 764 | 'truncate_on_listing' => true, |
| 671 | 765 | 'truncate_count' => 4, |
| 766 | + 'use_attachments_on_empty' => false, | |
| 767 | + 'debug_logs' => false, | |
| 672 | 768 | |
| 673 | 769 | 'rendering_mode' => 'dom', // Can be 'dom' or 'js' |
| 674 | 770 | 'tiles_gutter' => 10, |
| 675 | 771 | 'tiles_gutter_tablet' => 10, |
| @@ -710,10 +806,13 @@ | ||
| 710 | 806 | |
| 711 | 807 | // Stylish effect options |
| 712 | 808 | 'stylish_enabled' => false, |
| 713 | 809 | 'stylish_border_radius' => 6, |
| 810 | + 'stylish_border_width' => 0, | |
| 811 | + 'stylish_border_color' => '#ffffff', | |
| 714 | 812 | 'stylish_shadow_opacity' => 0.08, |
| 715 | 813 | 'stylish_shadow_opacity_hover' => 0.12, |
| 814 | + 'stylish_hover_lift' => 2, | |
| 716 | 815 | 'stylish_transition_speed' => 250, |
| 717 | 816 | |
| 718 | 817 | //PRO OPTIONS |
| 719 | 818 | 'infinite' => false, |
| @@ -821,8 +920,16 @@ | ||
| 821 | 920 | |
| 822 | 921 | function get_gallery_images( array $image_ids, array $atts, string $layout, string $size, array $posts_ids = []) { |
| 823 | 922 | global $wpdb; |
| 824 | 923 | |
| 924 | + // Enable the image-attribute rewriting (and the 'mgl_sizes' filter) for the duration of this method. | |
| 925 | + // This matters when get_gallery_images() is called directly (e.g. infinite scroll via REST) without | |
| 926 | + // going through gallery(), which is what normally sets these on the initial page load. | |
| 927 | + $previous_gallery_process = $this->gallery_process; | |
| 928 | + $previous_gallery_layout = $this->gallery_layout; | |
| 929 | + $this->gallery_process = true; | |
| 930 | + $this->gallery_layout = $layout; | |
| 931 | + | |
| 825 | 932 | // Escape the array of IDs for SQL |
| 826 | 933 | $ids = array_map( 'intval', $image_ids ); |
| 827 | 934 | $ids_str = implode( ',', $ids ); |
| 828 | 935 | |
| @@ -860,9 +967,12 @@ | ||
| 860 | 967 | } |
| 861 | 968 | $ids = apply_filters( 'mgl_sort', $cleanIds, $images, $layout, $atts ); |
| 862 | 969 | |
| 863 | 970 | if ($layout === 'map') { |
| 864 | - return $this->get_map_images( $ids, $images, $atts ); | |
| 971 | + $map_result = $this->get_map_images( $ids, $images, $atts ); | |
| 972 | + $this->gallery_process = $previous_gallery_process; | |
| 973 | + $this->gallery_layout = $previous_gallery_layout; | |
| 974 | + return $map_result; | |
| 865 | 975 | } |
| 866 | 976 | |
| 867 | 977 | $result = []; |
| 868 | 978 | foreach ($ids as $index => $id) { |
| @@ -915,8 +1025,11 @@ | ||
| 915 | 1025 | |
| 916 | 1026 | $result[] = array_merge( $image, $mergedArray, $orientation ); |
| 917 | 1027 | } |
| 918 | 1028 | |
| 1029 | + $this->gallery_process = $previous_gallery_process; | |
| 1030 | + $this->gallery_layout = $previous_gallery_layout; | |
| 1031 | + | |
| 919 | 1032 | return $result; |
| 920 | 1033 | } |
| 921 | 1034 | |
| 922 | 1035 | private function get_image_class( $id, $layout, $noLightbox ) { |
| @@ -1125,8 +1238,60 @@ | ||
| 1125 | 1238 | } |
| 1126 | 1239 | } |
| 1127 | 1240 | |
| 1128 | 1241 | |
| 1242 | + /** | |
| 1243 | + * Reads the "medias" of a gallery. Only the ordered attachment IDs are stored (older versions | |
| 1244 | + * also stored their URLs and mime types, which are ignored: they were a copy of the Media | |
| 1245 | + * Library that went stale). This is also the shape that gets written back, and all the | |
| 1246 | + * front-end needs. The Admin uses hydrate_medias() to get the URLs to display. | |
| 1247 | + */ | |
| 1248 | + public static function normalize_medias( $medias ) { | |
| 1249 | + $ids = ( is_array( $medias ) && isset( $medias['thumbnail_ids'] ) && is_array( $medias['thumbnail_ids'] ) ) | |
| 1250 | + ? array_values( $medias['thumbnail_ids'] ) : []; | |
| 1251 | + | |
| 1252 | + return [ 'thumbnail_ids' => $ids ]; | |
| 1253 | + } | |
| 1254 | + | |
| 1255 | + /** | |
| 1256 | + * Adds the 'thumbnails' the Admin displays: one entry per ID, with its URLs and mime type | |
| 1257 | + * resolved from the Media Library. Never stale, and a deleted attachment simply gets empty | |
| 1258 | + * URLs (the Admin then shows a placeholder). Not used on the front-end, which only needs | |
| 1259 | + * the IDs. | |
| 1260 | + */ | |
| 1261 | + public static function hydrate_medias( $medias ) { | |
| 1262 | + $ids = self::normalize_medias( $medias )['thumbnail_ids']; | |
| 1263 | + | |
| 1264 | + // One query for all the attachments instead of one per thumbnail. _prime_post_caches() | |
| 1265 | + // only caches the attachments which exist, so anything still absent from the cache | |
| 1266 | + // afterwards is gone: it's skipped instead of being queried on every request. | |
| 1267 | + if ( !empty( $ids ) ) { | |
| 1268 | + _prime_post_caches( array_values( array_unique( array_map( 'intval', $ids ) ) ), false, true ); | |
| 1269 | + } | |
| 1270 | + | |
| 1271 | + $thumbnails = []; | |
| 1272 | + foreach ( $ids as $id ) { | |
| 1273 | + $thumbnail = [ 'id' => $id, 'url' => '', 'zoom_url' => '', 'mime' => '' ]; | |
| 1274 | + | |
| 1275 | + if ( !empty( $id ) && wp_cache_get( (int)$id, 'posts' ) ) { | |
| 1276 | + $mime = get_post_mime_type( $id ) ?: ''; | |
| 1277 | + // Same rule as the latest_photos endpoint: videos have no image sizes, so their | |
| 1278 | + // own URL is used for both the thumbnail and the zoom. | |
| 1279 | + $is_video = strpos( $mime, 'video' ) !== false; | |
| 1280 | + $url = $is_video ? wp_get_attachment_url( $id ) : wp_get_attachment_image_url( $id, 'thumbnail' ); | |
| 1281 | + $zoom = $is_video ? $url : wp_get_attachment_image_url( $id, 'large' ); | |
| 1282 | + | |
| 1283 | + $thumbnail['url'] = $url ?: ''; | |
| 1284 | + $thumbnail['zoom_url'] = $zoom ?: $thumbnail['url']; | |
| 1285 | + $thumbnail['mime'] = $mime; | |
| 1286 | + } | |
| 1287 | + | |
| 1288 | + $thumbnails[] = $thumbnail; | |
| 1289 | + } | |
| 1290 | + | |
| 1291 | + return [ 'thumbnail_ids' => $ids, 'thumbnails' => $thumbnails ]; | |
| 1292 | + } | |
| 1293 | + | |
| 1129 | 1294 | public function get_gallery_by_id( $id ) { |
| 1130 | 1295 | global $wpdb; |
| 1131 | 1296 | $shortcodes_table = $wpdb->prefix . 'mgl_gallery_shortcodes'; |
| 1132 | 1297 | $gallery = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $shortcodes_table WHERE id = %s", $id ), ARRAY_A ); |
| @@ -1133,9 +1298,9 @@ | ||
| 1133 | 1298 | |
| 1134 | 1299 | if ( !$gallery ) { |
| 1135 | 1300 | throw new Exception( __( 'Gallery not found.', MGL_DOMAIN )); |
| 1136 | 1301 | } |
| 1137 | - $gallery['medias'] = maybe_unserialize( $gallery['medias'] ); | |
| 1302 | + $gallery['medias'] = self::normalize_medias( maybe_unserialize( $gallery['medias'] ) ); | |
| 1138 | 1303 | $gallery['posts'] = $gallery['posts'] ? maybe_unserialize( $gallery['posts'] ) : null; |
| 1139 | 1304 | $gallery['tags'] = $gallery['tags'] ? unserialize( $gallery['tags'] ) : null; |
| 1140 | 1305 | |
| 1141 | 1306 | return $gallery; |
| @@ -1152,9 +1317,9 @@ | ||
| 1152 | 1317 | $galleries[$gallery['id']] = [ |
| 1153 | 1318 | 'name' => $gallery['name'], |
| 1154 | 1319 | 'description' => $gallery['description'], |
| 1155 | 1320 | 'layout' => $gallery['layout'], |
| 1156 | - 'medias' => maybe_unserialize( $gallery['medias'] ), | |
| 1321 | + 'medias' => self::normalize_medias( maybe_unserialize( $gallery['medias'] ) ), | |
| 1157 | 1322 | 'lead_image_id' => $gallery['lead_image_id'], |
| 1158 | 1323 | 'order_by' => $gallery['order_by'], |
| 1159 | 1324 | 'is_post_mode' => ( bool )$gallery['is_post_mode'], |
| 1160 | 1325 | 'dynamic_source' => $gallery['dynamic_source'], |
| @@ -1161,8 +1326,10 @@ | ||
| 1161 | 1326 | 'hero' => ( bool )$gallery['is_hero_mode'], |
| 1162 | 1327 | 'posts' => $gallery['posts'] ? maybe_unserialize( $gallery['posts'] ) : null, |
| 1163 | 1328 | 'latest_posts' => $gallery['latest_posts'], |
| 1164 | 1329 | 'tags' => $gallery['tags'] ? unserialize( $gallery['tags'] ) : null, |
| 1330 | + 'dynamic_source' => $gallery['dynamic_source'], | |
| 1331 | + 'rml' => $gallery['rml'] ?? null, | |
| 1165 | 1332 | 'updated' => strtotime( $gallery['updated_at'] ) |
| 1166 | 1333 | ]; |
| 1167 | 1334 | } |
| 1168 | 1335 | return $galleries; |
| @@ -1210,9 +1377,9 @@ | ||
| 1210 | 1377 | $shortcodes[$gallery['id']] = [ |
| 1211 | 1378 | 'name' => $gallery['name'], |
| 1212 | 1379 | 'description' => $gallery['description'], |
| 1213 | 1380 | 'layout' => $gallery['layout'], |
| 1214 | - 'medias' => maybe_unserialize( $gallery['medias'] ), | |
| 1381 | + 'medias' => self::hydrate_medias( maybe_unserialize( $gallery['medias'] ) ), | |
| 1215 | 1382 | 'lead_image_id' => $gallery['lead_image_id'], |
| 1216 | 1383 | 'order_by' => $gallery['order_by'], |
| 1217 | 1384 | 'is_post_mode' => ( bool )$gallery['is_post_mode'], |
| 1218 | 1385 | 'hero' => ( bool )$gallery['is_hero_mode'], |
| @@ -1219,8 +1386,9 @@ | ||
| 1219 | 1386 | 'posts' => $gallery['posts'] ? maybe_unserialize( $gallery['posts'] ) : null, |
| 1220 | 1387 | 'latest_posts' => $gallery['latest_posts'], |
| 1221 | 1388 | 'tags' => $gallery['tags'] ? unserialize( $gallery['tags'] ) : null, |
| 1222 | 1389 | 'dynamic_source' => $gallery['dynamic_source'], |
| 1390 | + 'rml' => $gallery['rml'] ?? null, | |
| 1223 | 1391 | 'rank' => intval( $gallery['pref_rank'] ?? 0 ), |
| 1224 | 1392 | 'updated' => strtotime( $gallery['updated_at'] ) |
| 1225 | 1393 | ]; |
| 1226 | 1394 | } |
| @@ -1230,8 +1398,39 @@ | ||
| 1230 | 1398 | 'galleries' => $shortcodes |
| 1231 | 1399 | ]; |
| 1232 | 1400 | } |
| 1233 | 1401 | |
| 1402 | + /** | |
| 1403 | + * Just the id => name pairs, for the selectors (the Gutenberg block). They only need the | |
| 1404 | + * names, so this avoids shipping every gallery's medias in the page and, unlike | |
| 1405 | + * get_galleries(), it isn't paginated: the selectors used to be capped at 10 entries. | |
| 1406 | + */ | |
| 1407 | + public function get_gallery_names() { | |
| 1408 | + global $wpdb; | |
| 1409 | + $shortcodes_table = $wpdb->prefix . 'mgl_gallery_shortcodes'; | |
| 1410 | + Meow_MGL_Migrations::check_db(); | |
| 1411 | + | |
| 1412 | + $names = []; | |
| 1413 | + $results = $wpdb->get_results( "SELECT id, name FROM $shortcodes_table ORDER BY name ASC", ARRAY_A ); | |
| 1414 | + foreach ( $results as $gallery ) { | |
| 1415 | + $names[$gallery['id']] = [ 'name' => $gallery['name'] ]; | |
| 1416 | + } | |
| 1417 | + return [ 'galleries' => $names ]; | |
| 1418 | + } | |
| 1419 | + | |
| 1420 | + public function get_collection_names() { | |
| 1421 | + global $wpdb; | |
| 1422 | + $collections_table = $wpdb->prefix . 'mgl_collections'; | |
| 1423 | + Meow_MGL_Migrations::check_db(); | |
| 1424 | + | |
| 1425 | + $names = []; | |
| 1426 | + $results = $wpdb->get_results( "SELECT id, name FROM $collections_table ORDER BY name ASC", ARRAY_A ); | |
| 1427 | + foreach ( $results as $collection ) { | |
| 1428 | + $names[$collection['id']] = [ 'name' => $collection['name'] ]; | |
| 1429 | + } | |
| 1430 | + return [ 'collections' => $names ]; | |
| 1431 | + } | |
| 1432 | + | |
| 1234 | 1433 | public function get_collection_by_id( $id ) { |
| 1235 | 1434 | global $wpdb; |
| 1236 | 1435 | $collections_table = $wpdb->prefix . 'mgl_collections'; |
| 1237 | 1436 | $shortcodes_table = $wpdb->prefix . 'mgl_gallery_shortcodes'; |
| @@ -1256,9 +1455,9 @@ | ||
| 1256 | 1455 | 'id' => $gallery['id'], |
| 1257 | 1456 | 'name' => $gallery['name'], |
| 1258 | 1457 | 'description' => $gallery['description'], |
| 1259 | 1458 | 'layout' => $gallery['layout'], |
| 1260 | - 'medias' => unserialize( $gallery['medias'] ), | |
| 1459 | + 'medias' => self::normalize_medias( maybe_unserialize( $gallery['medias'] ) ), | |
| 1261 | 1460 | 'lead_image_id' => $gallery['lead_image_id'], |
| 1262 | 1461 | 'order_by' => $gallery['order_by'], |
| 1263 | 1462 | 'is_post_mode' => ( bool )$gallery['is_post_mode'], |
| 1264 | 1463 | 'hero' => ( bool )$gallery['is_hero_mode'], |
| @@ -1318,9 +1517,9 @@ | ||
| 1318 | 1517 | 'id' => $gallery['id'], |
| 1319 | 1518 | 'name' => $gallery['name'], |
| 1320 | 1519 | 'description' => $gallery['description'], |
| 1321 | 1520 | 'layout' => $gallery['layout'], |
| 1322 | - 'medias' => unserialize( $gallery['medias'] ), | |
| 1521 | + 'medias' => self::hydrate_medias( maybe_unserialize( $gallery['medias'] ) ), | |
| 1323 | 1522 | 'lead_image_id' => $gallery['lead_image_id'], |
| 1324 | 1523 | 'order_by' => $gallery['order_by'], |
| 1325 | 1524 | 'is_post_mode' => ( bool )$gallery['is_post_mode'], |
| 1326 | 1525 | 'hero' => ( bool )$gallery['is_hero_mode'], |