content = $content; $this->args = $args; $this->embed_handler_classes = $embed_handler_classes; $this->sanitizer_classes = $sanitizer_classes; $this->transform(); } public function get_amp_content() { return $this->amp_content; } public function get_amp_scripts() { return $this->amp_scripts; } private function transform() { $content = $this->content; // First, embeds + the_content filter $embed_handlers = $this->register_embed_handlers(); $content = apply_filters( 'the_content', $content ); $this->unregister_embed_handlers( $embed_handlers ); // Then, sanitize to strip and/or convert non-amp content $content = $this->sanitize( $content ); $this->amp_content = $content; } private function add_scripts( $scripts ) { $this->amp_scripts = array_merge( $this->amp_scripts, $scripts ); } private function register_embed_handlers() { $embed_handlers = array(); foreach ( $this->embed_handler_classes as $embed_handler_class => $args ) { $embed_handler = new $embed_handler_class( array_merge( $this->args, $args ) ); if ( ! is_subclass_of( $embed_handler, 'AMP_Base_Embed_Handler' ) ) { _doing_it_wrong( __METHOD__, sprintf( __( 'Embed Handler (%s) must extend `AMP_Embed_Handler`', 'amp' ), $embed_handler_class ), '0.1' ); continue; } $embed_handler->register_embed(); $embed_handlers[] = $embed_handler; } return $embed_handlers; } private function unregister_embed_handlers( $embed_handlers ) { foreach ( $embed_handlers as $embed_handler ) { $this->add_scripts( $embed_handler->get_scripts() ); $embed_handler->unregister_embed(); } } private function sanitize( $content ) { $dom = AMP_DOM_Utils::get_dom_from_content( $content ); foreach ( $this->sanitizer_classes as $sanitizer_class => $args ) { $sanitizer = new $sanitizer_class( $dom, array_merge( $this->args, $args ) ); if ( ! is_subclass_of( $sanitizer, 'AMP_Base_Sanitizer' ) ) { _doing_it_wrong( __METHOD__, sprintf( __( 'Sanitizer (%s) must extend `AMP_Base_Sanitizer`', 'amp' ), esc_html( $sanitizer_class ) ), '0.1' ); continue; } $sanitizer->sanitize(); $this->add_scripts( $sanitizer->get_scripts() ); } return AMP_DOM_Utils::get_content_from_dom( $dom ); } }