forked from MediaFrontPage/mediafrontpage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.php
241 lines (232 loc) · 6.7 KB
/
update.php
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<?php
//@author: Gustavo Hoirisch
function unzip($file = 'update.zip', $extractDir = 'update'){
//check if ZIP extension is loaded
if (!extension_loaded('zip')) {
try{
dl('zip.so');
} catch(Exception $e){
//echo 'Could not load extension ZIP';
return false;
}
}
// Unzip the file
$zip = new ZipArchive;
if (!$zip) {
//echo "<br />Could not make ZipArchive object.";
return false;
}
if($zip->open("$file") != "true") {
//echo "<br />Could not open $file.";
return false;
}
$zip->extractTo($extractDir);
$zip->close();
//echo "<p>Unzipped file to: <b>".$extractDir.'</b></p>';
return true;
}
function moveDir($src, $dst){
$src = $src.'/';
$dst = $dst.'/';
$updateContents = scandir($src);
foreach($updateContents as $number=>$fileName){
if($fileName != 'update' && $fileName != 'config.ini' && $fileName != 'layout.php' && $fileName != '..' && $fileName != '.' && $fileName != '.git' && $fileName != '.gitignore' && $fileName != 'tmp' && $fileName != 'update'){
if(!rename($src.$fileName, $dst.$fileName)){
return false;
}
}
}
return true;
}
function moveUpdate(){
$name = '';
if ($handle = opendir('../update')) {
while (false !== ($file = readdir($handle))) {
if(strstr($file,'mediafrontpage')){
$name = $file;
}
}
closedir($handle);
}
if($name != ''){
if(moveDir('../update/'.$name, '../')){
return true;
}
}
return false;
}
//Deletes directories and it's contents. If $remove is true, it will delete the directory otherwise, only it's contents.
function rrmdir($dir, $remove = true) {
if (is_dir($dir)) {
$objects = scandir($dir);
//echo '<pre>';print_r($objects);echo '</pre>';
foreach ($objects as $object) {
if ($object != "." && $object != "..") {
if (filetype($dir."/".$object) == "dir"){
if(!rrmdir($dir."/".$object, true)){
echo 'Could not delete directory '.$dir."/".$object.'<font color="red">ERROR</font><br />';
return false;
}
} else {
if(!unlink($dir."/".$object)){
echo 'Could not delete file '.$dir."/".$object.'<font color="red">ERROR</font><br />';
return false;
}
}
}
}
reset($objects);
if($remove){
if(rmdir($dir)){
return true;
} else {
return false;
}
}
}
return true;
}
function download($file_name = "update.zip"){
$url = 'https://nodeload.github.com/gugahoi/mediafrontpage/zipball/master';
$userAgent = 'Googlebot/2.1 (http://www.googlebot.com/bot.html)';
$ch = curl_init();
//Opening $file_zip to save the download
$fp = fopen("$file_name", "w");
curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);
// set the cURL request to $url
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_FAILONERROR, true);
//No headers
curl_setopt($ch, CURLOPT_HEADER,0);
//Follow redirects
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER,true);
//timeout set to 30 seconds. File must finish downloading in this time.
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_FILE, $fp);
//execute request
$page = curl_exec($ch);
//In case the download failed
if (!$page) {
//echo "<br />cURL error number:" .curl_errno($ch);
//echo "<br />cURL error:" . curl_error($ch);
curl_close($ch);
return false;
}
curl_close($ch);
return true;
}
function updateVersion(){
require_once 'lib/class.settings.php';require_once 'lib/class.github.php';
$github = new GitHub('gugahoi','mediafrontpage');
$commit = $github->getCommits();
$commitNo = $commit['0']['sha'];
$config = new ConfigMagik('config.ini', true, true);
try{
$config->set('version', $commitNo, 'ADVANCED');
return true;
} catch (Exception $e){
return false;
}
}
if(!empty($_GET)){
if(isset($_GET['download']) && $_GET['download']){
if(download()){
echo true; return true;
}
}
elseif(isset($_GET['unzip']) && $_GET['unzip']){
if(unzip()){
echo true; return true;
}
}
elseif(isset($_GET['update']) && $_GET['update']){
if(updateVersion()){
echo true; return true;
}
}
elseif(isset($_GET['remove']) && $_GET['remove'] != false){
if(rrmdir($_GET['remove'])){
echo true; return true;
}
}
elseif(isset($_GET['move']) && $_GET['move']){
if(isset($_GET['src']) && isset($_GET['dst'])){
if(moveDir($_GET['src'], $_GET['dst'])){
echo true; return true;
}
}
}
elseif(isset($_GET['moveupdate']) && $_GET['moveupdate']){
if(moveUpdate()){
echo true; return true;
}
}
elseif(isset($_GET['cleanup']) && $_GET['cleanup']){
if(isset($_GET['dir']) && $_GET['dir'] != ''){
if(rrmdir($_GET['dir'], false)){
echo true; return true;
}
}
}
echo false; return false; exit;
} else {
rrmdir('tmp', false);
rrmdir('update',false);
?>
<html>
<head>
<title>UPDATING</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="js/update.js"></script>
<link href="css/front.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="css/widget.css">
<link rel="stylesheet" type="text/css" href="css/static_widget.css">
<script>
</script>
</head>
<body>
<center>
<div style="width:90%; height:100%; overflow: auto;" class="widget">
<div class="widget-head">
<h3>MediaFrontPage Auto-Update</h3>
</div>
<table align="left" style="padding-top: 30px;" cellspacing="7">
<tr>
<td align="left">Downloading latest version</td>
<td><img id="dl" src="media/pwait.gif" height="15px" /></td>
</tr>
<tr>
<td align="left">Unziping archive</td>
<td><div id="zip"></div></td>
</tr>
<tr>
<td align="left">Backing up old files</td>
<td><div id="backup"></div></td>
</tr>
<tr>
<td align="left">Updating</td>
<td><div id="update"></td>
</tr>
<tr>
<td align="left">Cleaning up backup</td>
<td><div id="clean-back"></div></td>
</tr>
<tr>
<td align="left">Cleaning up leftovers</td>
<td><div id="clean-left"></div></td>
</tr>
<tr>
<td align="left">Updating commit number</td>
<td><div id="commit"></div></td>
</tr>
</table>
<div id="result"></div>
</div>
</center>
</body>
</html>
<?php
}
?>