render( array( 'url' => $url ) ); } /** * Render embed. * * @param array $args Args. * @return string Embed. */ public function render( $args ) { $args = wp_parse_args( $args, array( 'url' => false, ) ); if ( empty( $args['url'] ) ) { return ''; } $this->did_convert_elements = true; $id = $this->get_imgur_id_from_url( $args['url'] ); if ( false === $id ) { return ''; } return AMP_HTML_Utils::build_tag( 'amp-imgur', array( 'width' => $this->args['width'], 'height' => $this->args['height'], 'data-imgur-id' => $id, ) ); } /** * Filter oEmbed HTML for Imgur to prepare it for AMP. * * @param mixed $return The shortcode callback function to call. * @param string $url The attempted embed URL. * @param array $attr An array of shortcode attributes. * @return string Embed. */ public function filter_embed_oembed_html( $return, $url, $attr ) { $parsed_url = wp_parse_url( $url ); if ( false !== strpos( $parsed_url['host'], 'imgur.com' ) ) { if ( preg_match( '/width=["\']?(\d+)/', $return, $matches ) ) { $attr['width'] = $matches[1]; } if ( preg_match( '/height=["\']?(\d+)/', $return, $matches ) ) { $attr['height'] = $matches[1]; } if ( empty( $attr['height'] ) ) { return $return; } $attributes = wp_array_slice_assoc( $attr, array( 'width', 'height' ) ); if ( empty( $attr['width'] ) ) { $attributes['layout'] = 'fixed-height'; $attributes['width'] = 'auto'; } $attributes['data-imgur-id'] = $this->get_imgur_id_from_url( $url ); if ( false === $attributes['data-imgur-id'] ) { return $return; } $return = AMP_HTML_Utils::build_tag( 'amp-imgur', $attributes ); } return $return; } /** * Get Imgur ID from URL. * * @param string $url URL. * @return bool|string ID / false. */ protected function get_imgur_id_from_url( $url ) { $parsed_url = wp_parse_url( $url ); $pieces = explode( '/gallery/', $parsed_url['path'] ); if ( ! isset( $pieces[1] ) ) { if ( ! preg_match( '/\/([A-Za-z0-9]+)/', $parsed_url['path'], $matches ) ) { return false; } return $matches[1]; } else { return $pieces[1]; } } }