HEX
Server: Apache
System: Linux ecngx285.inmotionhosting.com 4.18.0-553.79.1.lve.el8.x86_64 #1 SMP Wed Oct 15 17:59:35 UTC 2025 x86_64
User: zeusxp5 (3862)
PHP: 8.3.28
Disabled: NONE
Upload Files
File: /home/zeusxp5/lrliberia.com/wp-content/plugins/boldgrid-backup-premium/admin/remote/s3_uploader.php
<?php // phpcs:ignore
/**
 * S3 Uploader class.
 *
 * @link  https://www.boldgrid.com
 * @since 1.2.0
 *
 * @package    Boldgrid_Backup
 * @subpackage Boldgrid_Backup/admin/remote
 * @copyright  BoldGrid
 * @version    $Id$
 * @author     BoldGrid <support@boldgrid.com>
 */

use Aws\S3\Model\MultipartUpload\UploadBuilder;

/**
 * S3 Uploader class.
 *
 * @since 1.2.0
 */
class Boldgrid_Backup_Premium_Admin_Remote_S3_Uploader {
	/**
	 * An array of error messages.
	 *
	 * @since 1.2.0
	 * @var array $errors
	 * @access private
	 */
	private $errors = array();

	/**
	 * Get errors.
	 *
	 * @since 1.2.0
	 *
	 * @return array
	 */
	public function get_errors() {
		return $this->errors;
	}

	/**
	 * Whether or not we have errors.
	 *
	 * @since 1.2.0
	 *
	 * @return bool
	 */
	public function has_error() {
		return ! empty( $this->errors );
	}

	/**
	 * Upload a backup file.
	 *
	 * @since 1.2.0
	 *
	 * @param  Boldgrid_Backup_Premium_Admin_Remote_S3_Bucket $bucket   Our bucket.
	 * @param  string                                         $filepath File path.
	 * @return bool
	 */
	public function upload( Boldgrid_Backup_Premium_Admin_Remote_S3_Bucket $bucket, $filepath ) {
		$success = false;

		$core = apply_filters( 'boldgrid_backup_get_core', null );

		$client = $bucket->get_client();

		if ( ! $core->wp_filesystem->exists( $filepath ) ) {
			// Translators: 1: File path.
			$this->errors[] = sprintf( __( 'Failed to upload, filepath does not exist: %1$s', 'boldgrid-backup' ), $filepath );

			return $success;
		}

		/*
		 * When files are uploaded to an S3 host S3, the LastModified is the time the file was uploaded,
		 * not the time the file was last modified. When we enforce retention, we'll need to know when
		 * the backup archive was created, not when it was uploaded.
		 */
		$archive_data  = $core->archive_log->get_by_zip( $filepath );
		$last_modified = ! empty( $archive_data['lastmodunix'] ) ? $archive_data['lastmodunix'] : $core->wp_filesystem->mtime( $filepath );

		try {
			$uploader = new \Aws\S3\MultipartUploader(
				$client->get_client(),
				fopen( $filepath, 'rb' ), // phpcs:ignore WordPress.WP.AlternativeFunctions
				array(
					'bucket'          => $bucket->get_id(),
					'key'             => basename( $filepath ),
					/*
					 * Before Initiate.
					 *
					 * Set our custom metadata.
					 *
					 * Originally, our Amazon S3 class used is_boldgrid_backup and last_modified. These
					 * don't work with DreamObjects. Appears only lowercase letters are allowed.
					 *
					 * @link https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-s3-2006-03-01.html#createmultipartupload
					 * @link https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/s3-multipart-upload.html
					 *
					 * @var $command Aws\Command A CreateMultipartUpload operation.
					 */
					'before_initiate' => function( $command ) use ( $last_modified ) {
						$command['Metadata'] = array(
							'isboldgridbackup' => 'true',
							'lastmodified'     => $last_modified,
						);
					},
				)
			);
		} catch ( Exception $e ) {
			$this->errors[] = sprintf(
				// Translators: 1, the status code (such as 403), 2 the error code (such as "SignatureDoesNotMatch").
				__( '%1$s error: %2$s.', 'boldgrid-backup' ),
				$e->getStatusCode(),
				$e->getAwsErrorCode()
			);

			return $success;
		}

		try {
			$uploader->upload();

			// We've uploaded a new file. Delete this bucket's objects transient.
			$bucket->get_client()->get_provider()->get_transient()->delete_objects( $bucket->get_id() );

			// Upload was a success if our bucket has our backup file.
			$bucket->set_objects( true );
			$success = $bucket->has_object_key( basename( $filepath ) );
		} catch ( MultipartUploadException $e ) {
			$uploader->abort();

			$this->errors[] = __( 'Failed to upload.', 'boldgrid-inspirations' );

			return $success;
		}

		return $success;
	}
}