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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
|
<?php /** * Duplicate Post class to manage the block editor UI. * * @package Duplicate_Post */
namespace Yoast\WP\Duplicate_Post\UI;
use WP_Post; use Yoast\WP\Duplicate_Post\Permissions_Helper; use Yoast\WP\Duplicate_Post\Utils;
/** * Represents the Block_Editor class. */ class Block_Editor {
/** * Holds the object to create the action link to duplicate. * * @var Link_Builder */ protected $link_builder;
/** * Holds the permissions helper. * * @var Permissions_Helper */ protected $permissions_helper;
/** * Holds the asset manager. * * @var Asset_Manager */ protected $asset_manager;
/** * Initializes the class. * * @param Link_Builder $link_builder The link builder. * @param Permissions_Helper $permissions_helper The permissions helper. * @param Asset_Manager $asset_manager The asset manager. */ public function __construct( Link_Builder $link_builder, Permissions_Helper $permissions_helper, Asset_Manager $asset_manager ) { $this->link_builder = $link_builder; $this->permissions_helper = $permissions_helper; $this->asset_manager = $asset_manager; }
/** * Adds hooks to integrate with WordPress. * * @return void */ public function register_hooks() { \add_action( 'elementor/editor/after_enqueue_styles', [ $this, 'hide_elementor_post_status' ] ); \add_action( 'elementor/editor/before_enqueue_scripts', [ $this, 'enqueue_elementor_script' ], 9 ); \add_action( 'admin_enqueue_scripts', [ $this, 'should_previously_used_keyword_assessment_run' ], 9 ); \add_action( 'enqueue_block_editor_assets', [ $this, 'enqueue_block_editor_scripts' ] ); \add_filter( 'wpseo_link_suggestions_indexables', [ $this, 'remove_original_from_wpseo_link_suggestions' ], 10, 3 ); }
/** * Enqueues the necessary Elementor script for the current post. * * @return void */ public function enqueue_elementor_script() { $post = \get_post();
if ( ! $post instanceof WP_Post ) { return; }
$edit_js_object = $this->generate_js_object( $post ); $this->asset_manager->enqueue_elementor_script( $edit_js_object ); }
/** * Hides the post status control if we're working on a Rewrite and Republish post. * * @return void */ public function hide_elementor_post_status() { $post = \get_post();
if ( ! $post instanceof WP_Post || ! $this->permissions_helper->is_rewrite_and_republish_copy( $post ) ) { return; } \wp_add_inline_style( 'elementor-editor', '.elementor-control-post_status { display: none !important; }' ); }
/** * Disables the Yoast SEO PreviouslyUsedKeyword assessment for Rewrite & Republish original and duplicate posts. * * @return void */ public function should_previously_used_keyword_assessment_run() { if ( $this->permissions_helper->is_edit_post_screen() || $this->permissions_helper->is_new_post_screen() ) {
$post = \get_post();
if ( $post instanceof WP_Post && ( $this->permissions_helper->is_rewrite_and_republish_copy( $post ) || $this->permissions_helper->has_rewrite_and_republish_copy( $post ) ) ) { \add_filter( 'wpseo_previously_used_keyword_active', '__return_false' ); } } }
/** * Enqueues the necessary JavaScript code for the block editor. * * @return void */ public function enqueue_block_editor_scripts() { $post = \get_post();
if ( ! $post instanceof WP_Post ) { return; }
$edit_js_object = $this->generate_js_object( $post ); $this->asset_manager->enqueue_edit_script( $edit_js_object );
if ( $this->permissions_helper->is_rewrite_and_republish_copy( $post ) ) { $string_js_object = [ 'checkLink' => $this->get_check_permalink(), ]; $this->asset_manager->enqueue_strings_script( $string_js_object ); } }
/** * Generates a New Draft permalink for the current post. * * @return string The permalink. Returns empty if the post can't be copied. */ public function get_new_draft_permalink() { $post = \get_post();
if ( ! $post instanceof WP_Post || ! $this->permissions_helper->should_links_be_displayed( $post ) ) { return ''; }
return $this->link_builder->build_new_draft_link( $post ); }
/** * Generates a Rewrite & Republish permalink for the current post. * * @return string The permalink. Returns empty if the post cannot be copied for Rewrite & Republish. */ public function get_rewrite_republish_permalink() { $post = \get_post();
if ( ! $post instanceof WP_Post || $this->permissions_helper->is_rewrite_and_republish_copy( $post ) || $this->permissions_helper->has_rewrite_and_republish_copy( $post ) || ! $this->permissions_helper->should_links_be_displayed( $post ) ) { return ''; }
return $this->link_builder->build_rewrite_and_republish_link( $post ); }
/** * Generates a Check Changes permalink for the current post, if it's intended for Rewrite & Republish. * * @return string The permalink. Returns empty if the post does not exist or it's not a Rewrite & Republish copy. */ public function get_check_permalink() { $post = \get_post();
if ( ! $post instanceof WP_Post || ! $this->permissions_helper->is_rewrite_and_republish_copy( $post ) ) { return ''; }
return $this->link_builder->build_check_link( $post ); }
/** * Generates a URL to the original post edit screen. * * @return string The URL. Empty if the copy post doesn't have an original. */ public function get_original_post_edit_url() { $post = \get_post();
if ( ! $post instanceof WP_Post || ! $this->permissions_helper->is_rewrite_and_republish_copy( $post ) ) { return ''; }
$original_post_id = Utils::get_original_post_id( $post->ID );
if ( ! $original_post_id ) { return ''; }
return \add_query_arg( [ 'dprepublished' => 1, 'dpcopy' => $post->ID, 'dpnonce' => \wp_create_nonce( 'dp-republish' ), ], \admin_url( 'post.php?action=edit&post=' . $original_post_id ) ); }
/** * Generates an array of data to be passed as a localization object to JavaScript. * * @param WP_Post $post The current post object. * * @return array The data to pass to JavaScript. */ protected function generate_js_object( WP_Post $post ) { $is_rewrite_and_republish_copy = $this->permissions_helper->is_rewrite_and_republish_copy( $post );
return [ 'newDraftLink' => $this->get_new_draft_permalink(), 'rewriteAndRepublishLink' => $this->get_rewrite_republish_permalink(), 'showLinks' => Utils::get_option( 'duplicate_post_show_link' ), 'showLinksIn' => Utils::get_option( 'duplicate_post_show_link_in' ), 'rewriting' => $is_rewrite_and_republish_copy ? 1 : 0, 'originalEditURL' => $this->get_original_post_edit_url(), ]; }
/** * Filters the Yoast SEO Premium link suggestions. * * Removes the original post from the Yoast SEO Premium link suggestions * displayed on the Rewrite & Republish copy. * * @param array $suggestions An array of suggestion indexables that can be filtered. * @param int $object_id The object id for the current indexable. * @param string $object_type The object type for the current indexable. * * @return array The filtered array of suggestion indexables. */ public function remove_original_from_wpseo_link_suggestions( $suggestions, $object_id, $object_type ) { if ( $object_type !== 'post' ) { return $suggestions; }
// WordPress get_post already checks if the passed ID is valid and returns null if it's not. $post = \get_post( $object_id );
if ( ! $post instanceof WP_Post || ! $this->permissions_helper->is_rewrite_and_republish_copy( $post ) ) { return $suggestions; }
$original_post_id = Utils::get_original_post_id( $post->ID );
return \array_filter( $suggestions, function( $suggestion ) use ( $original_post_id ) { return $suggestion->object_id !== $original_post_id; } ); } }
|