instagram-gallery.php
153 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Instagram Gallery Block. |
| 4 | * |
| 5 | * @since 8.5.0 |
| 6 | * |
| 7 | * @package automattic/jetpack |
| 8 | */ |
| 9 | |
| 10 | namespace Automattic\Jetpack\Extensions\Instagram_Gallery; |
| 11 | |
| 12 | use Automattic\Jetpack\Blocks; |
| 13 | use Jetpack; |
| 14 | use Jetpack_Gutenberg; |
| 15 | use Jetpack_Instagram_Gallery_Helper; |
| 16 | |
| 17 | const FEATURE_NAME = 'instagram-gallery'; |
| 18 | const BLOCK_NAME = 'jetpack/' . FEATURE_NAME; |
| 19 | |
| 20 | /** |
| 21 | * Registers the block for use in Gutenberg |
| 22 | * This is done via an action so that we can disable |
| 23 | * registration if we need to. |
| 24 | */ |
| 25 | function register_block() { |
| 26 | if ( ( defined( 'IS_WPCOM' ) && IS_WPCOM ) || Jetpack::is_connection_ready() ) { |
| 27 | Blocks::jetpack_register_block( |
| 28 | BLOCK_NAME, |
| 29 | array( 'render_callback' => __NAMESPACE__ . '\render_block' ) |
| 30 | ); |
| 31 | } |
| 32 | } |
| 33 | add_action( 'init', __NAMESPACE__ . '\register_block' ); |
| 34 | |
| 35 | /** |
| 36 | * Instagram Gallery block render callback. |
| 37 | * |
| 38 | * @param array $attributes Array containing the Instagram Gallery block attributes. |
| 39 | * @param string $content The Instagram Gallery block content. |
| 40 | * |
| 41 | * @return string |
| 42 | */ |
| 43 | function render_block( $attributes, $content ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
| 44 | if ( ! array_key_exists( 'accessToken', $attributes ) ) { |
| 45 | return ''; |
| 46 | } |
| 47 | |
| 48 | $access_token = $attributes['accessToken']; |
| 49 | $columns = get_instagram_gallery_attribute( 'columns', $attributes ); |
| 50 | $count = get_instagram_gallery_attribute( 'count', $attributes ); |
| 51 | $is_stacked_on_mobile = get_instagram_gallery_attribute( 'isStackedOnMobile', $attributes ); |
| 52 | $spacing = get_instagram_gallery_attribute( 'spacing', $attributes ); |
| 53 | |
| 54 | $grid_classes = Blocks::classes( |
| 55 | FEATURE_NAME, |
| 56 | $attributes, |
| 57 | array( |
| 58 | 'wp-block-jetpack-instagram-gallery__grid', |
| 59 | 'wp-block-jetpack-instagram-gallery__grid-columns-' . $columns, |
| 60 | ( $is_stacked_on_mobile ? 'is-stacked-on-mobile' : null ), |
| 61 | ) |
| 62 | ); |
| 63 | |
| 64 | $grid_style = sprintf( |
| 65 | 'grid-gap: %1$spx; --latest-instagram-posts-spacing: %1$spx;', |
| 66 | $spacing |
| 67 | ); |
| 68 | |
| 69 | if ( ! class_exists( 'Jetpack_Instagram_Gallery_Helper' ) ) { |
| 70 | require_once JETPACK__PLUGIN_DIR . '/_inc/lib/class-jetpack-instagram-gallery-helper.php'; |
| 71 | } |
| 72 | $gallery = Jetpack_Instagram_Gallery_Helper::get_instagram_gallery( $access_token, $count ); |
| 73 | |
| 74 | if ( is_wp_error( $gallery ) || ! property_exists( $gallery, 'images' ) || 'ERROR' === $gallery->images ) { |
| 75 | if ( ! current_user_can( 'edit_post', get_the_ID() ) ) { |
| 76 | return ''; |
| 77 | } |
| 78 | |
| 79 | $connection_unavailable = is_wp_error( $gallery ) && 'instagram_connection_unavailable' === $gallery->get_error_code(); |
| 80 | |
| 81 | $error_message = $connection_unavailable |
| 82 | ? $gallery->get_error_message() |
| 83 | : esc_html__( 'An error occurred in the Latest Instagram Posts block. Please try again later.', 'jetpack' ); |
| 84 | |
| 85 | $message = $error_message |
| 86 | . '<br />' |
| 87 | . esc_html__( '(Only administrators and the post author will see this message.)', 'jetpack' ); |
| 88 | return Jetpack_Gutenberg::notice( $message, 'error', Blocks::classes( FEATURE_NAME, $attributes ) ); |
| 89 | } |
| 90 | |
| 91 | if ( empty( $gallery->images ) ) { |
| 92 | return ''; |
| 93 | } |
| 94 | |
| 95 | $images = array_slice( $gallery->images, 0, $count ); |
| 96 | |
| 97 | Jetpack_Gutenberg::load_assets_as_required( FEATURE_NAME ); |
| 98 | |
| 99 | ob_start(); |
| 100 | ?> |
| 101 | <?php if ( Blocks::is_amp_request() ) : ?> |
| 102 | <style> |
| 103 | .wp-block-jetpack-instagram-gallery__grid .wp-block-jetpack-instagram-gallery__grid-post amp-img img { |
| 104 | object-fit: cover; |
| 105 | } |
| 106 | </style> |
| 107 | <?php endif; ?> |
| 108 | <div class="<?php echo esc_attr( $grid_classes ); ?>" style="<?php echo esc_attr( $grid_style ); ?>"> |
| 109 | <?php foreach ( $images as $image ) : ?> |
| 110 | <a |
| 111 | class="wp-block-jetpack-instagram-gallery__grid-post" |
| 112 | href="<?php echo esc_url( $image->link ); ?>" |
| 113 | rel="noopener noreferrer" |
| 114 | target="_blank" |
| 115 | > |
| 116 | <img |
| 117 | alt="<?php echo esc_attr( $image->title ? $image->title : $image->link ); ?>" |
| 118 | src="<?php echo esc_url( $image->url ); ?>" |
| 119 | loading="lazy" |
| 120 | /> |
| 121 | </a> |
| 122 | <?php endforeach; ?> |
| 123 | </div> |
| 124 | |
| 125 | <?php |
| 126 | return ob_get_clean(); |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Get Instagram Gallery block attribute. |
| 131 | * |
| 132 | * @param string $attribute String containing the attribute name to get. |
| 133 | * @param array $attributes Array containing the Instagram Gallery block attributes. |
| 134 | * |
| 135 | * @return mixed |
| 136 | */ |
| 137 | function get_instagram_gallery_attribute( $attribute, $attributes ) { |
| 138 | if ( array_key_exists( $attribute, $attributes ) ) { |
| 139 | return $attributes[ $attribute ]; |
| 140 | } |
| 141 | |
| 142 | $default_attributes = array( |
| 143 | 'columns' => 3, |
| 144 | 'count' => 9, |
| 145 | 'isStackedOnMobile' => true, |
| 146 | 'spacing' => 10, |
| 147 | ); |
| 148 | |
| 149 | if ( array_key_exists( $attribute, $default_attributes ) ) { |
| 150 | return $default_attributes[ $attribute ]; |
| 151 | } |
| 152 | } |
| 153 |