File "folder.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/vikbooking/admin/helpers/src/backup/export/rule/folder.php
File size: 4.07 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/** 
 * @package     VikBooking
 * @subpackage  core
 * @author      E4J s.r.l.
 * @copyright   Copyright (C) 2021 E4J s.r.l. All Rights Reserved.
 * @license     http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 * @link        https://vikwp.com
 */

// No direct access
defined('ABSPATH') or die('No script kiddies please!');

/**
 * FOLDER Backup export rule.
 * 
 * @since 1.5
 */
class VBOBackupExportRuleFolder extends VBOBackupExportRule
{
	/**
	 * The target used by the system to restore the files in their position.
	 * It is possible to pass a PHP constant so that the backup receiver will
	 * be able to fetch the path at runtime.
	 * 
	 * It is possible to receive an array in order to support both constants
	 * and relative paths. In example, the first element of the array could be
	 * a constant and the second one the remaining path of the destination.
	 * 
	 * @var string|array
	 */
	protected $destination;

	/**
	 * The base (relative) path of the files. This is useful in case of
	 * recursive elements, because we need to strip the relative path
	 * used within the archive.
	 * 
	 * @var string
	 */
	protected $relativePath;

	/**
	 * An array containing the relative path of all the copied files.
	 * 
	 * @var array
	 */
	protected $files;

	/**
	 * Flag used to check whether during the import the path of the files to copy
	 * should be preserved or whether only the name should be used.
	 * 
	 * @var boolean
	 */
	protected $recursive;

	/**
	 * Returns the rules instructions.
	 * 
	 * @return 	mixed
	 */
	public function getData()
	{
		// make sure there's at least a file to copy
		if ($this->files)
		{
			return [
				'destination'  => $this->destination,
				'relativePath' => $this->relativePath,
				'recursive'    => $this->recursive,
				'files'        => $this->files,
			];
		}

		// do not import empty files
		return null;
	}

	/**
	 * Configures the rule to work according to the specified data.
	 * 
	 * @param 	array 	$data  An associative array holding the instructions
	 *                         for the folder to copy.
	 * 
	 * @return 	void
	 */
	protected function setup($data)
	{
		// make sure the source path is specified
		if (empty($data['source']))
		{
			throw new Exception('Missing folder source', 500);
		}

		// make sure the destrination path is specified
		if (empty($data['destination']))
		{
			throw new Exception('Missing folder destination', 500);
		}
		else
		{
			// remove trailing directory separator
			$data['destination'] = preg_replace("/[\/\\\\]+$/", '', $data['destination']);
		}

		// register relative path
		$this->relativePath = $data['destination'];

		if (empty($data['target']))
		{
			// final target equals to source path
			$data['target'] = $data['source'];
		}

		// check if we should preserve the path defined by the rule during the import
		$this->recursive = isset($data['recursive']) ? (bool) $data['recursive'] : false;

		// set destination path to use while restoring the backup
		$this->destination = $data['target'];

		if (JFile::exists($data['source']))
		{
			// file given, use it directly
			$files = $data['source'];

			// go up by one level to properly copy the file
			$data['source'] = dirname($data['source']);
		}
		else
		{
			// ignore the following files while copying
			$exclude = ['.svn', 'CVS', '.DS_Store', '__MACOSX', 'index.html'];

			// scan the given folder
			$files = JFolder::files($data['source'], '.', $this->recursive, $fullPath = true, $exclude);

			if ($files === false)
			{
				throw new Exception(sprintf('Reading source failed: %s', $data['source']), 500);
			}
		}

		// iterate all files stored within the given folder
		foreach ((array) $files as $file)
		{
			// get rid of base path from file
			$rel = str_replace($data['source'], '', $file);
			$rel = preg_replace("/^[\/\\\\]+/", '', $rel);

			// build relative destination path
			$dest = $data['destination'] . DIRECTORY_SEPARATOR . $rel;

			// append file to archive
			if (!$this->archive->addFile($file, $dest))
			{
				throw new Exception(sprintf('Cannot copy file: %s', $file), 500);
			}

			// register copied file
			$this->files[] = $dest;
		}
	}
}