author | ymh <ymh.work@gmail.com> |
Tue, 27 Sep 2022 16:37:53 +0200 | |
changeset 19 | 3d72ae0968f4 |
parent 18 | be944660c56a |
child 21 | 48c4eec2b7e6 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* Post revision functions. |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Post_Revisions |
|
7 |
*/ |
|
8 |
||
9 |
/** |
|
10 |
* Determines which fields of posts are to be saved in revisions. |
|
11 |
* |
|
12 |
* @since 2.6.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
13 |
* @since 4.5.0 A `WP_Post` object can now be passed to the `$post` parameter. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
14 |
* @since 4.5.0 The optional `$autosave` parameter was deprecated and renamed to `$deprecated`. |
0 | 15 |
* @access private |
16 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
17 |
* @param array|WP_Post $post Optional. A post array or a WP_Post object being processed |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
18 |
* for insertion as a post revision. Default empty array. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
19 |
* @param bool $deprecated Not used. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
20 |
* @return array Array of fields that can be versioned. |
0 | 21 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
22 |
function _wp_post_revision_fields( $post = array(), $deprecated = false ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
23 |
static $fields = null; |
0 | 24 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
25 |
if ( ! is_array( $post ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
26 |
$post = get_post( $post, ARRAY_A ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
27 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
28 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
29 |
if ( is_null( $fields ) ) { |
16 | 30 |
// Allow these to be versioned. |
0 | 31 |
$fields = array( |
9 | 32 |
'post_title' => __( 'Title' ), |
0 | 33 |
'post_content' => __( 'Content' ), |
34 |
'post_excerpt' => __( 'Excerpt' ), |
|
35 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
36 |
} |
0 | 37 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
38 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
39 |
* Filters the list of fields saved in post revisions. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
40 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
41 |
* Included by default: 'post_title', 'post_content' and 'post_excerpt'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
42 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
43 |
* Disallowed fields: 'ID', 'post_name', 'post_parent', 'post_date', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
44 |
* 'post_date_gmt', 'post_status', 'post_type', 'comment_count', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
45 |
* and 'post_author'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
46 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
47 |
* @since 2.6.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
48 |
* @since 4.5.0 The `$post` parameter was added. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
49 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
50 |
* @param array $fields List of fields to revision. Contains 'post_title', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
51 |
* 'post_content', and 'post_excerpt' by default. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
52 |
* @param array $post A post array being processed for insertion as a post revision. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
53 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
54 |
$fields = apply_filters( '_wp_post_revision_fields', $fields, $post ); |
0 | 55 |
|
16 | 56 |
// WP uses these internally either in versioning or elsewhere - they cannot be versioned. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
57 |
foreach ( array( 'ID', 'post_name', 'post_parent', 'post_date', 'post_date_gmt', 'post_status', 'post_type', 'comment_count', 'post_author' ) as $protect ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
58 |
unset( $fields[ $protect ] ); |
0 | 59 |
} |
60 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
61 |
return $fields; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
62 |
} |
0 | 63 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
64 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
65 |
* Returns a post array ready to be inserted into the posts table as a post revision. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
66 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
67 |
* @since 4.5.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
68 |
* @access private |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
69 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
70 |
* @param array|WP_Post $post Optional. A post array or a WP_Post object to be processed |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
71 |
* for insertion as a post revision. Default empty array. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
72 |
* @param bool $autosave Optional. Is the revision an autosave? Default false. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
73 |
* @return array Post array ready to be inserted as a post revision. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
74 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
75 |
function _wp_post_revision_data( $post = array(), $autosave = false ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
76 |
if ( ! is_array( $post ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
77 |
$post = get_post( $post, ARRAY_A ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
78 |
} |
0 | 79 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
80 |
$fields = _wp_post_revision_fields( $post ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
81 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
82 |
$revision_data = array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
83 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
84 |
foreach ( array_intersect( array_keys( $post ), array_keys( $fields ) ) as $field ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
85 |
$revision_data[ $field ] = $post[ $field ]; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
86 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
87 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
88 |
$revision_data['post_parent'] = $post['ID']; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
89 |
$revision_data['post_status'] = 'inherit'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
90 |
$revision_data['post_type'] = 'revision'; |
16 | 91 |
$revision_data['post_name'] = $autosave ? "$post[ID]-autosave-v1" : "$post[ID]-revision-v1"; // "1" is the revisioning system version. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
92 |
$revision_data['post_date'] = isset( $post['post_modified'] ) ? $post['post_modified'] : ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
93 |
$revision_data['post_date_gmt'] = isset( $post['post_modified_gmt'] ) ? $post['post_modified_gmt'] : ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
94 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
95 |
return $revision_data; |
0 | 96 |
} |
97 |
||
98 |
/** |
|
5 | 99 |
* Creates a revision for the current version of a post. |
0 | 100 |
* |
5 | 101 |
* Typically used immediately after a post update, as every update is a revision, |
102 |
* and the most recent revision always matches the current post. |
|
0 | 103 |
* |
104 |
* @since 2.6.0 |
|
105 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
106 |
* @param int $post_id The ID of the post to save as a revision. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
107 |
* @return int|WP_Error|void Void or 0 if error, new revision ID, if success. |
0 | 108 |
*/ |
109 |
function wp_save_post_revision( $post_id ) { |
|
9 | 110 |
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
0 | 111 |
return; |
9 | 112 |
} |
0 | 113 |
|
16 | 114 |
$post = get_post( $post_id ); |
115 |
if ( ! $post ) { |
|
0 | 116 |
return; |
9 | 117 |
} |
0 | 118 |
|
9 | 119 |
if ( ! post_type_supports( $post->post_type, 'revisions' ) ) { |
0 | 120 |
return; |
9 | 121 |
} |
0 | 122 |
|
16 | 123 |
if ( 'auto-draft' === $post->post_status ) { |
0 | 124 |
return; |
9 | 125 |
} |
0 | 126 |
|
9 | 127 |
if ( ! wp_revisions_enabled( $post ) ) { |
0 | 128 |
return; |
9 | 129 |
} |
0 | 130 |
|
16 | 131 |
/* |
132 |
* Compare the proposed update with the last stored revision verifying that |
|
133 |
* they are different, unless a plugin tells us to always save regardless. |
|
134 |
* If no previous revisions, save one. |
|
135 |
*/ |
|
136 |
$revisions = wp_get_post_revisions( $post_id ); |
|
137 |
if ( $revisions ) { |
|
138 |
// Grab the last revision, but not an autosave. |
|
0 | 139 |
foreach ( $revisions as $revision ) { |
140 |
if ( false !== strpos( $revision->post_name, "{$revision->post_parent}-revision" ) ) { |
|
141 |
$last_revision = $revision; |
|
142 |
break; |
|
143 |
} |
|
144 |
} |
|
145 |
||
5 | 146 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
147 |
* Filters whether the post has changed since the last revision. |
5 | 148 |
* |
149 |
* By default a revision is saved only if one of the revisioned fields has changed. |
|
150 |
* This filter can override that so a revision is saved even if nothing has changed. |
|
151 |
* |
|
152 |
* @since 3.6.0 |
|
153 |
* |
|
154 |
* @param bool $check_for_changes Whether to check for changes before saving a new revision. |
|
155 |
* Default true. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
156 |
* @param WP_Post $last_revision The last revision post object. |
5 | 157 |
* @param WP_Post $post The post object. |
158 |
*/ |
|
16 | 159 |
if ( isset( $last_revision ) && apply_filters( 'wp_save_post_revision_check_for_changes', true, $last_revision, $post ) ) { |
0 | 160 |
$post_has_changed = false; |
161 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
162 |
foreach ( array_keys( _wp_post_revision_fields( $post ) ) as $field ) { |
16 | 163 |
if ( normalize_whitespace( $post->$field ) !== normalize_whitespace( $last_revision->$field ) ) { |
0 | 164 |
$post_has_changed = true; |
165 |
break; |
|
166 |
} |
|
167 |
} |
|
5 | 168 |
|
169 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
170 |
* Filters whether a post has changed. |
5 | 171 |
* |
172 |
* By default a revision is saved only if one of the revisioned fields has changed. |
|
173 |
* This filter allows for additional checks to determine if there were changes. |
|
174 |
* |
|
175 |
* @since 4.1.0 |
|
176 |
* |
|
177 |
* @param bool $post_has_changed Whether the post has changed. |
|
178 |
* @param WP_Post $last_revision The last revision post object. |
|
179 |
* @param WP_Post $post The post object. |
|
180 |
*/ |
|
181 |
$post_has_changed = (bool) apply_filters( 'wp_save_post_revision_post_has_changed', $post_has_changed, $last_revision, $post ); |
|
182 |
||
16 | 183 |
// Don't save revision if post unchanged. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
184 |
if ( ! $post_has_changed ) { |
0 | 185 |
return; |
5 | 186 |
} |
0 | 187 |
} |
188 |
} |
|
189 |
||
190 |
$return = _wp_put_post_revision( $post ); |
|
191 |
||
5 | 192 |
// If a limit for the number of revisions to keep has been set, |
193 |
// delete the oldest ones. |
|
0 | 194 |
$revisions_to_keep = wp_revisions_to_keep( $post ); |
195 |
||
9 | 196 |
if ( $revisions_to_keep < 0 ) { |
0 | 197 |
return $return; |
9 | 198 |
} |
0 | 199 |
|
200 |
$revisions = wp_get_post_revisions( $post_id, array( 'order' => 'ASC' ) ); |
|
201 |
||
9 | 202 |
$delete = count( $revisions ) - $revisions_to_keep; |
0 | 203 |
|
9 | 204 |
if ( $delete < 1 ) { |
0 | 205 |
return $return; |
9 | 206 |
} |
0 | 207 |
|
208 |
$revisions = array_slice( $revisions, 0, $delete ); |
|
209 |
||
9 | 210 |
for ( $i = 0; isset( $revisions[ $i ] ); $i++ ) { |
211 |
if ( false !== strpos( $revisions[ $i ]->post_name, 'autosave' ) ) { |
|
0 | 212 |
continue; |
9 | 213 |
} |
0 | 214 |
|
215 |
wp_delete_post_revision( $revisions[ $i ]->ID ); |
|
216 |
} |
|
217 |
||
218 |
return $return; |
|
219 |
} |
|
220 |
||
221 |
/** |
|
222 |
* Retrieve the autosaved data of the specified post. |
|
223 |
* |
|
16 | 224 |
* Returns a post object with the information that was autosaved for the specified post. |
225 |
* If the optional $user_id is passed, returns the autosave for that user, otherwise |
|
226 |
* returns the latest autosave. |
|
0 | 227 |
* |
228 |
* @since 2.6.0 |
|
229 |
* |
|
18 | 230 |
* @global wpdb $wpdb WordPress database abstraction object. |
231 |
* |
|
0 | 232 |
* @param int $post_id The post ID. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
233 |
* @param int $user_id Optional The post author ID. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
234 |
* @return WP_Post|false The autosaved data or false on failure or when no autosave exists. |
0 | 235 |
*/ |
236 |
function wp_get_post_autosave( $post_id, $user_id = 0 ) { |
|
16 | 237 |
global $wpdb; |
238 |
||
239 |
$autosave_name = $post_id . '-autosave-v1'; |
|
240 |
$user_id_query = ( 0 !== $user_id ) ? "AND post_author = $user_id" : null; |
|
0 | 241 |
|
16 | 242 |
// Construct the autosave query. |
243 |
$autosave_query = " |
|
244 |
SELECT * |
|
245 |
FROM $wpdb->posts |
|
246 |
WHERE post_parent = %d |
|
247 |
AND post_type = 'revision' |
|
248 |
AND post_status = 'inherit' |
|
249 |
AND post_name = %s " . $user_id_query . ' |
|
250 |
ORDER BY post_date DESC |
|
251 |
LIMIT 1'; |
|
0 | 252 |
|
16 | 253 |
$autosave = $wpdb->get_results( |
254 |
$wpdb->prepare( |
|
255 |
$autosave_query, |
|
256 |
$post_id, |
|
257 |
$autosave_name |
|
258 |
) |
|
259 |
); |
|
260 |
||
261 |
if ( ! $autosave ) { |
|
262 |
return false; |
|
0 | 263 |
} |
264 |
||
16 | 265 |
return get_post( $autosave[0] ); |
0 | 266 |
} |
267 |
||
268 |
/** |
|
269 |
* Determines if the specified post is a revision. |
|
270 |
* |
|
271 |
* @since 2.6.0 |
|
272 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
273 |
* @param int|WP_Post $post Post ID or post object. |
16 | 274 |
* @return int|false ID of revision's parent on success, false if not a revision. |
0 | 275 |
*/ |
276 |
function wp_is_post_revision( $post ) { |
|
16 | 277 |
$post = wp_get_post_revision( $post ); |
278 |
if ( ! $post ) { |
|
0 | 279 |
return false; |
9 | 280 |
} |
0 | 281 |
|
282 |
return (int) $post->post_parent; |
|
283 |
} |
|
284 |
||
285 |
/** |
|
286 |
* Determines if the specified post is an autosave. |
|
287 |
* |
|
288 |
* @since 2.6.0 |
|
289 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
290 |
* @param int|WP_Post $post Post ID or post object. |
16 | 291 |
* @return int|false ID of autosave's parent on success, false if not a revision. |
0 | 292 |
*/ |
293 |
function wp_is_post_autosave( $post ) { |
|
16 | 294 |
$post = wp_get_post_revision( $post ); |
295 |
if ( ! $post ) { |
|
0 | 296 |
return false; |
9 | 297 |
} |
0 | 298 |
|
9 | 299 |
if ( false !== strpos( $post->post_name, "{$post->post_parent}-autosave" ) ) { |
0 | 300 |
return (int) $post->post_parent; |
9 | 301 |
} |
0 | 302 |
|
303 |
return false; |
|
304 |
} |
|
305 |
||
306 |
/** |
|
307 |
* Inserts post data into the posts table as a post revision. |
|
308 |
* |
|
309 |
* @since 2.6.0 |
|
310 |
* @access private |
|
311 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
312 |
* @param int|WP_Post|array|null $post Post ID, post object OR post array. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
313 |
* @param bool $autosave Optional. Is the revision an autosave? |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
314 |
* @return int|WP_Error WP_Error or 0 if error, new revision ID if success. |
0 | 315 |
*/ |
316 |
function _wp_put_post_revision( $post = null, $autosave = false ) { |
|
9 | 317 |
if ( is_object( $post ) ) { |
0 | 318 |
$post = get_object_vars( $post ); |
9 | 319 |
} elseif ( ! is_array( $post ) ) { |
320 |
$post = get_post( $post, ARRAY_A ); |
|
321 |
} |
|
0 | 322 |
|
9 | 323 |
if ( ! $post || empty( $post['ID'] ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
324 |
return new WP_Error( 'invalid_post', __( 'Invalid post ID.' ) ); |
9 | 325 |
} |
0 | 326 |
|
16 | 327 |
if ( isset( $post['post_type'] ) && 'revision' === $post['post_type'] ) { |
0 | 328 |
return new WP_Error( 'post_type', __( 'Cannot create a revision of a revision' ) ); |
9 | 329 |
} |
0 | 330 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
331 |
$post = _wp_post_revision_data( $post, $autosave ); |
16 | 332 |
$post = wp_slash( $post ); // Since data is from DB. |
0 | 333 |
|
18 | 334 |
$revision_id = wp_insert_post( $post, true ); |
9 | 335 |
if ( is_wp_error( $revision_id ) ) { |
0 | 336 |
return $revision_id; |
9 | 337 |
} |
0 | 338 |
|
5 | 339 |
if ( $revision_id ) { |
340 |
/** |
|
341 |
* Fires once a revision has been saved. |
|
342 |
* |
|
343 |
* @since 2.6.0 |
|
344 |
* |
|
345 |
* @param int $revision_id Post revision ID. |
|
346 |
*/ |
|
0 | 347 |
do_action( '_wp_put_post_revision', $revision_id ); |
5 | 348 |
} |
0 | 349 |
|
350 |
return $revision_id; |
|
351 |
} |
|
352 |
||
353 |
/** |
|
354 |
* Gets a post revision. |
|
355 |
* |
|
356 |
* @since 2.6.0 |
|
357 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
358 |
* @param int|WP_Post $post The post ID or object. |
16 | 359 |
* @param string $output Optional. The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which |
360 |
* correspond to a WP_Post object, an associative array, or a numeric array, |
|
361 |
* respectively. Default OBJECT. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
362 |
* @param string $filter Optional sanitation filter. See sanitize_post(). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
363 |
* @return WP_Post|array|null WP_Post (or array) on success, or null on failure. |
0 | 364 |
*/ |
9 | 365 |
function wp_get_post_revision( &$post, $output = OBJECT, $filter = 'raw' ) { |
16 | 366 |
$revision = get_post( $post, OBJECT, $filter ); |
367 |
if ( ! $revision ) { |
|
0 | 368 |
return $revision; |
9 | 369 |
} |
370 |
if ( 'revision' !== $revision->post_type ) { |
|
5 | 371 |
return null; |
9 | 372 |
} |
0 | 373 |
|
18 | 374 |
if ( OBJECT === $output ) { |
0 | 375 |
return $revision; |
18 | 376 |
} elseif ( ARRAY_A === $output ) { |
9 | 377 |
$_revision = get_object_vars( $revision ); |
0 | 378 |
return $_revision; |
18 | 379 |
} elseif ( ARRAY_N === $output ) { |
9 | 380 |
$_revision = array_values( get_object_vars( $revision ) ); |
0 | 381 |
return $_revision; |
382 |
} |
|
383 |
||
384 |
return $revision; |
|
385 |
} |
|
386 |
||
387 |
/** |
|
388 |
* Restores a post to the specified revision. |
|
389 |
* |
|
390 |
* Can restore a past revision using all fields of the post revision, or only selected fields. |
|
391 |
* |
|
392 |
* @since 2.6.0 |
|
393 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
394 |
* @param int|WP_Post $revision_id Revision ID or revision object. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
395 |
* @param array $fields Optional. What fields to restore from. Defaults to all. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
396 |
* @return int|false|null Null if error, false if no fields to restore, (int) post ID if success. |
0 | 397 |
*/ |
398 |
function wp_restore_post_revision( $revision_id, $fields = null ) { |
|
16 | 399 |
$revision = wp_get_post_revision( $revision_id, ARRAY_A ); |
400 |
if ( ! $revision ) { |
|
0 | 401 |
return $revision; |
9 | 402 |
} |
0 | 403 |
|
9 | 404 |
if ( ! is_array( $fields ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
405 |
$fields = array_keys( _wp_post_revision_fields( $revision ) ); |
9 | 406 |
} |
0 | 407 |
|
408 |
$update = array(); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
409 |
foreach ( array_intersect( array_keys( $revision ), $fields ) as $field ) { |
9 | 410 |
$update[ $field ] = $revision[ $field ]; |
0 | 411 |
} |
412 |
||
9 | 413 |
if ( ! $update ) { |
0 | 414 |
return false; |
9 | 415 |
} |
0 | 416 |
|
417 |
$update['ID'] = $revision['post_parent']; |
|
418 |
||
16 | 419 |
$update = wp_slash( $update ); // Since data is from DB. |
0 | 420 |
|
421 |
$post_id = wp_update_post( $update ); |
|
9 | 422 |
if ( ! $post_id || is_wp_error( $post_id ) ) { |
0 | 423 |
return $post_id; |
9 | 424 |
} |
0 | 425 |
|
16 | 426 |
// Update last edit user. |
0 | 427 |
update_post_meta( $post_id, '_edit_last', get_current_user_id() ); |
428 |
||
5 | 429 |
/** |
430 |
* Fires after a post revision has been restored. |
|
431 |
* |
|
432 |
* @since 2.6.0 |
|
433 |
* |
|
434 |
* @param int $post_id Post ID. |
|
435 |
* @param int $revision_id Post revision ID. |
|
436 |
*/ |
|
0 | 437 |
do_action( 'wp_restore_post_revision', $post_id, $revision['ID'] ); |
438 |
||
439 |
return $post_id; |
|
440 |
} |
|
441 |
||
442 |
/** |
|
443 |
* Deletes a revision. |
|
444 |
* |
|
445 |
* Deletes the row from the posts table corresponding to the specified revision. |
|
446 |
* |
|
447 |
* @since 2.6.0 |
|
448 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
449 |
* @param int|WP_Post $revision_id Revision ID or revision object. |
19 | 450 |
* @return WP_Post|false|null Null or false if error, deleted post object if success. |
0 | 451 |
*/ |
452 |
function wp_delete_post_revision( $revision_id ) { |
|
16 | 453 |
$revision = wp_get_post_revision( $revision_id ); |
454 |
if ( ! $revision ) { |
|
0 | 455 |
return $revision; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
456 |
} |
0 | 457 |
|
458 |
$delete = wp_delete_post( $revision->ID ); |
|
5 | 459 |
if ( $delete ) { |
460 |
/** |
|
461 |
* Fires once a post revision has been deleted. |
|
462 |
* |
|
463 |
* @since 2.6.0 |
|
464 |
* |
|
16 | 465 |
* @param int $revision_id Post revision ID. |
466 |
* @param WP_Post $revision Post revision object. |
|
5 | 467 |
*/ |
0 | 468 |
do_action( 'wp_delete_post_revision', $revision->ID, $revision ); |
5 | 469 |
} |
0 | 470 |
|
471 |
return $delete; |
|
472 |
} |
|
473 |
||
474 |
/** |
|
475 |
* Returns all revisions of specified post. |
|
476 |
* |
|
477 |
* @since 2.6.0 |
|
478 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
479 |
* @see get_children() |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
480 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
481 |
* @param int|WP_Post $post_id Optional. Post ID or WP_Post object. Default is global `$post`. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
482 |
* @param array|null $args Optional. Arguments for retrieving post revisions. Default null. |
0 | 483 |
* @return array An array of revisions, or an empty array if none. |
484 |
*/ |
|
485 |
function wp_get_post_revisions( $post_id = 0, $args = null ) { |
|
486 |
$post = get_post( $post_id ); |
|
9 | 487 |
if ( ! $post || empty( $post->ID ) ) { |
0 | 488 |
return array(); |
9 | 489 |
} |
0 | 490 |
|
9 | 491 |
$defaults = array( |
492 |
'order' => 'DESC', |
|
493 |
'orderby' => 'date ID', |
|
494 |
'check_enabled' => true, |
|
495 |
); |
|
496 |
$args = wp_parse_args( $args, $defaults ); |
|
0 | 497 |
|
9 | 498 |
if ( $args['check_enabled'] && ! wp_revisions_enabled( $post ) ) { |
0 | 499 |
return array(); |
9 | 500 |
} |
0 | 501 |
|
9 | 502 |
$args = array_merge( |
503 |
$args, |
|
504 |
array( |
|
505 |
'post_parent' => $post->ID, |
|
506 |
'post_type' => 'revision', |
|
507 |
'post_status' => 'inherit', |
|
508 |
) |
|
509 |
); |
|
0 | 510 |
|
16 | 511 |
$revisions = get_children( $args ); |
512 |
if ( ! $revisions ) { |
|
0 | 513 |
return array(); |
9 | 514 |
} |
0 | 515 |
|
516 |
return $revisions; |
|
517 |
} |
|
518 |
||
519 |
/** |
|
19 | 520 |
* Returns the url for viewing and potentially restoring revisions of a given post. |
521 |
* |
|
522 |
* @since 5.9.0 |
|
523 |
* |
|
524 |
* @param int|WP_Post $post_id Optional. Post ID or WP_Post object. Default is global `$post`. |
|
525 |
* @return null|string The URL for editing revisions on the given post, otherwise null. |
|
526 |
*/ |
|
527 |
function wp_get_post_revisions_url( $post_id = 0 ) { |
|
528 |
$post = get_post( $post_id ); |
|
529 |
||
530 |
if ( ! $post instanceof WP_Post ) { |
|
531 |
return null; |
|
532 |
} |
|
533 |
||
534 |
// If the post is a revision, return early. |
|
535 |
if ( 'revision' === $post->post_type ) { |
|
536 |
return get_edit_post_link( $post ); |
|
537 |
} |
|
538 |
||
539 |
if ( ! wp_revisions_enabled( $post ) ) { |
|
540 |
return null; |
|
541 |
} |
|
542 |
||
543 |
$revisions = wp_get_post_revisions( $post->ID, array( 'posts_per_page' => 1 ) ); |
|
544 |
||
545 |
if ( 0 === count( $revisions ) ) { |
|
546 |
return null; |
|
547 |
} |
|
548 |
||
549 |
$revision = reset( $revisions ); |
|
550 |
return get_edit_post_link( $revision ); |
|
551 |
} |
|
552 |
||
553 |
/** |
|
0 | 554 |
* Determine if revisions are enabled for a given post. |
555 |
* |
|
556 |
* @since 3.6.0 |
|
557 |
* |
|
5 | 558 |
* @param WP_Post $post The post object. |
0 | 559 |
* @return bool True if number of revisions to keep isn't zero, false otherwise. |
560 |
*/ |
|
561 |
function wp_revisions_enabled( $post ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
562 |
return wp_revisions_to_keep( $post ) !== 0; |
0 | 563 |
} |
564 |
||
565 |
/** |
|
566 |
* Determine how many revisions to retain for a given post. |
|
5 | 567 |
* |
568 |
* By default, an infinite number of revisions are kept. |
|
569 |
* |
|
570 |
* The constant WP_POST_REVISIONS can be set in wp-config to specify the limit |
|
571 |
* of revisions to keep. |
|
0 | 572 |
* |
573 |
* @since 3.6.0 |
|
574 |
* |
|
5 | 575 |
* @param WP_Post $post The post object. |
0 | 576 |
* @return int The number of revisions to keep. |
577 |
*/ |
|
578 |
function wp_revisions_to_keep( $post ) { |
|
579 |
$num = WP_POST_REVISIONS; |
|
580 |
||
9 | 581 |
if ( true === $num ) { |
0 | 582 |
$num = -1; |
9 | 583 |
} else { |
18 | 584 |
$num = (int) $num; |
9 | 585 |
} |
0 | 586 |
|
9 | 587 |
if ( ! post_type_supports( $post->post_type, 'revisions' ) ) { |
0 | 588 |
$num = 0; |
9 | 589 |
} |
0 | 590 |
|
5 | 591 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
592 |
* Filters the number of revisions to save for the given post. |
5 | 593 |
* |
594 |
* Overrides the value of WP_POST_REVISIONS. |
|
595 |
* |
|
596 |
* @since 3.6.0 |
|
597 |
* |
|
598 |
* @param int $num Number of revisions to store. |
|
599 |
* @param WP_Post $post Post object. |
|
600 |
*/ |
|
18 | 601 |
$num = apply_filters( 'wp_revisions_to_keep', $num, $post ); |
602 |
||
603 |
/** |
|
604 |
* Filters the number of revisions to save for the given post by its post type. |
|
605 |
* |
|
606 |
* Overrides both the value of WP_POST_REVISIONS and the {@see 'wp_revisions_to_keep'} filter. |
|
607 |
* |
|
608 |
* The dynamic portion of the hook name, `$post->post_type`, refers to |
|
609 |
* the post type slug. |
|
610 |
* |
|
19 | 611 |
* Possible hook names include: |
612 |
* |
|
613 |
* - `wp_post_revisions_to_keep` |
|
614 |
* - `wp_page_revisions_to_keep` |
|
615 |
* |
|
18 | 616 |
* @since 5.8.0 |
617 |
* |
|
618 |
* @param int $num Number of revisions to store. |
|
619 |
* @param WP_Post $post Post object. |
|
620 |
*/ |
|
621 |
$num = apply_filters( "wp_{$post->post_type}_revisions_to_keep", $num, $post ); |
|
622 |
||
623 |
return (int) $num; |
|
0 | 624 |
} |
625 |
||
626 |
/** |
|
627 |
* Sets up the post object for preview based on the post autosave. |
|
628 |
* |
|
629 |
* @since 2.7.0 |
|
630 |
* @access private |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
631 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
632 |
* @param WP_Post $post |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
633 |
* @return WP_Post|false |
0 | 634 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
635 |
function _set_preview( $post ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
636 |
if ( ! is_object( $post ) ) { |
0 | 637 |
return $post; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
638 |
} |
0 | 639 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
640 |
$preview = wp_get_post_autosave( $post->ID ); |
19 | 641 |
|
642 |
if ( is_object( $preview ) ) { |
|
643 |
$preview = sanitize_post( $preview ); |
|
0 | 644 |
|
19 | 645 |
$post->post_content = $preview->post_content; |
646 |
$post->post_title = $preview->post_title; |
|
647 |
$post->post_excerpt = $preview->post_excerpt; |
|
648 |
} |
|
0 | 649 |
|
650 |
add_filter( 'get_the_terms', '_wp_preview_terms_filter', 10, 3 ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
651 |
add_filter( 'get_post_metadata', '_wp_preview_post_thumbnail_filter', 10, 3 ); |
0 | 652 |
|
653 |
return $post; |
|
654 |
} |
|
655 |
||
656 |
/** |
|
657 |
* Filters the latest content for preview from the post autosave. |
|
658 |
* |
|
659 |
* @since 2.7.0 |
|
660 |
* @access private |
|
661 |
*/ |
|
662 |
function _show_post_preview() { |
|
9 | 663 |
if ( isset( $_GET['preview_id'] ) && isset( $_GET['preview_nonce'] ) ) { |
0 | 664 |
$id = (int) $_GET['preview_id']; |
665 |
||
9 | 666 |
if ( false === wp_verify_nonce( $_GET['preview_nonce'], 'post_preview_' . $id ) ) { |
667 |
wp_die( __( 'Sorry, you are not allowed to preview drafts.' ), 403 ); |
|
668 |
} |
|
0 | 669 |
|
9 | 670 |
add_filter( 'the_preview', '_set_preview' ); |
0 | 671 |
} |
672 |
} |
|
673 |
||
674 |
/** |
|
675 |
* Filters terms lookup to set the post format. |
|
676 |
* |
|
677 |
* @since 3.6.0 |
|
678 |
* @access private |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
679 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
680 |
* @param array $terms |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
681 |
* @param int $post_id |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
682 |
* @param string $taxonomy |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
683 |
* @return array |
0 | 684 |
*/ |
685 |
function _wp_preview_terms_filter( $terms, $post_id, $taxonomy ) { |
|
16 | 686 |
$post = get_post(); |
687 |
if ( ! $post ) { |
|
0 | 688 |
return $terms; |
9 | 689 |
} |
0 | 690 |
|
16 | 691 |
if ( empty( $_REQUEST['post_format'] ) || $post->ID != $post_id |
692 |
|| 'post_format' !== $taxonomy || 'revision' === $post->post_type |
|
693 |
) { |
|
0 | 694 |
return $terms; |
9 | 695 |
} |
0 | 696 |
|
16 | 697 |
if ( 'standard' === $_REQUEST['post_format'] ) { |
0 | 698 |
$terms = array(); |
16 | 699 |
} else { |
700 |
$term = get_term_by( 'slug', 'post-format-' . sanitize_key( $_REQUEST['post_format'] ), 'post_format' ); |
|
701 |
if ( $term ) { |
|
702 |
$terms = array( $term ); // Can only have one post format. |
|
703 |
} |
|
9 | 704 |
} |
0 | 705 |
|
706 |
return $terms; |
|
707 |
} |
|
708 |
||
709 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
710 |
* Filters post thumbnail lookup to set the post thumbnail. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
711 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
712 |
* @since 4.6.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
713 |
* @access private |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
714 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
715 |
* @param null|array|string $value The value to return - a single metadata value, or an array of values. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
716 |
* @param int $post_id Post ID. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
717 |
* @param string $meta_key Meta key. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
718 |
* @return null|array The default return value or the post thumbnail meta array. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
719 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
720 |
function _wp_preview_post_thumbnail_filter( $value, $post_id, $meta_key ) { |
16 | 721 |
$post = get_post(); |
722 |
if ( ! $post ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
723 |
return $value; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
724 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
725 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
726 |
if ( empty( $_REQUEST['_thumbnail_id'] ) || |
9 | 727 |
empty( $_REQUEST['preview_id'] ) || |
728 |
$post->ID != $post_id || |
|
16 | 729 |
'_thumbnail_id' !== $meta_key || |
730 |
'revision' === $post->post_type || |
|
9 | 731 |
$post_id != $_REQUEST['preview_id'] ) { |
732 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
733 |
return $value; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
734 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
735 |
|
18 | 736 |
$thumbnail_id = (int) $_REQUEST['_thumbnail_id']; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
737 |
if ( $thumbnail_id <= 0 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
738 |
return ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
739 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
740 |
|
18 | 741 |
return (string) $thumbnail_id; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
742 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
743 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
744 |
/** |
0 | 745 |
* Gets the post revision version. |
746 |
* |
|
747 |
* @since 3.6.0 |
|
748 |
* @access private |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
749 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
750 |
* @param WP_Post $revision |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
751 |
* @return int|false |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
752 |
*/ |
0 | 753 |
function _wp_get_post_revision_version( $revision ) { |
9 | 754 |
if ( is_object( $revision ) ) { |
0 | 755 |
$revision = get_object_vars( $revision ); |
9 | 756 |
} elseif ( ! is_array( $revision ) ) { |
0 | 757 |
return false; |
9 | 758 |
} |
0 | 759 |
|
9 | 760 |
if ( preg_match( '/^\d+-(?:autosave|revision)-v(\d+)$/', $revision['post_name'], $matches ) ) { |
0 | 761 |
return (int) $matches[1]; |
9 | 762 |
} |
0 | 763 |
|
764 |
return 0; |
|
765 |
} |
|
766 |
||
767 |
/** |
|
768 |
* Upgrade the revisions author, add the current post as a revision and set the revisions version to 1 |
|
769 |
* |
|
770 |
* @since 3.6.0 |
|
771 |
* @access private |
|
772 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
773 |
* @global wpdb $wpdb WordPress database abstraction object. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
774 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
775 |
* @param WP_Post $post Post object |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
776 |
* @param array $revisions Current revisions of the post |
0 | 777 |
* @return bool true if the revisions were upgraded, false if problems |
778 |
*/ |
|
779 |
function _wp_upgrade_revisions_of_post( $post, $revisions ) { |
|
780 |
global $wpdb; |
|
781 |
||
16 | 782 |
// Add post option exclusively. |
9 | 783 |
$lock = "revision-upgrade-{$post->ID}"; |
784 |
$now = time(); |
|
0 | 785 |
$result = $wpdb->query( $wpdb->prepare( "INSERT IGNORE INTO `$wpdb->options` (`option_name`, `option_value`, `autoload`) VALUES (%s, %s, 'no') /* LOCK */", $lock, $now ) ); |
786 |
if ( ! $result ) { |
|
16 | 787 |
// If we couldn't get a lock, see how old the previous lock is. |
0 | 788 |
$locked = get_option( $lock ); |
789 |
if ( ! $locked ) { |
|
790 |
// Can't write to the lock, and can't read the lock. |
|
16 | 791 |
// Something broken has happened. |
0 | 792 |
return false; |
793 |
} |
|
794 |
||
795 |
if ( $locked > $now - 3600 ) { |
|
16 | 796 |
// Lock is not too old: some other process may be upgrading this post. Bail. |
0 | 797 |
return false; |
798 |
} |
|
799 |
||
16 | 800 |
// Lock is too old - update it (below) and continue. |
0 | 801 |
} |
802 |
||
803 |
// If we could get a lock, re-"add" the option to fire all the correct filters. |
|
804 |
update_option( $lock, $now ); |
|
805 |
||
806 |
reset( $revisions ); |
|
807 |
$add_last = true; |
|
808 |
||
809 |
do { |
|
810 |
$this_revision = current( $revisions ); |
|
811 |
$prev_revision = next( $revisions ); |
|
812 |
||
813 |
$this_revision_version = _wp_get_post_revision_version( $this_revision ); |
|
814 |
||
16 | 815 |
// Something terrible happened. |
9 | 816 |
if ( false === $this_revision_version ) { |
0 | 817 |
continue; |
9 | 818 |
} |
0 | 819 |
|
820 |
// 1 is the latest revision version, so we're already up to date. |
|
821 |
// No need to add a copy of the post as latest revision. |
|
822 |
if ( 0 < $this_revision_version ) { |
|
823 |
$add_last = false; |
|
824 |
continue; |
|
825 |
} |
|
826 |
||
16 | 827 |
// Always update the revision version. |
0 | 828 |
$update = array( |
829 |
'post_name' => preg_replace( '/^(\d+-(?:autosave|revision))[\d-]*$/', '$1-v1', $this_revision->post_name ), |
|
830 |
); |
|
831 |
||
16 | 832 |
/* |
833 |
* If this revision is the oldest revision of the post, i.e. no $prev_revision, |
|
834 |
* the correct post_author is probably $post->post_author, but that's only a good guess. |
|
835 |
* Update the revision version only and Leave the author as-is. |
|
836 |
*/ |
|
0 | 837 |
if ( $prev_revision ) { |
838 |
$prev_revision_version = _wp_get_post_revision_version( $prev_revision ); |
|
839 |
||
840 |
// If the previous revision is already up to date, it no longer has the information we need :( |
|
9 | 841 |
if ( $prev_revision_version < 1 ) { |
0 | 842 |
$update['post_author'] = $prev_revision->post_author; |
9 | 843 |
} |
0 | 844 |
} |
845 |
||
16 | 846 |
// Upgrade this revision. |
0 | 847 |
$result = $wpdb->update( $wpdb->posts, $update, array( 'ID' => $this_revision->ID ) ); |
848 |
||
9 | 849 |
if ( $result ) { |
0 | 850 |
wp_cache_delete( $this_revision->ID, 'posts' ); |
9 | 851 |
} |
0 | 852 |
} while ( $prev_revision ); |
853 |
||
854 |
delete_option( $lock ); |
|
855 |
||
856 |
// Add a copy of the post as latest revision. |
|
9 | 857 |
if ( $add_last ) { |
0 | 858 |
wp_save_post_revision( $post->ID ); |
9 | 859 |
} |
0 | 860 |
|
861 |
return true; |
|
862 |
} |