-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathLifecycleManager.php
More file actions
242 lines (201 loc) · 6.43 KB
/
Copy pathLifecycleManager.php
File metadata and controls
242 lines (201 loc) · 6.43 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
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
<?php
declare(strict_types=1);
namespace n5s\PageForCustomPostType\Lifecycle;
use n5s\PageForCustomPostType\Admin\SettingsValidator;
use n5s\PageForCustomPostType\Core\Api;
use n5s\PageForCustomPostType\Core\RewriteManager;
use WP_Post;
use WP_Post_Type;
/**
* Manages WordPress lifecycle hooks for options and posts.
*/
final class LifecycleManager
{
public function __construct(
private readonly Api $api,
private readonly RewriteManager $rewriteManager,
private readonly SettingsValidator $validator
) {
}
/**
* Watch options for a post type.
*
* Called when a post type is registered to set up option hooks.
*/
public function watchOptions(string $postType, WP_Post_Type $postTypeObject): void
{
if (!$this->api->shouldConsiderPostType($postTypeObject)) {
// The mapping outlives CPT arg changes; drop it when the type is no
// longer eligible so frontend/admin don't operate on stale state.
if ($this->api->getPageIdFromPostType($postType, false) !== null) {
$this->deleteOption($postType);
}
return;
}
$optionName = $this->api->getOptionName($postType);
$useSlugOptionName = $this->api->getUseSlugOptionName($postType);
// Sanitize/validate hook
add_filter(
"sanitize_option_{$optionName}",
$this->validator->validate(...),
10,
3
);
// Watch for changes on page selection
add_action("update_option_{$optionName}", [$this, 'onOptionUpdate'], 10, 3);
add_action("add_option_{$optionName}", [$this, 'onOptionAdd'], 10, 2);
add_action("delete_option_{$optionName}", [$this, 'onOptionDelete'], 10);
// Watch for changes on "use slug" checkbox
add_action("update_option_{$useSlugOptionName}", [$this, 'onUseSlugOptionUpdate'], 10, 3);
add_action("add_option_{$useSlugOptionName}", [$this, 'onUseSlugOptionAdd'], 10, 2);
}
/**
* Handle option update.
*/
public function onOptionUpdate(mixed $oldValue, mixed $newValue, string $name): void
{
if ($oldValue === $newValue) {
return;
}
$this->onOptionChange($name, $newValue);
}
/**
* Handle option add.
*/
public function onOptionAdd(string $name, mixed $value): void
{
$this->onOptionChange($name, $value);
}
/**
* Handle option delete.
*/
public function onOptionDelete(string $name): void
{
$this->onOptionChange($name, null);
}
/**
* Handle "use slug" option update.
*/
public function onUseSlugOptionUpdate(mixed $oldValue, mixed $newValue, string $name): void
{
if ($oldValue === $newValue) {
return;
}
$this->onUseSlugOptionChange($name);
}
/**
* Handle "use slug" option add.
*/
public function onUseSlugOptionAdd(string $name, mixed $value): void
{
$this->onUseSlugOptionChange($name);
}
/**
* Handle "use slug" option change - flush rewrite rules.
*/
private function onUseSlugOptionChange(string $name): void
{
$postType = $this->getPostTypeFromUseSlugOptionName($name);
$this->rewriteManager->flushRewriteRules($postType);
}
/**
* Extract post type from "use slug" option name.
*/
private function getPostTypeFromUseSlugOptionName(string $name): string
{
$withoutPrefix = substr($name, \strlen(Api::OPTION_PREFIX));
return substr($withoutPrefix, 0, -\strlen(Api::OPTION_SUFFIX_USE_SLUG));
}
/**
* Handle page status transitions.
*
* Delete the setting if the assigned page is unpublished.
*/
public function onTransitionPostStatus(string $newStatus, string $oldStatus, WP_Post $post): void
{
if ($post->post_type !== 'page') {
return;
}
if ($newStatus === 'publish') {
return;
}
$postType = $this->api->getPostTypeFromPageId($post->ID);
if (!$postType) {
return;
}
$this->deleteOption($postType);
}
/**
* Handle page deletion or trash.
*/
public function onDeletedPost(int $postId, ?WP_Post $post = null): void
{
if ($post === null) {
$post = get_post($postId);
}
if (!$post instanceof WP_Post) {
return;
}
if ($post->post_type !== 'page') {
return;
}
$postType = $this->api->getPostTypeFromPageId($postId);
if (!$postType) {
return;
}
$this->deleteOption($postType);
}
/**
* Handle page updates that affect the page permalink.
*
* Flushes rewrite rules when the slug or parent of an assigned page (or
* any of its ancestors) changes, since either alters the page's URL.
*/
public function onPageUpdated(int $postId, WP_Post $postAfter, WP_Post $postBefore): void
{
if ($postAfter->post_type !== 'page') {
return;
}
if (
$postAfter->post_name === $postBefore->post_name
&& $postAfter->post_parent === $postBefore->post_parent
) {
return;
}
foreach ($this->api->getPageIds() as $postType => $assignedPageId) {
if (
$postId !== $assignedPageId
&& !\in_array($postId, get_post_ancestors($assignedPageId), true)
) {
continue;
}
$this->rewriteManager->flushRewriteRules($postType);
}
}
/**
* Handle any option change.
*/
private function onOptionChange(string $name, mixed $value): void
{
$postType = $this->getPostTypeFromOptionName($name);
// Update the aggregated option
$pageIds = (array) get_option(Api::OPTION_PAGE_IDS, []);
$pageIds[$postType] = $value;
update_option(Api::OPTION_PAGE_IDS, array_filter($pageIds), true);
$this->rewriteManager->flushRewriteRules($postType);
}
/**
* Delete option for a post type.
*/
private function deleteOption(string $postType): void
{
delete_option($this->api->getOptionName($postType));
}
/**
* Extract post type from option name.
*/
private function getPostTypeFromOptionName(string $name): string
{
return substr($name, \strlen(Api::OPTION_PREFIX));
}
}