dom = $dom; $this->args = array_merge( $this->DEFAULT_ARGS, $args ); } abstract public function sanitize(); public function get_scripts() { return array(); } public function get_styles() { return array(); } protected function get_body_node() { return $this->dom->getElementsByTagName( 'body' )->item( 0 ); } public function sanitize_dimension( $value, $dimension ) { if ( empty( $value ) ) { return $value; } if ( false !== filter_var( $value, FILTER_VALIDATE_INT ) ) { return absint( $value ); } if ( AMP_String_Utils::endswith( $value, 'px' ) ) { return absint( $value ); } if ( AMP_String_Utils::endswith( $value, '%' ) ) { if ( 'width' === $dimension && isset( $this->args[ 'content_max_width'] ) ) { $percentage = absint( $value ) / 100; return round( $percentage * $this->args[ 'content_max_width'] ); } } return ''; } public function enforce_fixed_height( $attributes ) { if ( empty( $attributes['height'] ) ) { unset( $attributes['width'] ); $attributes['height'] = self::FALLBACK_HEIGHT; } if ( empty( $attributes['width'] ) ) { $attributes['layout'] = 'fixed-height'; } return $attributes; } /** * This is our workaround to enforce max sizing with layout=responsive. * * We want elements to not grow beyond their width and shrink to fill the screen on viewports smaller than their width. * * See https://github.com/ampproject/amphtml/issues/1280#issuecomment-171533526 * See https://github.com/Automattic/amp-wp/issues/101 */ public function enforce_sizes_attribute( $attributes ) { if ( ! isset( $attributes['width'], $attributes['height'] ) ) { return $attributes; } $max_width = $attributes['width']; if ( isset( $this->args['content_max_width'] ) && $max_width >= $this->args['content_max_width'] ) { $max_width = $this->args['content_max_width']; } $attributes['sizes'] = sprintf( '(min-width: %1$dpx) %1$dpx, 100vw', absint( $max_width ) ); $this->add_or_append_attribute( $attributes, 'class', 'amp-wp-enforced-sizes' ); return $attributes; } public function add_or_append_attribute( &$attributes, $key, $value, $separator = ' ' ) { if ( isset( $attributes[ $key ] ) ) { $attributes[ $key ] .= $separator . $value; } else { $attributes[ $key ] = $value; } } /** * Decide if we should remove a src attribute if https is required. * If not required, the implementing class may want to try and force https instead. * * @param string $src * @param boolean $force_https * @return string */ public function maybe_enforce_https_src( $src, $force_https = false ) { $protocol = strtok( $src, ':' ); if ( 'https' !== $protocol ) { // Check if https is required if ( isset( $this->args['require_https_src'] ) && true === $this->args['require_https_src'] ) { // Remove the src. Let the implementing class decide what do from here. $src = ''; } elseif ( ( ! isset( $this->args['require_https_src'] ) || false === $this->args['require_https_src'] ) && true === $force_https ) { // Don't remove the src, but force https instead $src = set_url_scheme( $src, 'https' ); } } return $src; } }