/home/sharedstore/public_html/prestashop.sharedstore.ma/classes
NameSizeModeActions
assets/-0755rm
cache/-0755rm
checkout/-0755rm
container/-0755rm
controller/-0755rm
db/-0755rm
exception/-0755rm
form/-0755rm
helper/-0755rm
lang/-0755rm
log/-0755rm
module/-0755rm
order/-0755rm
pdf/-0755rm
product/-0755rm
proxy/-0755rm
range/-0755rm
shop/-0755rm
Smarty/-0755rm
stock/-0755rm
tax/-0755rm
tree/-0755rm
webservice/-0755rm
.htaccess1700644editdlrm
Access.php135730644editdlrm
Address.php230160644editdlrm
AddressChecksumCore.php18510644editdlrm
AddressFormat.php251250644editdlrm
Alias.php51060644editdlrm
Attachment.php115570644editdlrm
AttributeGroup.php134880644editdlrm
Carrier.php656660644editdlrm
Cart.php2211920644editdlrm
CartRule.php927650644editdlrm
Category.php891710644editdlrm
Chart.php41770644editdlrm
ChecksumInterface.php12460644editdlrm
CMS.php117250644editdlrm
CMSCategory.php241480644editdlrm
CMSRole.php18220644editdlrm
Combination.php180120644editdlrm
Configuration.php271560644editdlrm
ConfigurationKPI.php91260644editdlrm
ConfigurationTest.php123090644editdlrm
Connection.php102620644editdlrm
ConnectionsSource.php49260644editdlrm
Contact.php39540644editdlrm
Context.php183720644editdlrm
Cookie.php178060644editdlrm
Country.php167230644editdlrm
CSV.php31100644editdlrm
Currency.php371670644editdlrm
Curve.php29930644editdlrm
Customer.php535760644editdlrm
CustomerAddress.php12950644editdlrm
CustomerMessage.php58900644editdlrm
CustomerSession.php27180644editdlrm
CustomerThread.php98480644editdlrm
Customization.php137540644editdlrm
CustomizationField.php29150644editdlrm
DateRange.php25320644editdlrm
Delivery.php33170644editdlrm
Dispatcher.php488100644editdlrm
Employee.php240620644editdlrm
EmployeeSession.php27180644editdlrm
Feature.php116560644editdlrm
FeatureFlag.php32260644editdlrm
FeatureValue.php82490644editdlrm
FileUploader.php38200644editdlrm
Gender.php28760644editdlrm
Group.php153230644editdlrm
GroupReduction.php90250644editdlrm
Guest.php85290644editdlrm
Hook.php509090644editdlrm
Image.php324180644editdlrm
ImageManager.php325490644editdlrm
ImageType.php71550644editdlrm
index.php13720644editdlrm
Language.php635470644editdlrm
Link.php638140644editdlrm
LocalizationPack.php236040644editdlrm
Mail.php343120644editdlrm
Manufacturer.php217450644editdlrm
ManufacturerAddress.php13110644editdlrm
Media.php330210644editdlrm
Message.php66260644editdlrm
Meta.php185770644editdlrm
Notification.php84700644editdlrm
ObjectModel.php837730644editdlrm
Pack.php263320644editdlrm
Page.php45980644editdlrm
PaymentFree.php13620644editdlrm
PaymentModule.php611970644editdlrm
PhpEncryption.php32910644editdlrm
PhpEncryptionEngine.php39490644editdlrm
PrestaShopAutoload.php97990644editdlrm
PrestaShopBackup.php117020644editdlrm
PrestaShopCollection.php217900644editdlrm
PrestaShopLogger.php85230644editdlrm
Product.php3180560644editdlrm
ProductAssembler.php68950644editdlrm
ProductAttribute.php138080644editdlrm
ProductDownload.php102940644editdlrm
ProductPresenterFactory.php39830644editdlrm
ProductSale.php130000644editdlrm
ProductSupplier.php85370644editdlrm
Profile.php85230644editdlrm
QqUploadedFileForm.php53170644editdlrm
QqUploadedFileXhr.php58250644editdlrm
QuickAccess.php64020644editdlrm
RequestSql.php214530644editdlrm
Risk.php24190644editdlrm
Search.php592290644editdlrm
SearchEngine.php28790644editdlrm
SpecificPrice.php332120644editdlrm
SpecificPriceRule.php143740644editdlrm
State.php79560644editdlrm
Store.php63940644editdlrm
Supplier.php183390644editdlrm
SupplierAddress.php12990644editdlrm
Tab.php222230644editdlrm
Tag.php135580644editdlrm
Tools.php1409030644editdlrm
Translate.php120590644editdlrm
TranslatedConfiguration.php47920644editdlrm
Upgrader.php118590644editdlrm
Uploader.php111040644editdlrm
Validate.php398010644editdlrm
ValidateConstraintTranslator.php26110644editdlrm
WarehouseAddress.php13020644editdlrm
Zone.php35000644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/classes/PrestaShopBackup.php (11702B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ /** * Class PrestaShopBackupCore. */ class PrestaShopBackupCore { /** @var string Object id */ public $id; /** @var string Last error messages */ public $error; /** @var string default backup directory. */ public static $backupDir = '/backups/'; /** @var string custom backup directory. */ public $customBackupDir = null; /** @var bool|string */ public $psBackupAll = true; /** @var bool|string */ public $psBackupDropTable = true; /** * Creates a new backup object. * * @param string $filename Filename of the backup file */ public function __construct($filename = null) { if ($filename) { $this->id = $this->getRealBackupPath($filename); } $psBackupAll = Configuration::get('PS_BACKUP_ALL'); $psBackupDropTable = Configuration::get('PS_BACKUP_DROP_TABLE'); $this->psBackupAll = $psBackupAll !== false ? $psBackupAll : true; $this->psBackupDropTable = $psBackupDropTable !== false ? $psBackupDropTable : true; } /** * you can set a different path with that function. * * @TODO include the prefix name * * @param string $dir * * @return bool */ public function setCustomBackupPath($dir) { $customDir = DIRECTORY_SEPARATOR . trim($dir, '/') . DIRECTORY_SEPARATOR; if (is_dir(_PS_ADMIN_DIR_ . $customDir)) { $this->customBackupDir = $customDir; return true; } return false; } /** * get the path to use for backup (customBackupDir if specified, or default). * * @param string $filename filename to use * * @return string full path */ public function getRealBackupPath($filename = null) { $backupDir = PrestaShopBackup::getBackupPath($filename); if (!empty($this->customBackupDir)) { $backupDir = str_replace( _PS_ADMIN_DIR_ . self::$backupDir, _PS_ADMIN_DIR_ . $this->customBackupDir, $backupDir ); if (strrpos($backupDir, DIRECTORY_SEPARATOR)) { $backupDir .= DIRECTORY_SEPARATOR; } } return $backupDir; } /** * Get the full path of the backup file. * * @param string $filename prefix of the backup file (datetime will be the second part) * * @return string The full path of the backup file, or false if the backup file does not exists */ public static function getBackupPath($filename = '') { $backupdir = realpath(_PS_ADMIN_DIR_ . self::$backupDir); if ($backupdir === false) { die(Tools::displayError(Context::getContext()->getTranslator()->trans('"Backup" directory does not exist.', [], 'Admin.Advparameters.Notification'))); } // Check the realpath so we can validate the backup file is under the backup directory if (!empty($filename)) { $backupfile = realpath($backupdir . DIRECTORY_SEPARATOR . $filename); } else { $backupfile = $backupdir . DIRECTORY_SEPARATOR; } if ($backupfile === false || strncmp($backupdir, $backupfile, strlen($backupdir)) != 0) { die(Tools::displayError('Invalid backup file.')); } return $backupfile; } /** * Check if a backup file exist. * * @param string $filename prefix of the backup file (datetime will be the second part) * * @return bool true if backup file exist */ public static function backupExist($filename) { $backupdir = realpath(_PS_ADMIN_DIR_ . self::$backupDir); if ($backupdir === false) { die(Tools::displayError(Context::getContext()->getTranslator()->trans('"Backup" directory does not exist.', [], 'Admin.Advparameters.Notification'))); } return @filemtime($backupdir . DIRECTORY_SEPARATOR . $filename); } /** * Get the URL used to retrieve this backup file. * * @return string The url used to request the backup file * * @deprecated As the call has been duplicated in the new Controller. Get the URL from the router instead. */ public function getBackupURL() { // Additionnal parameters (action, filename, ajax) are kept for backward compatibility, in case we disable the new controller return Context::getContext()->link->getAdminLink( 'AdminBackup', true, [ 'route' => 'admin_backup_download', 'downloadFileName' => basename($this->id), ], [ 'action' => 'backupContent', 'ajax' => 1, 'filename' => basename($this->id), ] ); } /** * Delete the current backup file. * * @return bool Deletion result, true on success */ public function delete() { if (!$this->id || !unlink($this->id)) { $this->error = Context::getContext()->getTranslator()->trans('Error deleting', [], 'Admin.Advparameters.Notification') . ' ' . ($this->id ? '"' . $this->id . '"' : Context::getContext()->getTranslator()->trans('Invalid ID', [], 'Admin.Advparameters.Notification')); return false; } return true; } /** * Deletes a range of backup files. * * @return bool True on success */ public function deleteSelection($list) { foreach ($list as $file) { $backup = new PrestaShopBackup($file); if (!$backup->delete()) { $this->error = $backup->error; return false; } } return true; } /** * Creates a new backup file. * * @return bool true on successful backup */ public function add() { if (!$this->psBackupAll) { $ignoreInsertTable = [_DB_PREFIX_ . 'connections', _DB_PREFIX_ . 'connections_page', _DB_PREFIX_ . 'connections_source', _DB_PREFIX_ . 'guest', _DB_PREFIX_ . 'statssearch', ]; } else { $ignoreInsertTable = []; } // Generate some random number, to make it extra hard to guess backup file names $rand = dechex(mt_rand(0, min(0xFFFFFFFF, mt_getrandmax()))); $date = time(); $backupfile = $this->getRealBackupPath() . $date . '-' . $rand . '.sql'; // Figure out what compression is available and open the file if (function_exists('bzopen')) { $backupfile .= '.bz2'; $fp = @bzopen($backupfile, 'w'); } elseif (function_exists('gzopen')) { $backupfile .= '.gz'; $fp = @gzopen($backupfile, 'w'); } else { $fp = @fopen($backupfile, 'wb'); } if ($fp === false) { echo Context::getContext()->getTranslator()->trans('Unable to create backup file', [], 'Admin.Advparameters.Notification') . ' "' . addslashes($backupfile) . '"'; return false; } $this->id = realpath($backupfile); fwrite($fp, '/* Backup for ' . Tools::getHttpHost(false, false) . __PS_BASE_URI__ . "\n * at " . date('Y-m-d H:i:s', $date) . "\n */\n"); fwrite($fp, "\n" . 'SET NAMES \'utf8mb4\';'); fwrite($fp, "\n" . 'SET FOREIGN_KEY_CHECKS = 0;'); fwrite($fp, "\n" . 'SET SESSION sql_mode = \'\';' . "\n\n"); // Find all tables $tables = Db::getInstance()->executeS('SHOW TABLES'); $found = 0; foreach ($tables as $table) { $table = current($table); // Skip tables which do not start with _DB_PREFIX_ if (strlen($table) < strlen(_DB_PREFIX_) || strncmp($table, _DB_PREFIX_, strlen(_DB_PREFIX_)) != 0) { continue; } // Export the table schema $schema = Db::getInstance()->executeS('SHOW CREATE TABLE `' . $table . '`'); if (count($schema) != 1 || !isset($schema[0]['Table']) || !isset($schema[0]['Create Table'])) { fclose($fp); $this->delete(); echo Context::getContext()->getTranslator()->trans('An error occurred while backing up. Unable to obtain the schema of %s', [$table], 'Admin.Advparameters.Notification'); return false; } fwrite($fp, '/* Scheme for table ' . $schema[0]['Table'] . " */\n"); if ($this->psBackupDropTable) { fwrite($fp, 'DROP TABLE IF EXISTS `' . $schema[0]['Table'] . '`;' . "\n"); } fwrite($fp, $schema[0]['Create Table'] . ";\n\n"); if (!in_array($schema[0]['Table'], $ignoreInsertTable)) { $data = Db::getInstance()->query('SELECT * FROM `' . $schema[0]['Table'] . '`'); $sizeof = Db::getInstance()->numRows(); if ($data && $sizeof > 0) { // First we write the beginning of an insert query fwrite($fp, 'INSERT INTO `' . $schema[0]['Table'] . "` VALUES\n"); // We start a counter, because we want to separate the queries by batches of 200 lines $i = 1; while ($row = Db::getInstance()->nextRow($data)) { $s = '('; foreach ($row as $value) { if ($value === null) { $s .= 'NULL,'; } else { $s .= "'" . pSQL($value, true) . "',"; } } $s = rtrim($s, ','); if ($i % 200 == 0 && $i < $sizeof) { $s .= ");\nINSERT INTO `" . $schema[0]['Table'] . "` VALUES\n"; } elseif ($i < $sizeof) { $s .= "),\n"; } else { $s .= ");\n"; } fwrite($fp, $s); ++$i; } } } ++$found; } fclose($fp); if ($found == 0) { $this->delete(); echo Context::getContext()->getTranslator()->trans('No valid tables were found to backup.', [], 'Admin.Advparameters.Notification'); return false; } return true; } }