-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCronFileBackups.php
More file actions
134 lines (115 loc) · 3.93 KB
/
CronFileBackups.php
File metadata and controls
134 lines (115 loc) · 3.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
/**
* Contao Open Source CMS
*
* @copyright MEN AT WORK 2014
* @package syncCto
* @license GNU/LGPL
* @filesource
*/
/**
* Initialize the system
*/
$dir = dirname(isset($_SERVER['SCRIPT_FILENAME']) ? $_SERVER['SCRIPT_FILENAME'] : __FILE__);
while ($dir && $dir != '.' && $dir != '/' && !is_file($dir . '/system/initialize.php')) {
$dir = dirname($dir);
}
if (!is_file($dir . '/system/initialize.php')) {
header("HTTP/1.0 500 Internal Server Error");
header('Content-Type: text/html; charset=utf-8');
echo '<h1>500 Internal Server Error</h1>';
echo '<p>Could not find initialize.php!</p>';
exit(1);
}
define('TL_MODE', 'BACKUP');
require($dir . '/system/initialize.php');
/**
* Class CronFileBackups
*/
class CronFileBackups extends Backend
{
/**
* @var SyncCtoFiles
*/
protected $objSyncCtoFiles;
/**
* @var SyncCtoHelper
*/
protected $objSyncCtoHelper;
/**
* Initialize the controller
*/
public function __construct()
{
parent::__construct();
$this->objSyncCtoFile = SyncCtoFiles::getInstance();
$this->objSyncCtoHelper = SyncCtoHelper::getInstance();
}
/**
* Implement the commands to run by this batch program
*/
public function run()
{
try
{
// Create XML file path
$strXMLPath = $this->objSyncCtoHelper->standardizePath($GLOBALS['SYC_PATH']['file'], "Auto-File-BackUp.xml");
$booFirstRun = false;
// Check if we already have a file list
if (!file_exists(TL_ROOT . "/" . $strXMLPath))
{
$booFirstRun = true;
if (!$this->objSyncCtoFile->generateChecksumFileAsXML($strXMLPath, true, true, SyncCtoEnum::FILEINFORMATION_SMALL))
{
//$this->log("Error by creating filelist.", __CLASS__ . " | " . __FUNCTION__, TL_CRON);
}
}
$arrResult = null;
// Do Backup
if ($booFirstRun == true)
{
// If first run, the function will create a file name
$arrResult = $this->objSyncCtoFile->runIncrementalDump($strXMLPath, $GLOBALS['SYC_PATH']['file'], null, 100);
// Save zipname into xml
// Open XML Reader
$objXml = new DOMDocument("1.0", "UTF-8");
$objXml->load(TL_ROOT . "/" . $strXMLPath);
// Search metatags
$objXml->getElementsByTagName("metatags")->item(0);
// Create new tag
$objFileXML = $objXml->createElement("zipfile", $arrResult["file"]);
// Add to document
$objXml->getElementsByTagName("metatags")->item(0)->appendChild($objFileXML);
// Save
$objXml->save(TL_ROOT . "/" . $strXMLPath);
}
else
{
// Load the zipname from xml
$objXml = new DOMDocument("1.0", "UTF-8");
$objXml->load(TL_ROOT . "/" . $strXMLPath);
$strZipFile = $objXml->getElementsByTagName("zipfile")->item(0)->nodeValue;
unset($objXml);
// Run backup
$arrResult = $this->objSyncCtoFile->runIncrementalDump($strXMLPath, $GLOBALS['SYC_PATH']['file'], $strZipFile, 100);
}
// If all work is done delete the filelist
if ($arrResult["done"] == true)
{
$objFile = new File($strXMLPath);
$objFile->blnSyncDb = false;
$objFile->delete();
$objFile->close();
}
}
catch (Exception $exc)
{
//$this->log("Error by file backup with msg: " . $exc->getMessage(), __CLASS__ . " | " . __FUNCTION__, TL_CRON);
}
}
}
/**
* Instantiate log purger
*/
$objFileBackups = new CronFileBackups();
$objFileBackups->run();