2013-02-21 22:24:34 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Post revision functions.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Post_Revisions
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines which fields of posts are to be saved in revisions.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
2016-02-24 01:44:59 +01:00
|
|
|
* @since 4.5.0 A `WP_Post` object can now be passed to the `$post` parameter.
|
|
|
|
* @since 4.5.0 The optional `$autosave` parameter was deprecated and renamed to `$deprecated`.
|
2013-02-21 22:24:34 +01:00
|
|
|
* @access private
|
2013-05-05 04:46:59 +02:00
|
|
|
*
|
2016-02-24 01:44:59 +01:00
|
|
|
* @param array|WP_Post $post Optional. A post array or a WP_Post object being processed
|
|
|
|
* for insertion as a post revision. Default empty array.
|
|
|
|
* @param bool $deprecated Not used.
|
|
|
|
* @return array Array of fields that can be versioned.
|
2013-02-21 22:24:34 +01:00
|
|
|
*/
|
2016-02-24 01:44:59 +01:00
|
|
|
function _wp_post_revision_fields( $post = array(), $deprecated = false ) {
|
2015-05-29 17:43:29 +02:00
|
|
|
static $fields = null;
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2016-02-24 01:44:59 +01:00
|
|
|
if ( ! is_array( $post ) ) {
|
|
|
|
$post = get_post( $post, ARRAY_A );
|
|
|
|
}
|
|
|
|
|
2015-05-29 17:43:29 +02:00
|
|
|
if ( is_null( $fields ) ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
// Allow these to be versioned.
|
2013-02-21 22:24:34 +01:00
|
|
|
$fields = array(
|
2017-12-01 00:11:00 +01:00
|
|
|
'post_title' => __( 'Title' ),
|
2013-02-21 22:24:34 +01:00
|
|
|
'post_content' => __( 'Content' ),
|
|
|
|
'post_excerpt' => __( 'Excerpt' ),
|
|
|
|
);
|
2016-02-24 01:44:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-22 20:50:28 +02:00
|
|
|
* Filters the list of fields saved in post revisions.
|
2016-02-24 01:44:59 +01:00
|
|
|
*
|
|
|
|
* Included by default: 'post_title', 'post_content' and 'post_excerpt'.
|
|
|
|
*
|
|
|
|
* Disallowed fields: 'ID', 'post_name', 'post_parent', 'post_date',
|
|
|
|
* 'post_date_gmt', 'post_status', 'post_type', 'comment_count',
|
|
|
|
* and 'post_author'.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
* @since 4.5.0 The `$post` parameter was added.
|
|
|
|
*
|
|
|
|
* @param array $fields List of fields to revision. Contains 'post_title',
|
|
|
|
* 'post_content', and 'post_excerpt' by default.
|
|
|
|
* @param array $post A post array being processed for insertion as a post revision.
|
|
|
|
*/
|
|
|
|
$fields = apply_filters( '_wp_post_revision_fields', $fields, $post );
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// WP uses these internally either in versioning or elsewhere - they cannot be versioned.
|
2016-02-24 01:44:59 +01:00
|
|
|
foreach ( array( 'ID', 'post_name', 'post_parent', 'post_date', 'post_date_gmt', 'post_status', 'post_type', 'comment_count', 'post_author' ) as $protect ) {
|
|
|
|
unset( $fields[ $protect ] );
|
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2016-02-24 01:44:59 +01:00
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a post array ready to be inserted into the posts table as a post revision.
|
|
|
|
*
|
|
|
|
* @since 4.5.0
|
|
|
|
* @access private
|
|
|
|
*
|
|
|
|
* @param array|WP_Post $post Optional. A post array or a WP_Post object to be processed
|
|
|
|
* for insertion as a post revision. Default empty array.
|
|
|
|
* @param bool $autosave Optional. Is the revision an autosave? Default false.
|
|
|
|
* @return array Post array ready to be inserted as a post revision.
|
|
|
|
*/
|
|
|
|
function _wp_post_revision_data( $post = array(), $autosave = false ) {
|
|
|
|
if ( ! is_array( $post ) ) {
|
|
|
|
$post = get_post( $post, ARRAY_A );
|
2013-02-21 22:24:34 +01:00
|
|
|
}
|
|
|
|
|
2016-02-24 01:44:59 +01:00
|
|
|
$fields = _wp_post_revision_fields( $post );
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2016-02-24 01:44:59 +01:00
|
|
|
$revision_data = array();
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2016-02-24 01:44:59 +01:00
|
|
|
foreach ( array_intersect( array_keys( $post ), array_keys( $fields ) ) as $field ) {
|
|
|
|
$revision_data[ $field ] = $post[ $field ];
|
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2016-02-24 01:44:59 +01:00
|
|
|
$revision_data['post_parent'] = $post['ID'];
|
|
|
|
$revision_data['post_status'] = 'inherit';
|
|
|
|
$revision_data['post_type'] = 'revision';
|
2020-01-29 01:45:18 +01:00
|
|
|
$revision_data['post_name'] = $autosave ? "$post[ID]-autosave-v1" : "$post[ID]-revision-v1"; // "1" is the revisioning system version.
|
2016-02-24 01:44:59 +01:00
|
|
|
$revision_data['post_date'] = isset( $post['post_modified'] ) ? $post['post_modified'] : '';
|
|
|
|
$revision_data['post_date_gmt'] = isset( $post['post_modified_gmt'] ) ? $post['post_modified_gmt'] : '';
|
|
|
|
|
|
|
|
return $revision_data;
|
2013-02-21 22:24:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-11-01 21:20:23 +01:00
|
|
|
* Creates a revision for the current version of a post.
|
2013-02-21 22:24:34 +01:00
|
|
|
*
|
2014-11-01 21:20:23 +01:00
|
|
|
* Typically used immediately after a post update, as every update is a revision,
|
|
|
|
* and the most recent revision always matches the current post.
|
2013-02-21 22:24:34 +01:00
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*
|
2015-05-27 20:38:24 +02:00
|
|
|
* @param int $post_id The ID of the post to save as a revision.
|
|
|
|
* @return int|WP_Error|void Void or 0 if error, new revision ID, if success.
|
2013-02-21 22:24:34 +01:00
|
|
|
*/
|
2013-03-27 21:21:38 +01:00
|
|
|
function wp_save_post_revision( $post_id ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2019-07-03 01:42:58 +02:00
|
|
|
$post = get_post( $post_id );
|
|
|
|
if ( ! $post ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! post_type_supports( $post->post_type, 'revisions' ) ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( 'auto-draft' === $post->post_status ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! wp_revisions_enabled( $post ) ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
/*
|
|
|
|
* Compare the proposed update with the last stored revision verifying that
|
|
|
|
* they are different, unless a plugin tells us to always save regardless.
|
|
|
|
* If no previous revisions, save one.
|
|
|
|
*/
|
2019-07-03 01:42:58 +02:00
|
|
|
$revisions = wp_get_post_revisions( $post_id );
|
|
|
|
if ( $revisions ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
// Grab the last revision, but not an autosave.
|
2013-03-29 06:28:44 +01:00
|
|
|
foreach ( $revisions as $revision ) {
|
|
|
|
if ( false !== strpos( $revision->post_name, "{$revision->post_parent}-revision" ) ) {
|
|
|
|
$last_revision = $revision;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-03-27 21:21:38 +01:00
|
|
|
|
2014-03-25 10:00:14 +01:00
|
|
|
/**
|
2016-05-22 20:50:28 +02:00
|
|
|
* Filters whether the post has changed since the last revision.
|
2014-03-25 10:00:14 +01:00
|
|
|
*
|
|
|
|
* By default a revision is saved only if one of the revisioned fields has changed.
|
|
|
|
* This filter can override that so a revision is saved even if nothing has changed.
|
|
|
|
*
|
|
|
|
* @since 3.6.0
|
|
|
|
*
|
2014-10-31 00:50:22 +01:00
|
|
|
* @param bool $check_for_changes Whether to check for changes before saving a new revision.
|
|
|
|
* Default true.
|
2015-12-06 22:23:25 +01:00
|
|
|
* @param WP_Post $last_revision The last revision post object.
|
2014-10-31 00:50:22 +01:00
|
|
|
* @param WP_Post $post The post object.
|
2014-03-25 10:00:14 +01:00
|
|
|
*/
|
2019-07-05 05:14:56 +02:00
|
|
|
if ( isset( $last_revision ) && apply_filters( 'wp_save_post_revision_check_for_changes', true, $last_revision, $post ) ) {
|
2013-03-29 06:28:44 +01:00
|
|
|
$post_has_changed = false;
|
2013-03-27 21:21:38 +01:00
|
|
|
|
2016-02-24 01:44:59 +01:00
|
|
|
foreach ( array_keys( _wp_post_revision_fields( $post ) ) as $field ) {
|
2020-02-25 20:35:09 +01:00
|
|
|
if ( normalize_whitespace( $post->$field ) !== normalize_whitespace( $last_revision->$field ) ) {
|
2013-03-29 06:28:44 +01:00
|
|
|
$post_has_changed = true;
|
|
|
|
break;
|
2013-03-27 21:21:38 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
}
|
2014-10-29 20:02:21 +01:00
|
|
|
|
|
|
|
/**
|
2016-05-22 20:50:28 +02:00
|
|
|
* Filters whether a post has changed.
|
2014-10-29 20:02:21 +01:00
|
|
|
*
|
|
|
|
* By default a revision is saved only if one of the revisioned fields has changed.
|
|
|
|
* This filter allows for additional checks to determine if there were changes.
|
|
|
|
*
|
|
|
|
* @since 4.1.0
|
|
|
|
*
|
|
|
|
* @param bool $post_has_changed Whether the post has changed.
|
2014-11-28 13:19:23 +01:00
|
|
|
* @param WP_Post $last_revision The last revision post object.
|
2014-10-29 20:02:21 +01:00
|
|
|
* @param WP_Post $post The post object.
|
|
|
|
*/
|
|
|
|
$post_has_changed = (bool) apply_filters( 'wp_save_post_revision_post_has_changed', $post_has_changed, $last_revision, $post );
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Don't save revision if post unchanged.
|
2015-06-16 22:01:25 +02:00
|
|
|
if ( ! $post_has_changed ) {
|
2013-03-29 06:28:44 +01:00
|
|
|
return;
|
2014-10-29 20:02:21 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$return = _wp_put_post_revision( $post );
|
|
|
|
|
2014-11-01 21:20:23 +01:00
|
|
|
// If a limit for the number of revisions to keep has been set,
|
|
|
|
// delete the oldest ones.
|
2013-03-29 06:28:44 +01:00
|
|
|
$revisions_to_keep = wp_revisions_to_keep( $post );
|
2013-03-27 19:11:56 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $revisions_to_keep < 0 ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return $return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
|
|
|
$revisions = wp_get_post_revisions( $post_id, array( 'order' => 'ASC' ) );
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$delete = count( $revisions ) - $revisions_to_keep;
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $delete < 1 ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return $return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
|
|
|
$revisions = array_slice( $revisions, 0, $delete );
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
for ( $i = 0; isset( $revisions[ $i ] ); $i++ ) {
|
|
|
|
if ( false !== strpos( $revisions[ $i ]->post_name, 'autosave' ) ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
continue;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-03-29 06:28:44 +01:00
|
|
|
|
2013-03-27 21:21:38 +01:00
|
|
|
wp_delete_post_revision( $revisions[ $i ]->ID );
|
2013-02-21 22:24:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve the autosaved data of the specified post.
|
|
|
|
*
|
2020-07-11 23:15:06 +02:00
|
|
|
* Returns a post object with the information that was autosaved for the specified post.
|
|
|
|
* If the optional $user_id is passed, returns the autosave for that user, otherwise
|
|
|
|
* returns the latest autosave.
|
2013-02-21 22:24:34 +01:00
|
|
|
*
|
|
|
|
* @since 2.6.0
|
2013-05-05 04:46:59 +02:00
|
|
|
*
|
2020-09-14 15:37:06 +02:00
|
|
|
* @global wpdb $wpdb WordPress database abstraction object.
|
|
|
|
*
|
2013-02-21 22:24:34 +01:00
|
|
|
* @param int $post_id The post ID.
|
2015-05-27 20:38:24 +02:00
|
|
|
* @param int $user_id Optional The post author ID.
|
|
|
|
* @return WP_Post|false The autosaved data or false on failure or when no autosave exists.
|
2013-02-21 22:24:34 +01:00
|
|
|
*/
|
2013-03-16 22:15:43 +01:00
|
|
|
function wp_get_post_autosave( $post_id, $user_id = 0 ) {
|
Revisions: optimize performance when post has large number of revisions.
Improve speed and reduce the memory footprint when loading posts with many revisions.
* Use a direct query in `wp_get_post_autosave` to avoid loading all revisions.
* Query for IDs vs full objects in `register_and_do_post_meta_boxes`.
Props pdfernhout, johnnyb, miqrogroove, ocean90, senatorman, DBrumbaugh10Up, martijn-van-der-kooij, pavelevap, mackensen, mikeyarce, whyisjake.
Fixes #34560.
Built from https://develop.svn.wordpress.org/trunk@48422
git-svn-id: http://core.svn.wordpress.org/trunk@48191 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-10 17:13:07 +02:00
|
|
|
global $wpdb;
|
|
|
|
|
|
|
|
$autosave_name = $post_id . '-autosave-v1';
|
|
|
|
$user_id_query = ( 0 !== $user_id ) ? "AND post_author = $user_id" : null;
|
|
|
|
|
2020-07-11 23:15:06 +02:00
|
|
|
// Construct the autosave query.
|
Revisions: optimize performance when post has large number of revisions.
Improve speed and reduce the memory footprint when loading posts with many revisions.
* Use a direct query in `wp_get_post_autosave` to avoid loading all revisions.
* Query for IDs vs full objects in `register_and_do_post_meta_boxes`.
Props pdfernhout, johnnyb, miqrogroove, ocean90, senatorman, DBrumbaugh10Up, martijn-van-der-kooij, pavelevap, mackensen, mikeyarce, whyisjake.
Fixes #34560.
Built from https://develop.svn.wordpress.org/trunk@48422
git-svn-id: http://core.svn.wordpress.org/trunk@48191 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-10 17:13:07 +02:00
|
|
|
$autosave_query = "
|
|
|
|
SELECT *
|
|
|
|
FROM $wpdb->posts
|
|
|
|
WHERE post_parent = %d
|
|
|
|
AND post_type = 'revision'
|
|
|
|
AND post_status = 'inherit'
|
|
|
|
AND post_name = %s " . $user_id_query . '
|
|
|
|
ORDER BY post_date DESC
|
|
|
|
LIMIT 1';
|
|
|
|
|
|
|
|
$autosave = $wpdb->get_results(
|
|
|
|
$wpdb->prepare(
|
|
|
|
$autosave_query,
|
|
|
|
$post_id,
|
|
|
|
$autosave_name
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( ! $autosave ) {
|
|
|
|
return false;
|
2013-03-16 22:15:43 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2020-07-11 23:15:06 +02:00
|
|
|
return get_post( $autosave[0] );
|
2013-02-21 22:24:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines if the specified post is a revision.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*
|
2015-05-27 20:38:24 +02:00
|
|
|
* @param int|WP_Post $post Post ID or post object.
|
2020-01-11 19:32:05 +01:00
|
|
|
* @return int|false ID of revision's parent on success, false if not a revision.
|
2013-02-21 22:24:34 +01:00
|
|
|
*/
|
|
|
|
function wp_is_post_revision( $post ) {
|
2019-07-03 01:42:58 +02:00
|
|
|
$post = wp_get_post_revision( $post );
|
|
|
|
if ( ! $post ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-03-16 22:15:43 +01:00
|
|
|
|
2013-02-21 22:24:34 +01:00
|
|
|
return (int) $post->post_parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines if the specified post is an autosave.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*
|
2015-05-27 20:38:24 +02:00
|
|
|
* @param int|WP_Post $post Post ID or post object.
|
2020-01-11 19:32:05 +01:00
|
|
|
* @return int|false ID of autosave's parent on success, false if not a revision.
|
2013-02-21 22:24:34 +01:00
|
|
|
*/
|
|
|
|
function wp_is_post_autosave( $post ) {
|
2019-07-03 01:42:58 +02:00
|
|
|
$post = wp_get_post_revision( $post );
|
|
|
|
if ( ! $post ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-03-16 22:15:43 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( false !== strpos( $post->post_name, "{$post->post_parent}-autosave" ) ) {
|
2013-03-16 22:15:43 +01:00
|
|
|
return (int) $post->post_parent;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-03-16 22:15:43 +01:00
|
|
|
|
|
|
|
return false;
|
2013-02-21 22:24:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inserts post data into the posts table as a post revision.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
2013-05-05 04:46:59 +02:00
|
|
|
* @access private
|
2013-02-21 22:24:34 +01:00
|
|
|
*
|
2015-05-27 20:38:24 +02:00
|
|
|
* @param int|WP_Post|array|null $post Post ID, post object OR post array.
|
|
|
|
* @param bool $autosave Optional. Is the revision an autosave?
|
|
|
|
* @return int|WP_Error WP_Error or 0 if error, new revision ID if success.
|
2013-02-21 22:24:34 +01:00
|
|
|
*/
|
|
|
|
function _wp_put_post_revision( $post = null, $autosave = false ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_object( $post ) ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
$post = get_object_vars( $post );
|
2017-12-01 00:11:00 +01:00
|
|
|
} elseif ( ! is_array( $post ) ) {
|
|
|
|
$post = get_post( $post, ARRAY_A );
|
|
|
|
}
|
2013-03-16 22:15:43 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $post || empty( $post['ID'] ) ) {
|
2015-05-09 23:09:25 +02:00
|
|
|
return new WP_Error( 'invalid_post', __( 'Invalid post ID.' ) );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( isset( $post['post_type'] ) && 'revision' === $post['post_type'] ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return new WP_Error( 'post_type', __( 'Cannot create a revision of a revision' ) );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2016-02-24 01:44:59 +01:00
|
|
|
$post = _wp_post_revision_data( $post, $autosave );
|
2020-01-29 01:45:18 +01:00
|
|
|
$post = wp_slash( $post ); // Since data is from DB.
|
2013-02-21 22:24:34 +01:00
|
|
|
|
|
|
|
$revision_id = wp_insert_post( $post );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_wp_error( $revision_id ) ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return $revision_id;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2014-03-25 10:00:14 +01:00
|
|
|
if ( $revision_id ) {
|
|
|
|
/**
|
|
|
|
* Fires once a revision has been saved.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*
|
|
|
|
* @param int $revision_id Post revision ID.
|
|
|
|
*/
|
2013-02-21 22:24:34 +01:00
|
|
|
do_action( '_wp_put_post_revision', $revision_id );
|
2014-03-25 10:00:14 +01:00
|
|
|
}
|
2013-03-16 22:15:43 +01:00
|
|
|
|
2013-02-21 22:24:34 +01:00
|
|
|
return $revision_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a post revision.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*
|
2015-05-27 20:38:24 +02:00
|
|
|
* @param int|WP_Post $post The post ID or object.
|
2020-07-23 23:55:04 +02:00
|
|
|
* @param string $output Optional. The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which
|
|
|
|
* correspond to a WP_Post object, an associative array, or a numeric array,
|
|
|
|
* respectively. Default OBJECT.
|
2016-05-23 21:02:28 +02:00
|
|
|
* @param string $filter Optional sanitation filter. See sanitize_post().
|
2016-11-10 00:00:32 +01:00
|
|
|
* @return WP_Post|array|null WP_Post (or array) on success, or null on failure.
|
2013-02-21 22:24:34 +01:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function wp_get_post_revision( &$post, $output = OBJECT, $filter = 'raw' ) {
|
2019-07-03 01:42:58 +02:00
|
|
|
$revision = get_post( $post, OBJECT, $filter );
|
|
|
|
if ( ! $revision ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return $revision;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
|
|
|
if ( 'revision' !== $revision->post_type ) {
|
2014-01-29 07:46:12 +01:00
|
|
|
return null;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2020-02-09 17:55:09 +01:00
|
|
|
if ( OBJECT == $output ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return $revision;
|
2020-02-09 17:55:09 +01:00
|
|
|
} elseif ( ARRAY_A == $output ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$_revision = get_object_vars( $revision );
|
2013-02-21 22:24:34 +01:00
|
|
|
return $_revision;
|
2020-02-09 17:55:09 +01:00
|
|
|
} elseif ( ARRAY_N == $output ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$_revision = array_values( get_object_vars( $revision ) );
|
2013-02-21 22:24:34 +01:00
|
|
|
return $_revision;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $revision;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Restores a post to the specified revision.
|
|
|
|
*
|
|
|
|
* Can restore a past revision using all fields of the post revision, or only selected fields.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*
|
2015-05-27 20:38:24 +02:00
|
|
|
* @param int|WP_Post $revision_id Revision ID or revision object.
|
|
|
|
* @param array $fields Optional. What fields to restore from. Defaults to all.
|
|
|
|
* @return int|false|null Null if error, false if no fields to restore, (int) post ID if success.
|
2013-02-21 22:24:34 +01:00
|
|
|
*/
|
|
|
|
function wp_restore_post_revision( $revision_id, $fields = null ) {
|
2019-07-03 01:42:58 +02:00
|
|
|
$revision = wp_get_post_revision( $revision_id, ARRAY_A );
|
|
|
|
if ( ! $revision ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return $revision;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! is_array( $fields ) ) {
|
2016-02-24 01:44:59 +01:00
|
|
|
$fields = array_keys( _wp_post_revision_fields( $revision ) );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
|
|
|
$update = array();
|
2015-08-25 22:28:22 +02:00
|
|
|
foreach ( array_intersect( array_keys( $revision ), $fields ) as $field ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$update[ $field ] = $revision[ $field ];
|
2013-03-16 22:15:43 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $update ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
|
|
|
$update['ID'] = $revision['post_parent'];
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
$update = wp_slash( $update ); // Since data is from DB.
|
2013-03-01 17:28:40 +01:00
|
|
|
|
2013-02-21 22:24:34 +01:00
|
|
|
$post_id = wp_update_post( $update );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $post_id || is_wp_error( $post_id ) ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return $post_id;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Update last edit user.
|
2013-05-06 11:49:13 +02:00
|
|
|
update_post_meta( $post_id, '_edit_last', get_current_user_id() );
|
|
|
|
|
2014-03-25 10:00:14 +01:00
|
|
|
/**
|
|
|
|
* Fires after a post revision has been restored.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*
|
|
|
|
* @param int $post_id Post ID.
|
|
|
|
* @param int $revision_id Post revision ID.
|
|
|
|
*/
|
2013-05-06 11:49:13 +02:00
|
|
|
do_action( 'wp_restore_post_revision', $post_id, $revision['ID'] );
|
|
|
|
|
2013-02-21 22:24:34 +01:00
|
|
|
return $post_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes a revision.
|
|
|
|
*
|
|
|
|
* Deletes the row from the posts table corresponding to the specified revision.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*
|
2015-05-27 20:38:24 +02:00
|
|
|
* @param int|WP_Post $revision_id Revision ID or revision object.
|
|
|
|
* @return array|false|WP_Post|WP_Error|null Null or WP_Error if error, deleted post if success.
|
2013-02-21 22:24:34 +01:00
|
|
|
*/
|
|
|
|
function wp_delete_post_revision( $revision_id ) {
|
2019-07-03 01:42:58 +02:00
|
|
|
$revision = wp_get_post_revision( $revision_id );
|
|
|
|
if ( ! $revision ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return $revision;
|
2015-05-27 20:38:24 +02:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
|
|
|
$delete = wp_delete_post( $revision->ID );
|
2014-03-25 10:00:14 +01:00
|
|
|
if ( $delete ) {
|
|
|
|
/**
|
|
|
|
* Fires once a post revision has been deleted.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*
|
2019-12-06 23:23:04 +01:00
|
|
|
* @param int $revision_id Post revision ID.
|
|
|
|
* @param WP_Post $revision Post revision object.
|
2014-03-25 10:00:14 +01:00
|
|
|
*/
|
2013-02-21 22:24:34 +01:00
|
|
|
do_action( 'wp_delete_post_revision', $revision->ID, $revision );
|
2014-03-25 10:00:14 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
|
|
|
return $delete;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns all revisions of specified post.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*
|
2015-12-17 00:18:26 +01:00
|
|
|
* @see get_children()
|
|
|
|
*
|
|
|
|
* @param int|WP_Post $post_id Optional. Post ID or WP_Post object. Default is global `$post`.
|
|
|
|
* @param array|null $args Optional. Arguments for retrieving post revisions. Default null.
|
2013-05-05 04:46:59 +02:00
|
|
|
* @return array An array of revisions, or an empty array if none.
|
2013-02-21 22:24:34 +01:00
|
|
|
*/
|
|
|
|
function wp_get_post_revisions( $post_id = 0, $args = null ) {
|
2013-03-27 19:11:56 +01:00
|
|
|
$post = get_post( $post_id );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $post || empty( $post->ID ) ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return array();
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$defaults = array(
|
|
|
|
'order' => 'DESC',
|
|
|
|
'orderby' => 'date ID',
|
|
|
|
'check_enabled' => true,
|
|
|
|
);
|
|
|
|
$args = wp_parse_args( $args, $defaults );
|
2013-07-24 08:08:14 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $args['check_enabled'] && ! wp_revisions_enabled( $post ) ) {
|
2013-07-24 08:08:14 +02:00
|
|
|
return array();
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-07-24 08:08:14 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$args = array_merge(
|
2018-08-17 03:51:36 +02:00
|
|
|
$args,
|
|
|
|
array(
|
2017-12-01 00:11:00 +01:00
|
|
|
'post_parent' => $post->ID,
|
|
|
|
'post_type' => 'revision',
|
|
|
|
'post_status' => 'inherit',
|
|
|
|
)
|
|
|
|
);
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2019-07-03 01:42:58 +02:00
|
|
|
$revisions = get_children( $args );
|
|
|
|
if ( ! $revisions ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return array();
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-03-16 22:15:43 +01:00
|
|
|
|
2013-02-21 22:24:34 +01:00
|
|
|
return $revisions;
|
|
|
|
}
|
|
|
|
|
2013-03-27 19:11:56 +01:00
|
|
|
/**
|
|
|
|
* Determine if revisions are enabled for a given post.
|
|
|
|
*
|
|
|
|
* @since 3.6.0
|
|
|
|
*
|
2014-11-30 23:56:25 +01:00
|
|
|
* @param WP_Post $post The post object.
|
2013-05-05 04:46:59 +02:00
|
|
|
* @return bool True if number of revisions to keep isn't zero, false otherwise.
|
2013-03-27 19:11:56 +01:00
|
|
|
*/
|
|
|
|
function wp_revisions_enabled( $post ) {
|
2015-05-27 20:38:24 +02:00
|
|
|
return wp_revisions_to_keep( $post ) !== 0;
|
2013-03-27 19:11:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine how many revisions to retain for a given post.
|
2014-11-01 21:20:23 +01:00
|
|
|
*
|
|
|
|
* By default, an infinite number of revisions are kept.
|
|
|
|
*
|
|
|
|
* The constant WP_POST_REVISIONS can be set in wp-config to specify the limit
|
|
|
|
* of revisions to keep.
|
2013-03-27 19:11:56 +01:00
|
|
|
*
|
|
|
|
* @since 3.6.0
|
|
|
|
*
|
2014-11-08 21:56:22 +01:00
|
|
|
* @param WP_Post $post The post object.
|
2013-05-05 04:46:59 +02:00
|
|
|
* @return int The number of revisions to keep.
|
2013-03-27 19:11:56 +01:00
|
|
|
*/
|
|
|
|
function wp_revisions_to_keep( $post ) {
|
|
|
|
$num = WP_POST_REVISIONS;
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( true === $num ) {
|
2013-03-27 19:11:56 +01:00
|
|
|
$num = -1;
|
2017-12-01 00:11:00 +01:00
|
|
|
} else {
|
2020-10-08 23:15:13 +02:00
|
|
|
$num = (int) $num;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-03-27 19:11:56 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! post_type_supports( $post->post_type, 'revisions' ) ) {
|
2013-03-27 19:11:56 +01:00
|
|
|
$num = 0;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-03-27 19:11:56 +01:00
|
|
|
|
2014-03-25 10:00:14 +01:00
|
|
|
/**
|
2016-05-22 20:50:28 +02:00
|
|
|
* Filters the number of revisions to save for the given post.
|
2014-03-25 10:00:14 +01:00
|
|
|
*
|
|
|
|
* Overrides the value of WP_POST_REVISIONS.
|
|
|
|
*
|
|
|
|
* @since 3.6.0
|
|
|
|
*
|
|
|
|
* @param int $num Number of revisions to store.
|
|
|
|
* @param WP_Post $post Post object.
|
|
|
|
*/
|
2013-03-27 19:11:56 +01:00
|
|
|
return (int) apply_filters( 'wp_revisions_to_keep', $num, $post );
|
|
|
|
}
|
|
|
|
|
2013-05-05 04:46:59 +02:00
|
|
|
/**
|
|
|
|
* Sets up the post object for preview based on the post autosave.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
* @access private
|
2015-05-27 20:38:24 +02:00
|
|
|
*
|
|
|
|
* @param WP_Post $post
|
|
|
|
* @return WP_Post|false
|
2013-05-05 04:46:59 +02:00
|
|
|
*/
|
2015-05-27 20:38:24 +02:00
|
|
|
function _set_preview( $post ) {
|
|
|
|
if ( ! is_object( $post ) ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return $post;
|
2015-05-27 20:38:24 +02:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2015-05-27 20:38:24 +02:00
|
|
|
$preview = wp_get_post_autosave( $post->ID );
|
|
|
|
if ( ! is_object( $preview ) ) {
|
2013-02-21 22:24:34 +01:00
|
|
|
return $post;
|
2015-05-27 20:38:24 +02:00
|
|
|
}
|
2013-02-21 22:24:34 +01:00
|
|
|
|
2015-05-27 20:38:24 +02:00
|
|
|
$preview = sanitize_post( $preview );
|
2013-02-21 22:24:34 +01:00
|
|
|
|
|
|
|
$post->post_content = $preview->post_content;
|
2017-12-01 00:11:00 +01:00
|
|
|
$post->post_title = $preview->post_title;
|
2013-02-21 22:24:34 +01:00
|
|
|
$post->post_excerpt = $preview->post_excerpt;
|
|
|
|
|
2013-06-06 16:39:08 +02:00
|
|
|
add_filter( 'get_the_terms', '_wp_preview_terms_filter', 10, 3 );
|
2016-07-20 18:24:28 +02:00
|
|
|
add_filter( 'get_post_metadata', '_wp_preview_post_thumbnail_filter', 10, 3 );
|
2013-06-06 16:39:08 +02:00
|
|
|
|
2013-02-21 22:24:34 +01:00
|
|
|
return $post;
|
|
|
|
}
|
|
|
|
|
2013-05-05 04:46:59 +02:00
|
|
|
/**
|
|
|
|
* Filters the latest content for preview from the post autosave.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
* @access private
|
|
|
|
*/
|
2013-03-29 17:31:33 +01:00
|
|
|
function _show_post_preview() {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( isset( $_GET['preview_id'] ) && isset( $_GET['preview_nonce'] ) ) {
|
2013-03-29 17:31:33 +01:00
|
|
|
$id = (int) $_GET['preview_id'];
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( false === wp_verify_nonce( $_GET['preview_nonce'], 'post_preview_' . $id ) ) {
|
2019-01-16 04:54:50 +01:00
|
|
|
wp_die( __( 'Sorry, you are not allowed to preview drafts.' ), 403 );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-03-29 17:31:33 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
add_filter( 'the_preview', '_set_preview' );
|
2013-03-29 17:31:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-06 16:39:08 +02:00
|
|
|
/**
|
|
|
|
* Filters terms lookup to set the post format.
|
|
|
|
*
|
|
|
|
* @since 3.6.0
|
|
|
|
* @access private
|
2015-05-27 20:38:24 +02:00
|
|
|
*
|
|
|
|
* @param array $terms
|
|
|
|
* @param int $post_id
|
|
|
|
* @param string $taxonomy
|
|
|
|
* @return array
|
2013-06-06 16:39:08 +02:00
|
|
|
*/
|
|
|
|
function _wp_preview_terms_filter( $terms, $post_id, $taxonomy ) {
|
2019-07-03 01:42:58 +02:00
|
|
|
$post = get_post();
|
|
|
|
if ( ! $post ) {
|
2013-06-06 16:39:08 +02:00
|
|
|
return $terms;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-06-06 16:39:08 +02:00
|
|
|
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( empty( $_REQUEST['post_format'] ) || $post->ID != $post_id
|
|
|
|
|| 'post_format' !== $taxonomy || 'revision' === $post->post_type
|
|
|
|
) {
|
2013-06-06 16:39:08 +02:00
|
|
|
return $terms;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-06-06 16:39:08 +02:00
|
|
|
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( 'standard' === $_REQUEST['post_format'] ) {
|
2013-06-06 16:39:08 +02:00
|
|
|
$terms = array();
|
2019-07-03 01:42:58 +02:00
|
|
|
} else {
|
|
|
|
$term = get_term_by( 'slug', 'post-format-' . sanitize_key( $_REQUEST['post_format'] ), 'post_format' );
|
|
|
|
if ( $term ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
$terms = array( $term ); // Can only have one post format.
|
2019-07-03 01:42:58 +02:00
|
|
|
}
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-06-06 16:39:08 +02:00
|
|
|
|
|
|
|
return $terms;
|
|
|
|
}
|
|
|
|
|
2016-07-20 18:24:28 +02:00
|
|
|
/**
|
|
|
|
* Filters post thumbnail lookup to set the post thumbnail.
|
|
|
|
*
|
|
|
|
* @since 4.6.0
|
|
|
|
* @access private
|
|
|
|
*
|
|
|
|
* @param null|array|string $value The value to return - a single metadata value, or an array of values.
|
|
|
|
* @param int $post_id Post ID.
|
|
|
|
* @param string $meta_key Meta key.
|
|
|
|
* @return null|array The default return value or the post thumbnail meta array.
|
|
|
|
*/
|
|
|
|
function _wp_preview_post_thumbnail_filter( $value, $post_id, $meta_key ) {
|
2019-07-03 01:42:58 +02:00
|
|
|
$post = get_post();
|
|
|
|
if ( ! $post ) {
|
2016-07-20 18:24:28 +02:00
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
2016-08-29 14:25:29 +02:00
|
|
|
if ( empty( $_REQUEST['_thumbnail_id'] ) ||
|
2017-11-27 00:57:55 +01:00
|
|
|
empty( $_REQUEST['preview_id'] ) ||
|
|
|
|
$post->ID != $post_id ||
|
2020-05-16 20:42:12 +02:00
|
|
|
'_thumbnail_id' !== $meta_key ||
|
|
|
|
'revision' === $post->post_type ||
|
2017-11-27 00:57:55 +01:00
|
|
|
$post_id != $_REQUEST['preview_id'] ) {
|
|
|
|
|
2016-07-20 18:24:28 +02:00
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
2020-10-08 23:15:13 +02:00
|
|
|
$thumbnail_id = (int) $_REQUEST['_thumbnail_id'];
|
2016-07-20 18:24:28 +02:00
|
|
|
if ( $thumbnail_id <= 0 ) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2020-10-08 23:15:13 +02:00
|
|
|
return (string) $thumbnail_id;
|
2016-07-20 18:24:28 +02:00
|
|
|
}
|
|
|
|
|
2013-05-05 04:46:59 +02:00
|
|
|
/**
|
|
|
|
* Gets the post revision version.
|
|
|
|
*
|
|
|
|
* @since 3.6.0
|
|
|
|
* @access private
|
2015-05-27 20:38:24 +02:00
|
|
|
*
|
|
|
|
* @param WP_Post $revision
|
|
|
|
* @return int|false
|
|
|
|
*/
|
2013-03-29 06:28:44 +01:00
|
|
|
function _wp_get_post_revision_version( $revision ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_object( $revision ) ) {
|
2013-03-29 06:28:44 +01:00
|
|
|
$revision = get_object_vars( $revision );
|
2017-12-01 00:11:00 +01:00
|
|
|
} elseif ( ! is_array( $revision ) ) {
|
2013-03-27 21:21:38 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-03-27 21:21:38 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( preg_match( '/^\d+-(?:autosave|revision)-v(\d+)$/', $revision['post_name'], $matches ) ) {
|
2013-03-29 06:28:44 +01:00
|
|
|
return (int) $matches[1];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-03-27 21:21:38 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-04-07 01:43:05 +02:00
|
|
|
* Upgrade the revisions author, add the current post as a revision and set the revisions version to 1
|
2013-03-27 21:21:38 +01:00
|
|
|
*
|
|
|
|
* @since 3.6.0
|
2013-05-05 04:46:59 +02:00
|
|
|
* @access private
|
2013-03-27 21:21:38 +01:00
|
|
|
*
|
2015-10-15 01:44:25 +02:00
|
|
|
* @global wpdb $wpdb WordPress database abstraction object.
|
2015-05-27 20:38:24 +02:00
|
|
|
*
|
|
|
|
* @param WP_Post $post Post object
|
|
|
|
* @param array $revisions Current revisions of the post
|
2013-04-07 01:43:05 +02:00
|
|
|
* @return bool true if the revisions were upgraded, false if problems
|
2013-03-27 21:21:38 +01:00
|
|
|
*/
|
2013-04-07 01:43:05 +02:00
|
|
|
function _wp_upgrade_revisions_of_post( $post, $revisions ) {
|
2013-03-27 21:21:38 +01:00
|
|
|
global $wpdb;
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Add post option exclusively.
|
2017-12-01 00:11:00 +01:00
|
|
|
$lock = "revision-upgrade-{$post->ID}";
|
|
|
|
$now = time();
|
2013-03-29 06:28:44 +01:00
|
|
|
$result = $wpdb->query( $wpdb->prepare( "INSERT IGNORE INTO `$wpdb->options` (`option_name`, `option_value`, `autoload`) VALUES (%s, %s, 'no') /* LOCK */", $lock, $now ) );
|
2013-03-27 21:21:38 +01:00
|
|
|
if ( ! $result ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
// If we couldn't get a lock, see how old the previous lock is.
|
2013-03-29 06:28:44 +01:00
|
|
|
$locked = get_option( $lock );
|
|
|
|
if ( ! $locked ) {
|
2013-03-27 21:21:38 +01:00
|
|
|
// Can't write to the lock, and can't read the lock.
|
2020-01-29 01:45:18 +01:00
|
|
|
// Something broken has happened.
|
2013-03-27 21:21:38 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-03-29 06:28:44 +01:00
|
|
|
if ( $locked > $now - 3600 ) {
|
2020-01-29 01:45:18 +01:00
|
|
|
// Lock is not too old: some other process may be upgrading this post. Bail.
|
2013-03-29 06:28:44 +01:00
|
|
|
return false;
|
2013-03-27 21:21:38 +01:00
|
|
|
}
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Lock is too old - update it (below) and continue.
|
2013-03-27 21:21:38 +01:00
|
|
|
}
|
|
|
|
|
2013-03-29 06:28:44 +01:00
|
|
|
// If we could get a lock, re-"add" the option to fire all the correct filters.
|
|
|
|
update_option( $lock, $now );
|
2013-03-27 21:21:38 +01:00
|
|
|
|
|
|
|
reset( $revisions );
|
2013-04-18 06:43:59 +02:00
|
|
|
$add_last = true;
|
2013-03-29 06:28:44 +01:00
|
|
|
|
2013-03-27 21:21:38 +01:00
|
|
|
do {
|
|
|
|
$this_revision = current( $revisions );
|
|
|
|
$prev_revision = next( $revisions );
|
|
|
|
|
|
|
|
$this_revision_version = _wp_get_post_revision_version( $this_revision );
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Something terrible happened.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( false === $this_revision_version ) {
|
2013-03-27 21:21:38 +01:00
|
|
|
continue;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-03-27 21:21:38 +01:00
|
|
|
|
2013-04-18 06:43:59 +02:00
|
|
|
// 1 is the latest revision version, so we're already up to date.
|
|
|
|
// No need to add a copy of the post as latest revision.
|
|
|
|
if ( 0 < $this_revision_version ) {
|
|
|
|
$add_last = false;
|
2013-03-27 21:21:38 +01:00
|
|
|
continue;
|
2013-04-18 06:43:59 +02:00
|
|
|
}
|
2013-03-27 21:21:38 +01:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Always update the revision version.
|
2013-03-29 06:28:44 +01:00
|
|
|
$update = array(
|
|
|
|
'post_name' => preg_replace( '/^(\d+-(?:autosave|revision))[\d-]*$/', '$1-v1', $this_revision->post_name ),
|
|
|
|
);
|
2013-03-27 21:21:38 +01:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
/*
|
|
|
|
* If this revision is the oldest revision of the post, i.e. no $prev_revision,
|
|
|
|
* the correct post_author is probably $post->post_author, but that's only a good guess.
|
|
|
|
* Update the revision version only and Leave the author as-is.
|
|
|
|
*/
|
2013-03-29 06:28:44 +01:00
|
|
|
if ( $prev_revision ) {
|
|
|
|
$prev_revision_version = _wp_get_post_revision_version( $prev_revision );
|
2013-03-27 21:21:38 +01:00
|
|
|
|
2013-03-29 06:28:44 +01:00
|
|
|
// If the previous revision is already up to date, it no longer has the information we need :(
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $prev_revision_version < 1 ) {
|
2013-03-29 06:28:44 +01:00
|
|
|
$update['post_author'] = $prev_revision->post_author;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-03-27 21:21:38 +01:00
|
|
|
}
|
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// Upgrade this revision.
|
2013-03-29 06:28:44 +01:00
|
|
|
$result = $wpdb->update( $wpdb->posts, $update, array( 'ID' => $this_revision->ID ) );
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $result ) {
|
2013-03-29 06:28:44 +01:00
|
|
|
wp_cache_delete( $this_revision->ID, 'posts' );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-03-27 21:21:38 +01:00
|
|
|
} while ( $prev_revision );
|
|
|
|
|
|
|
|
delete_option( $lock );
|
2013-03-29 06:28:44 +01:00
|
|
|
|
|
|
|
// Add a copy of the post as latest revision.
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $add_last ) {
|
2013-04-18 06:43:59 +02:00
|
|
|
wp_save_post_revision( $post->ID );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2013-04-18 06:43:59 +02:00
|
|
|
|
2013-03-27 21:21:38 +01:00
|
|
|
return true;
|
|
|
|
}
|