BlockProtector.php
1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
namespace WPML\AbsoluteLinks;
class BlockProtector {
private $protectedBlocks = [];
public function protect( $text ) {
if ( ! function_exists( 'has_blocks' ) || ! has_blocks( $text ) ) {
return $text;
}
$integrationClass = \WPML_Gutenberg_Integration::class;
$decodeForwardSlashes = function ( $str ) {
return str_replace( '\\/', '/', $str );
};
$replaceBlockWithPlaceholder = function ( $text, $block ) {
$key = md5( $block );
$this->protectedBlocks[ $key ] = $block;
return str_replace( $block, $key, $text );
};
return wpml_collect( \WPML_Gutenberg_Integration::parse_blocks( $text ) )
->map( [ $integrationClass, 'sanitize_block' ] )
->filter( [ $integrationClass, 'has_non_empty_attributes' ] )
->map( [ $integrationClass, 'render_block' ] )
->map( $decodeForwardSlashes )
->reduce( $replaceBlockWithPlaceholder, $text );
}
public function unProtect( $text ) {
foreach ( $this->protectedBlocks as $key => $value ) {
$text = str_replace( $key, $value, $text );
}
return $text;
}
}