144 lines
4.0 KiB
PHP
144 lines
4.0 KiB
PHP
<?php
|
|
|
|
class pluginBackup extends Plugin {
|
|
|
|
// Directories to backup
|
|
private $directoriesToBackup = array(
|
|
PATH_PAGES,
|
|
PATH_DATABASES,
|
|
PATH_UPLOADS
|
|
);
|
|
|
|
// This variable define if the extension zip is loaded
|
|
private $zip = false;
|
|
|
|
public function init()
|
|
{
|
|
// Disable default form buttons (Save and Cancel)
|
|
$this->formButtons = false;
|
|
|
|
// Check for zip extension installed
|
|
$this->zip = extension_loaded('zip');
|
|
}
|
|
|
|
public function post()
|
|
{
|
|
if (isset($_POST['createBackup'])) {
|
|
return $this->createBackup();
|
|
} elseif (isset($_POST['restoreBackup'])) {
|
|
return $this->restoreBackup($_POST['restoreBackup']);
|
|
} elseif (isset($_POST['deleteBackup'])) {
|
|
return $this->deleteBackup($_POST['deleteBackup']);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public function adminSidebar()
|
|
{
|
|
$backups = $this->backupList();
|
|
return '<a class="nav-link" href="'.HTML_PATH_ADMIN_ROOT.'configure-plugin/'.$this->className().'">Backups <span class="badge badge-primary badge-pill">'.count($backups).'</span></a>';
|
|
}
|
|
|
|
public function form()
|
|
{
|
|
global $L;
|
|
|
|
$backups = $this->backupList();
|
|
|
|
$html = '';
|
|
if (empty($backups)) {
|
|
$html .= '<div class="alert alert-primary" role="alert">';
|
|
$html .= $L->get('There are no backups for the moment');
|
|
$html .= '</div>';
|
|
}
|
|
|
|
$html .= '<div>';
|
|
$html .= '<button name="createBackup" value="true" class="btn btn-primary btn-sm" type="submit"><span class="oi oi-play-circle"></span> '.$L->get('create-backup').'</button>';
|
|
$html .= '</div>';
|
|
$html .= '<hr>';
|
|
|
|
foreach ($backups as $backup) {
|
|
$filename = pathinfo($backup,PATHINFO_FILENAME);
|
|
$basename = pathinfo($backup,PATHINFO_BASENAME);
|
|
|
|
$html .= '<div>';
|
|
$html .= '<h4 class="font-weight-normal">'.Date::format($filename, BACKUP_DATE_FORMAT, 'F j, Y, g:i a').'</h4>';
|
|
// Allow download if a zip file
|
|
if ($this->zip) {
|
|
$html .= '<a class="btn btn-outline-secondary btn-sm mr-1 mt-1" href="'.DOMAIN_CONTENT.'workspaces/backup/'.$filename.'.zip"><span class="oi oi-data-transfer-download"></span> '.$L->get('download').'</a>';
|
|
}
|
|
$html .= '<button name="restoreBackup" value="'.$filename.'" class="btn btn-outline-secondary btn-sm mr-1 mt-1" type="submit"><span class="oi oi-timer"></span> '.$L->get('restore-backup').'</button>';
|
|
$html .= '<button name="deleteBackup" value="'.$filename.'" class="btn btn-outline-danger btn-sm mr-1 mt-1" type="submit"><span class="oi oi-trash"></span> '.$L->get('delete-backup').'</button>';
|
|
$html .= '</div>';
|
|
$html .= '<hr>';
|
|
}
|
|
return $html;
|
|
}
|
|
|
|
public function backupList()
|
|
{
|
|
if ($this->zip) {
|
|
$backups = Filesystem::listFiles($this->workspace(), '*', 'zip', true);
|
|
} else {
|
|
$backups = Filesystem::listDirectories($this->workspace(), '*', true);
|
|
}
|
|
return $backups;
|
|
}
|
|
|
|
public function createBackup()
|
|
{
|
|
// Current backup directory
|
|
$currentDate = Date::current(BACKUP_DATE_FORMAT);
|
|
$backupDir = $this->workspace().$currentDate;
|
|
|
|
// Copy directories to backup directory
|
|
// $directoriesToBackup is a private variable of this class
|
|
foreach ($this->directoriesToBackup as $dir) {
|
|
$destination = $backupDir.DS.basename($dir);
|
|
Filesystem::copyRecursive($dir, $destination);
|
|
}
|
|
|
|
// Compress backup directory
|
|
if ($this->zip) {
|
|
if (Filesystem::zip($backupDir, $backupDir.'.zip')) {
|
|
Filesystem::deleteRecursive($backupDir);
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public function restoreBackup($filename)
|
|
{
|
|
// Remove current files
|
|
foreach ($this->directoriesToBackup as $dir) {
|
|
Filesystem::deleteRecursive($dir);
|
|
}
|
|
|
|
// Recover backuped files
|
|
// Zip format
|
|
if ($this->zip) {
|
|
$tmp = $this->workspace().$filename.'.zip';
|
|
return Filesystem::unzip($tmp, PATH_CONTENT);
|
|
}
|
|
|
|
// Directory format
|
|
$tmp = $this->workspace().$filename;
|
|
return Filesystem::copyRecursive($tmp, PATH_CONTENT);
|
|
}
|
|
|
|
public function deleteBackup($filename)
|
|
{
|
|
// Zip format
|
|
if ($this->zip) {
|
|
$tmp = $this->workspace().$filename.'.zip';
|
|
return Filesystem::rmfile($tmp);
|
|
}
|
|
|
|
// Directory format
|
|
$tmp = $this->workspace().$filename;
|
|
return Filesystem::deleteRecursive($tmp);
|
|
}
|
|
}
|