podcast-player.php
410 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Podcast Player Block. |
| 4 | * |
| 5 | * @since 8.4.0 |
| 6 | * |
| 7 | * @package automattic/jetpack |
| 8 | */ |
| 9 | |
| 10 | namespace Automattic\Jetpack\Extensions\Podcast_Player; |
| 11 | |
| 12 | use Automattic\Jetpack\Blocks; |
| 13 | use Automattic\Jetpack\Status\Request; |
| 14 | use Jetpack_Gutenberg; |
| 15 | use Jetpack_Podcast_Helper; |
| 16 | |
| 17 | if ( ! defined( 'ABSPATH' ) ) { |
| 18 | exit( 0 ); |
| 19 | } |
| 20 | |
| 21 | if ( ! class_exists( 'Jetpack_Podcast_Helper' ) ) { |
| 22 | require_once JETPACK__PLUGIN_DIR . '/_inc/lib/class-jetpack-podcast-helper.php'; |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Registers the block for use in Gutenberg. This is done via an action so that |
| 27 | * we can disable registration if we need to. |
| 28 | */ |
| 29 | function register_block() { |
| 30 | Blocks::jetpack_register_block( |
| 31 | __DIR__, |
| 32 | array( |
| 33 | 'render_callback' => __NAMESPACE__ . '\render_block', |
| 34 | // Since Gutenberg #31873. |
| 35 | 'style' => 'wp-mediaelement', |
| 36 | 'render_email_callback' => __NAMESPACE__ . '\render_email', |
| 37 | ) |
| 38 | ); |
| 39 | } |
| 40 | add_action( 'init', __NAMESPACE__ . '\register_block' ); |
| 41 | |
| 42 | /** |
| 43 | * Returns the error message wrapped in HTML if current user |
| 44 | * has the capability to edit the post. Public visitors will |
| 45 | * never see errors. |
| 46 | * |
| 47 | * @param string $message The error message to display. |
| 48 | * @return string |
| 49 | */ |
| 50 | function render_error( $message ) { |
| 51 | // Suppress errors for users unable to address them. |
| 52 | if ( ! current_user_can( 'edit_posts' ) ) { |
| 53 | return ''; |
| 54 | } |
| 55 | return '<p>' . esc_html( $message ) . '</p>'; |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Podcast Player block registration/dependency declaration. |
| 60 | * |
| 61 | * @param array $attributes Array containing the Podcast Player block attributes. |
| 62 | * @param string $content Fallback content - a direct link to RSS, as rendered by save.js. |
| 63 | * @return string |
| 64 | */ |
| 65 | function render_block( $attributes, $content ) { |
| 66 | // Don't render an interactive version of the block outside the frontend context. |
| 67 | if ( ! Request::is_frontend() ) { |
| 68 | return $content; |
| 69 | } |
| 70 | |
| 71 | // Test for empty URLS. |
| 72 | if ( empty( $attributes['url'] ) ) { |
| 73 | return render_error( __( 'No Podcast URL provided. Please enter a valid Podcast RSS feed URL.', 'jetpack' ) ); |
| 74 | } |
| 75 | |
| 76 | // Test for invalid URLs. |
| 77 | if ( ! wp_http_validate_url( $attributes['url'] ) ) { |
| 78 | return render_error( __( 'Your podcast URL is invalid and couldn\'t be embedded. Please double check your URL.', 'jetpack' ) ); |
| 79 | } |
| 80 | |
| 81 | if ( ! empty( $attributes['selectedEpisodes'] ) ) { |
| 82 | $guids = array_map( |
| 83 | function ( $episode ) { |
| 84 | return $episode['guid']; |
| 85 | }, |
| 86 | $attributes['selectedEpisodes'] |
| 87 | ); |
| 88 | $player_args = array( 'guids' => $guids ); |
| 89 | } else { |
| 90 | $player_args = array(); |
| 91 | } |
| 92 | |
| 93 | // Sanitize the URL. |
| 94 | $attributes['url'] = esc_url_raw( $attributes['url'] ); |
| 95 | $player_data = ( new Jetpack_Podcast_Helper( $attributes['url'] ) )->get_player_data( $player_args ); |
| 96 | |
| 97 | if ( is_wp_error( $player_data ) ) { |
| 98 | return render_error( $player_data->get_error_message() ); |
| 99 | } |
| 100 | |
| 101 | return render_player( $player_data, $attributes ); |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * Renders the HTML for the Podcast player and tracklist. |
| 106 | * |
| 107 | * @param array $player_data The player data details. |
| 108 | * @param array $attributes Array containing the Podcast Player block attributes. |
| 109 | * @return string The HTML for the podcast player. |
| 110 | */ |
| 111 | function render_player( $player_data, $attributes ) { |
| 112 | // If there are no tracks (it is possible) then display appropriate user facing error message. |
| 113 | if ( empty( $player_data['tracks'] ) ) { |
| 114 | return render_error( __( 'No tracks available to play.', 'jetpack' ) ); |
| 115 | } |
| 116 | |
| 117 | if ( is_wp_error( $player_data['tracks'] ) ) { |
| 118 | return render_error( $player_data['tracks']->get_error_message() ); |
| 119 | } |
| 120 | |
| 121 | // Only use the amount of tracks requested. |
| 122 | $player_data['tracks'] = array_slice( |
| 123 | $player_data['tracks'], |
| 124 | 0, |
| 125 | absint( $attributes['itemsToShow'] ) |
| 126 | ); |
| 127 | |
| 128 | // Generate a unique id for the block instance. |
| 129 | $instance_id = wp_unique_id( 'jetpack-podcast-player-block-' . get_the_ID() . '-' ); |
| 130 | $player_data['playerId'] = $instance_id; |
| 131 | |
| 132 | // Generate object to be used as props for PodcastPlayer. |
| 133 | $player_props = array_merge( |
| 134 | // Add all attributes. |
| 135 | array( 'attributes' => $attributes ), |
| 136 | // Add all player data. |
| 137 | $player_data |
| 138 | ); |
| 139 | |
| 140 | $primary_colors = get_colors( 'primary', $attributes, 'color' ); |
| 141 | $secondary_colors = get_colors( 'secondary', $attributes, 'color' ); |
| 142 | $background_colors = get_colors( 'background', $attributes, 'background-color' ); |
| 143 | |
| 144 | $player_classes_name = trim( "{$secondary_colors['class']} {$background_colors['class']}" ); |
| 145 | $player_inline_style = trim( "{$secondary_colors['style']} {$background_colors['style']}" ); |
| 146 | $player_inline_style .= get_css_vars( $attributes ); |
| 147 | $wrapper_attributes = \WP_Block_Supports::get_instance()->apply_block_supports(); |
| 148 | $block_classname = Blocks::classes( Blocks::get_block_feature( __DIR__ ), $attributes, array( 'is-default' ) ); |
| 149 | $is_amp = Blocks::is_amp_request(); |
| 150 | |
| 151 | ob_start(); |
| 152 | ?> |
| 153 | <div class="<?php echo esc_attr( $block_classname ); ?>"<?php echo ! empty( $wrapper_attributes['style'] ) ? ' style="' . esc_attr( $wrapper_attributes['style'] ) . '"' : ''; ?> id="<?php echo esc_attr( $instance_id ); ?>"> |
| 154 | <section |
| 155 | class="jetpack-podcast-player <?php echo esc_attr( $player_classes_name ); ?>" |
| 156 | style="<?php echo esc_attr( $player_inline_style ); ?>" |
| 157 | > |
| 158 | <?php |
| 159 | render( |
| 160 | 'podcast-header', |
| 161 | array_merge( |
| 162 | $player_props, |
| 163 | array( |
| 164 | 'primary_colors' => $primary_colors, |
| 165 | 'player_id' => $player_data['playerId'], |
| 166 | ) |
| 167 | ) |
| 168 | ); |
| 169 | ?> |
| 170 | <?php if ( count( $player_data['tracks'] ) > 1 ) : ?> |
| 171 | <ol class="jetpack-podcast-player__tracks"> |
| 172 | <?php foreach ( $player_data['tracks'] as $track_index => $attachment ) : ?> |
| 173 | <?php |
| 174 | render( |
| 175 | 'playlist-track', |
| 176 | array( |
| 177 | 'is_active' => 0 === $track_index, |
| 178 | 'attachment' => $attachment, |
| 179 | 'primary_colors' => $primary_colors, |
| 180 | 'secondary_colors' => $secondary_colors, |
| 181 | ) |
| 182 | ); |
| 183 | ?> |
| 184 | <?php endforeach; ?> |
| 185 | </ol> |
| 186 | <?php endif; ?> |
| 187 | </section> |
| 188 | <?php if ( ! $is_amp ) : ?> |
| 189 | <script type="application/json"><?php echo wp_json_encode( $player_props ); ?></script> |
| 190 | <?php endif; ?> |
| 191 | </div> |
| 192 | <?php |
| 193 | /** |
| 194 | * Enqueue necessary scripts and styles. |
| 195 | */ |
| 196 | if ( ! $is_amp ) { |
| 197 | wp_enqueue_style( 'wp-mediaelement' ); |
| 198 | } |
| 199 | Jetpack_Gutenberg::load_assets_as_required( __DIR__, array( 'mediaelement' ) ); |
| 200 | |
| 201 | return ob_get_clean(); |
| 202 | } |
| 203 | |
| 204 | /** |
| 205 | * Given the color name, block attributes and the CSS property, |
| 206 | * the function will return an array with the `class` and `style` |
| 207 | * HTML attributes to be used straight in the markup. |
| 208 | * |
| 209 | * @example |
| 210 | * $color = get_colors( 'secondary', $attributes, 'border-color' |
| 211 | * => array( 'class' => 'has-secondary', 'style' => 'border-color: #333' ) |
| 212 | * |
| 213 | * @param string $name Color attribute name, for instance `primary`, `secondary`, ... |
| 214 | * @param array $attrs Block attributes. |
| 215 | * @param string $property Color CSS property, fo instance `color`, `background-color`, ... |
| 216 | * @return array Colors array. |
| 217 | */ |
| 218 | function get_colors( $name, $attrs, $property ) { |
| 219 | $attr_color = "{$name}Color"; |
| 220 | $attr_custom = 'custom' . ucfirst( $attr_color ); |
| 221 | |
| 222 | $color = isset( $attrs[ $attr_color ] ) ? $attrs[ $attr_color ] : null; |
| 223 | $custom_color = isset( $attrs[ $attr_custom ] ) ? $attrs[ $attr_custom ] : null; |
| 224 | |
| 225 | $colors = array( |
| 226 | 'class' => '', |
| 227 | 'style' => '', |
| 228 | ); |
| 229 | |
| 230 | if ( $color || $custom_color ) { |
| 231 | $colors['class'] .= "has-{$name}"; |
| 232 | |
| 233 | if ( $color ) { |
| 234 | $colors['class'] .= " has-{$color}-{$property}"; |
| 235 | } elseif ( $custom_color ) { |
| 236 | $colors['style'] .= "{$property}: {$custom_color};"; |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | return $colors; |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * It generates a string with CSS variables according to the |
| 245 | * block colors, prefixing each one with `--jetpack-podcast-player'. |
| 246 | * |
| 247 | * @param array $attrs Podcast Block attributes object. |
| 248 | * @return string CSS variables depending on block colors. |
| 249 | */ |
| 250 | function get_css_vars( $attrs ) { |
| 251 | $colors_name = array( 'primary', 'secondary', 'background' ); |
| 252 | |
| 253 | $inline_style = ''; |
| 254 | foreach ( $colors_name as $color ) { |
| 255 | $hex_color = 'hex' . ucfirst( $color ) . 'Color'; |
| 256 | if ( ! empty( $attrs[ $hex_color ] ) ) { |
| 257 | $inline_style .= " --jetpack-podcast-player-{$color}: {$attrs[ $hex_color ]};"; |
| 258 | } |
| 259 | } |
| 260 | return $inline_style; |
| 261 | } |
| 262 | |
| 263 | /** |
| 264 | * Render the given template in server-side. |
| 265 | * Important note: |
| 266 | * The $template_props array will be extracted. |
| 267 | * This means it will create a var for each array item. |
| 268 | * Keep it mind when using this param to pass |
| 269 | * properties to the template. |
| 270 | * |
| 271 | * @html-template-var array $template_props |
| 272 | * |
| 273 | * @param string $name Template name, available in `./templates` folder. |
| 274 | * @param array $template_props Template properties. Optional. |
| 275 | * @param bool $print Render template. True as default. |
| 276 | * @return string|null HTML markup or null. |
| 277 | */ |
| 278 | function render( $name, $template_props = array(), $print = true ) { |
| 279 | if ( ! strpos( $name, '.php' ) ) { |
| 280 | $name = $name . '.php'; |
| 281 | } |
| 282 | |
| 283 | $template_path = __DIR__ . '/templates/' . $name; |
| 284 | |
| 285 | if ( ! file_exists( $template_path ) ) { |
| 286 | return ''; |
| 287 | } |
| 288 | |
| 289 | if ( $print ) { |
| 290 | include $template_path; |
| 291 | } else { |
| 292 | ob_start(); |
| 293 | include $template_path; |
| 294 | $markup = ob_get_contents(); |
| 295 | ob_end_clean(); |
| 296 | |
| 297 | return $markup; |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | /** |
| 302 | * Render podcast player block for email. |
| 303 | * |
| 304 | * @since 15.0 |
| 305 | * |
| 306 | * @param string $block_content The original block HTML content. |
| 307 | * @param array $parsed_block The parsed block data including attributes. |
| 308 | * @param object $rendering_context Email rendering context. |
| 309 | * |
| 310 | * @return string |
| 311 | */ |
| 312 | function render_email( $block_content, array $parsed_block, $rendering_context ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
| 313 | // Validate input parameters and required dependencies |
| 314 | if ( ! isset( $parsed_block['attrs'] ) || ! is_array( $parsed_block['attrs'] ) || |
| 315 | ! class_exists( '\Automattic\WooCommerce\EmailEditor\Integrations\Utils\Table_Wrapper_Helper' ) ) { |
| 316 | return ''; |
| 317 | } |
| 318 | |
| 319 | $attr = $parsed_block['attrs']; |
| 320 | |
| 321 | // Check if we have a valid podcast URL |
| 322 | if ( empty( $attr['url'] ) || ! wp_http_validate_url( $attr['url'] ) ) { |
| 323 | return ''; |
| 324 | } |
| 325 | |
| 326 | // Get spacing from email_attrs for better consistency with core blocks |
| 327 | $email_attrs = $parsed_block['email_attrs'] ?? array(); |
| 328 | $table_margin_style = ''; |
| 329 | |
| 330 | if ( ! empty( $email_attrs ) && class_exists( '\WP_Style_Engine' ) ) { |
| 331 | // Get margin for table styling |
| 332 | $table_margin_style = \WP_Style_Engine::compile_css( array_intersect_key( $email_attrs, array_flip( array( 'margin' ) ) ), '' ) ?? ''; |
| 333 | |
| 334 | // Validate CSS output to prevent injection |
| 335 | if ( ! empty( $table_margin_style ) && ! preg_match( '/^[a-zA-Z0-9\s:;()-]+$/', $table_margin_style ) ) { |
| 336 | $table_margin_style = ''; |
| 337 | } |
| 338 | } |
| 339 | |
| 340 | $icon_image = 'https://s0.wp.com/i/emails/wpcom-notifications/audio-play.png'; |
| 341 | $label = __( 'Listen to the podcast', 'jetpack' ); |
| 342 | $audio_url = esc_url( $attr['url'] ); |
| 343 | |
| 344 | // Define pill-style colors and styling |
| 345 | $background_color = '#f6f7f7'; |
| 346 | $border_color = '#AAA'; |
| 347 | $icon_size = '18px'; |
| 348 | $font_size = '14px'; |
| 349 | |
| 350 | // Generate the icon content |
| 351 | $icon_content = sprintf( |
| 352 | '<a href="%1$s" rel="noopener nofollow" target="_blank" style="padding: 0.25em; padding-left: 17px; display: inline-block; vertical-align: middle;"><img height="%2$s" src="%3$s" style="display:block;margin-right:0;vertical-align:middle;" width="%2$s" alt="%4$s"></a>', |
| 353 | esc_url( $audio_url ), |
| 354 | esc_attr( $icon_size ), |
| 355 | esc_url( $icon_image ), |
| 356 | // translators: %s is the podcast player icon. |
| 357 | sprintf( __( '%s icon', 'jetpack' ), __( 'Podcast', 'jetpack' ) ) |
| 358 | ); |
| 359 | $icon_content = \Automattic\WooCommerce\EmailEditor\Integrations\Utils\Table_Wrapper_Helper::render_table_cell( $icon_content, array( 'style' => sprintf( 'vertical-align:middle;font-size:%s;', $font_size ) ) ); |
| 360 | |
| 361 | // Generate the label content |
| 362 | $label_content = sprintf( |
| 363 | '<a href="%1$s" rel="noopener nofollow" target="_blank" style="text-decoration:none; padding: 0.25em; padding-right: 17px; display: inline-block;"><span style="margin-left:.5em;margin-right:.5em;font-weight:bold"> %2$s </span></a>', |
| 364 | esc_url( $audio_url ), |
| 365 | esc_html( $label ) |
| 366 | ); |
| 367 | $label_cell_style = sprintf( |
| 368 | 'vertical-align:middle;font-size:%s;', |
| 369 | $font_size |
| 370 | ); |
| 371 | $label_content = \Automattic\WooCommerce\EmailEditor\Integrations\Utils\Table_Wrapper_Helper::render_table_cell( $label_content, array( 'style' => $label_cell_style ) ); |
| 372 | |
| 373 | // Combine icon and label tables |
| 374 | $podcast_content = $icon_content . $label_content; |
| 375 | |
| 376 | // Create the main pill-style table |
| 377 | $main_table_styles = sprintf( |
| 378 | 'background-color: %s; border-radius: 9999px; display: inline-table; float: none; border: 1px solid %s; border-collapse: separate;', |
| 379 | $background_color, |
| 380 | $border_color |
| 381 | ); |
| 382 | |
| 383 | $main_table_attrs = array( |
| 384 | 'align' => 'left', |
| 385 | 'style' => $main_table_styles, |
| 386 | ); |
| 387 | |
| 388 | $main_table = \Automattic\WooCommerce\EmailEditor\Integrations\Utils\Table_Wrapper_Helper::render_table_wrapper( $podcast_content, $main_table_attrs, array(), array(), false ); |
| 389 | |
| 390 | // Create the main wrapper table |
| 391 | $table_style = 'width: 100%;'; |
| 392 | if ( ! empty( $table_margin_style ) ) { |
| 393 | $table_style = $table_margin_style . '; ' . $table_style; |
| 394 | } else { |
| 395 | $table_style = 'margin: 16px 0; ' . $table_style; |
| 396 | } |
| 397 | |
| 398 | $table_attrs = array( |
| 399 | 'style' => $table_style, |
| 400 | ); |
| 401 | |
| 402 | $cell_attrs = array( |
| 403 | 'style' => 'min-width: 100%; vertical-align: middle; word-break: break-word; text-align: left;', |
| 404 | ); |
| 405 | |
| 406 | $main_wrapper = \Automattic\WooCommerce\EmailEditor\Integrations\Utils\Table_Wrapper_Helper::render_table_wrapper( $main_table, $table_attrs, $cell_attrs ); |
| 407 | |
| 408 | return \Automattic\WooCommerce\EmailEditor\Integrations\Utils\Table_Wrapper_Helper::render_outlook_table_wrapper( $main_wrapper, array( 'align' => 'left' ) ); |
| 409 | } |
| 410 |