Files
EasySoft-ZenTaoPMS/module/backup/control.php
2015-01-28 15:14:02 +08:00

171 lines
5.7 KiB
PHP

<?php
/**
* The control file of backup of ZenTaoPMS.
*
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv11.html)
* @author Yidong Wang <yidong@cnezsoft.com>
* @package backup
* @version $Id$
* @link http://www.zentao.net
*/
class backup extends control
{
/**
* __construct
*
* @access public
* @return void
*/
public function __construct()
{
parent::__construct();
$this->backupPath = $this->app->getTmpRoot() . 'backup/';
if(!is_dir($this->backupPath))
{
if(!mkdir($this->backupPath, 0777, true)) $this->view->error = sprintf($this->lang->backup->error->noWritable, dirname($this->backupPath));
}
else
{
if(!is_writable($this->backupPath)) $this->view->error = sprintf($this->lang->backup->error->noWritable, $this->backupPath);
}
}
/**
* Index
*
* @access public
* @return void
*/
public function index()
{
$backups = array();
if(empty($this->view->error))
{
foreach(glob("{$this->backupPath}*.sql.php") as $file)
{
$backupFile = new stdclass();
$backupFile->time = filemtime($file);
$backupFile->name = str_replace('.sql.php', '', basename($file));
$backupFile->files[$file] = filesize($file);
if(file_exists($this->backupPath . $backupFile->name . '.file.zip.php'))
{
$backupFile->files[$this->backupPath . $backupFile->name . '.file.zip.php'] = filesize($this->backupPath . $backupFile->name . '.file.zip.php');
}
$backups[$backupFile->name] = $backupFile;
}
}
krsort($backups);
$this->view->title = $this->lang->backup->common;
$this->view->position[] = $this->lang->backup->common;
$this->view->backups = $backups;
$this->display();
}
/**
* Backup
*
* @access public
* @return void
*/
public function backup()
{
set_time_limit(0);
$fileName = date('YmdHis') . mt_rand(0, 9);
$result = $this->backup->backSQL($this->backupPath . $fileName . '.sql.php');
if(!$result->result)
{
echo js::alert(sprintf($this->lang->backup->error->noWritable, $this->backupPath));
die(js::reload('parent'));
}
$this->backup->addFileHeader($this->backupPath . $fileName . '.sql.php');
if(extension_loaded('zlib'))
{
$result = $this->backup->backFile($this->backupPath . $fileName . '.file.zip.php');
if(!$result->result)
{
echo js::alert(sprintf($this->lang->backup->error->backupFile, $result->error));
die(js::reload('parent'));
}
$this->backup->addFileHeader($this->backupPath . $fileName . '.file.zip.php');
}
echo js::alert($this->lang->backup->success->backup);
die(js::reload('parent'));
}
/**
* Restore
*
* @param string $fileName
* @param string $confirm
* @access public
* @return void
*/
public function restore($fileName, $confirm = 'no')
{
if($confirm == 'no')
{
die(js::confirm($this->lang->backup->confirmRestore, inlink('restore', "fileName=$fileName&confirm=yes"), inlink('index'), 'self', 'parent'));
}
set_time_limit(0);
/* Restore database. */
$this->backup->removeFileHeader($this->backupPath . $fileName . '.sql.php');
$result = $this->backup->restoreSQL($this->backupPath . $fileName . '.sql.php');
$this->backup->addFileHeader($this->backupPath . $fileName . '.sql.php');
if(!$result->result)
{
echo js::alert(sprintf($this->lang->backup->error->restoreSQL, $result->error));
die(js::reload('parent'));
}
/* Restore attatchments. */
if(file_exists($this->backupPath . $fileName . '.file.zip.php'))
{
$this->backup->removeFileHeader($this->backupPath . $fileName . '.file.zip.php');
$result = $this->backup->restoreFile($this->backupPath . $fileName . '.file.zip.php');
$this->backup->addFileHeader($this->backupPath . $fileName . '.file.zip.php');
if(!$result->result)
{
echo js::alert(sprintf($this->lang->backup->error->restoreFile, $result->error));
die(js::reload('parent'));
}
}
echo js::alert($this->lang->backup->success->restore);
die(js::reload('parent'));
}
/**
* Delete
*
* @param string $fileName
* @param string $confirm
* @access public
* @return void
*/
public function delete($fileName, $confirm = 'no')
{
if($confirm == 'no') die(js::confirm($this->lang->backup->confirmDelete, inlink('delete', "fileName=$fileName&confirm=yes")));
/* Delete database file. */
if(file_exists($this->backupPath . $fileName . '.sql.php') and !unlink($this->backupPath . $fileName . '.sql.php'))
{
die(js::alert(sprintf($this->lang->backup->error->noDelete, $this->backupPath . $fileName . '.sql.php')));
}
/* Delete attatchments file. */
if(file_exists($this->backupPath . $fileName . '.file.zip.php') and !unlink($this->backupPath . $fileName . '.file.zip.php'))
{
die(js::alert(sprintf($this->lang->backup->error->noDelete, $this->backupPath . $fileName . '.file.zip.php')));
}
die(js::reload('parent'));
}
}