2016-05-10 13:11:30 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2016-05-10 13:31:28 +02:00
|
|
|
* Upgrader API: Automatic_Upgrader_Skin class
|
2016-05-10 13:11:30 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Upgrader
|
2016-05-10 13:31:28 +02:00
|
|
|
* @since 4.6.0
|
2016-05-10 13:11:30 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2020-11-14 17:23:10 +01:00
|
|
|
* Upgrader Skin for Automatic WordPress Upgrades.
|
2016-05-10 13:11:30 +02:00
|
|
|
*
|
|
|
|
* This skin is designed to be used when no output is intended, all output
|
|
|
|
* is captured and stored for the caller to process and log/email/discard.
|
|
|
|
*
|
|
|
|
* @since 3.7.0
|
2016-05-13 22:59:27 +02:00
|
|
|
* @since 4.6.0 Moved to its own file from wp-admin/includes/class-wp-upgrader-skins.php.
|
2016-07-09 15:45:33 +02:00
|
|
|
*
|
|
|
|
* @see Bulk_Upgrader_Skin
|
2016-05-10 13:11:30 +02:00
|
|
|
*/
|
|
|
|
class Automatic_Upgrader_Skin extends WP_Upgrader_Skin {
|
|
|
|
protected $messages = array();
|
|
|
|
|
|
|
|
/**
|
2016-07-22 14:10:27 +02:00
|
|
|
* Determines whether the upgrader needs FTP/SSH details in order to connect
|
|
|
|
* to the filesystem.
|
2016-05-10 13:11:30 +02:00
|
|
|
*
|
2016-07-22 14:10:27 +02:00
|
|
|
* @since 3.7.0
|
|
|
|
* @since 4.6.0 The `$context` parameter default changed from `false` to an empty string.
|
|
|
|
*
|
|
|
|
* @see request_filesystem_credentials()
|
|
|
|
*
|
2019-10-27 01:16:04 +02:00
|
|
|
* @param bool|WP_Error $error Optional. Whether the current request has failed to connect,
|
|
|
|
* or an error object. Default false.
|
|
|
|
* @param string $context Optional. Full path to the directory that is tested
|
|
|
|
* for being writable. Default empty.
|
|
|
|
* @param bool $allow_relaxed_file_ownership Optional. Whether to allow Group/World writable. Default false.
|
2016-07-22 14:10:27 +02:00
|
|
|
* @return bool True on success, false on failure.
|
2016-05-10 13:11:30 +02:00
|
|
|
*/
|
|
|
|
public function request_filesystem_credentials( $error = false, $context = '', $allow_relaxed_file_ownership = false ) {
|
|
|
|
if ( $context ) {
|
|
|
|
$this->options['context'] = $context;
|
|
|
|
}
|
2020-01-29 01:45:18 +01:00
|
|
|
/*
|
|
|
|
* TODO: Fix up request_filesystem_credentials(), or split it, to allow us to request a no-output version.
|
|
|
|
* This will output a credentials form in event of failure. We don't want that, so just hide with a buffer.
|
|
|
|
*/
|
2016-05-10 13:11:30 +02:00
|
|
|
ob_start();
|
|
|
|
$result = parent::request_filesystem_credentials( $error, $context, $allow_relaxed_file_ownership );
|
|
|
|
ob_end_clean();
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-11-14 17:23:10 +01:00
|
|
|
* Retrieves the upgrade messages.
|
|
|
|
*
|
|
|
|
* @since 3.7.0
|
|
|
|
*
|
|
|
|
* @return array Messages during an upgrade.
|
2016-05-10 13:11:30 +02:00
|
|
|
*/
|
|
|
|
public function get_upgrade_messages() {
|
|
|
|
return $this->messages;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-11-14 17:23:10 +01:00
|
|
|
* Stores a message about the upgrade.
|
|
|
|
*
|
|
|
|
* @since 3.7.0
|
|
|
|
*
|
|
|
|
* @param string|array|WP_Error $data Message data.
|
2019-09-15 12:42:54 +02:00
|
|
|
* @param mixed ...$args Optional text replacements.
|
2016-05-10 13:11:30 +02:00
|
|
|
*/
|
2019-09-15 12:42:54 +02:00
|
|
|
public function feedback( $data, ...$args ) {
|
2016-05-10 13:11:30 +02:00
|
|
|
if ( is_wp_error( $data ) ) {
|
|
|
|
$string = $data->get_error_message();
|
|
|
|
} elseif ( is_array( $data ) ) {
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
$string = $data;
|
|
|
|
}
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! empty( $this->upgrader->strings[ $string ] ) ) {
|
2016-05-10 13:11:30 +02:00
|
|
|
$string = $this->upgrader->strings[ $string ];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2016-05-10 13:11:30 +02:00
|
|
|
|
|
|
|
if ( strpos( $string, '%' ) !== false ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! empty( $args ) ) {
|
2016-05-10 13:11:30 +02:00
|
|
|
$string = vsprintf( $string, $args );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2016-05-10 13:11:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$string = trim( $string );
|
|
|
|
|
|
|
|
// Only allow basic HTML in the messages, as it'll be used in emails/logs rather than direct browser output.
|
2017-12-01 00:11:00 +01:00
|
|
|
$string = wp_kses(
|
2018-08-17 03:51:36 +02:00
|
|
|
$string,
|
|
|
|
array(
|
2017-12-01 00:11:00 +01:00
|
|
|
'a' => array(
|
|
|
|
'href' => true,
|
|
|
|
),
|
|
|
|
'br' => true,
|
|
|
|
'em' => true,
|
|
|
|
'strong' => true,
|
|
|
|
)
|
|
|
|
);
|
2016-05-10 13:11:30 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( empty( $string ) ) {
|
2016-05-10 13:11:30 +02:00
|
|
|
return;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2016-05-10 13:11:30 +02:00
|
|
|
|
|
|
|
$this->messages[] = $string;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-11-14 17:23:10 +01:00
|
|
|
* Creates a new output buffer.
|
|
|
|
*
|
|
|
|
* @since 3.7.0
|
2016-05-10 13:11:30 +02:00
|
|
|
*/
|
|
|
|
public function header() {
|
|
|
|
ob_start();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-11-14 17:23:10 +01:00
|
|
|
* Retrieves the buffered content, deletes the buffer, and processes the output.
|
|
|
|
*
|
|
|
|
* @since 3.7.0
|
2016-05-10 13:11:30 +02:00
|
|
|
*/
|
|
|
|
public function footer() {
|
|
|
|
$output = ob_get_clean();
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! empty( $output ) ) {
|
2016-05-10 13:11:30 +02:00
|
|
|
$this->feedback( $output );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2016-05-10 13:11:30 +02:00
|
|
|
}
|
|
|
|
}
|