forked from NeoRazorX/facturascripts_2015
-
Notifications
You must be signed in to change notification settings - Fork 0
/
updater.php
460 lines (422 loc) · 15.4 KB
/
updater.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
<?php
/*
* This file is part of FacturaSctipts
* Copyright (C) 2015 Carlos Garcia Gomez [email protected]
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
if( !file_exists('config.php') )
{
die('Archivo config.php no encontrado. No puedes actualizar sin instalar.');
}
require_once 'config.php';
require_once 'base/fs_cache.php';
function recurse_copy($src, $dst)
{
$dir = opendir($src);
@mkdir($dst);
while(false !== ( $file = readdir($dir)) )
{
if (( $file != '.' ) && ( $file != '..' ))
{
if ( is_dir($src . '/' . $file) )
{
recurse_copy($src . '/' . $file,$dst . '/' . $file);
}
else
{
copy($src . '/' . $file,$dst . '/' . $file);
}
}
}
closedir($dir);
}
function delTree($dir)
{
$files = array_diff(scandir($dir), array('.','..'));
foreach ($files as $file)
{
(is_dir("$dir/$file")) ? delTree("$dir/$file") : unlink("$dir/$file");
}
return rmdir($dir);
}
function __getAllSubDirectories($base_dir)
{
$directories = array();
foreach(scandir($base_dir) as $file)
{
if($file == '.' || $file == '..') continue;
$dir = $base_dir.DIRECTORY_SEPARATOR.$file;
if( is_dir($dir) )
{
$directories[] = $dir;
$directories = array_merge($directories, __getAllSubDirectories($dir));
}
}
return $directories;
}
function __areWritable($dirlist)
{
$notwritable = array();
foreach($dirlist as $dir)
{
if( !is_writable($dir) )
{
$notwritable[] = $dir;
}
}
return $notwritable;
}
function curl_get_contents($url)
{
if( function_exists('curl_init') )
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
$data = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);
if($info['http_code'] == 302)
{
return file_get_contents($url);
}
else
return $data;
}
else
return file_get_contents($url);
}
function check_for_plugin_updates()
{
$plugins = array();
foreach( scandir(getcwd().'/plugins') as $f)
{
if( is_dir('plugins/'.$f) AND $f != '.' AND $f != '..')
{
$plugin = array(
'name' => $f,
'description' => 'Sin descripción.',
'compatible' => FALSE,
'enabled' => FALSE,
'version' => 0,
'require' => '',
'update_url' => '',
'version_url' => '',
'new_version' => 0
);
if( file_exists('plugins/'.$f.'/facturascripts.ini') )
{
$plugin['compatible'] = TRUE;
$plugin['enabled'] = file_exists('tmp/enabled_plugins/'.$f);
if( file_exists('plugins/'.$f.'/description') )
{
$plugin['description'] = file_get_contents('plugins/'.$f.'/description');
}
$ini_file = parse_ini_file('plugins/'.$f.'/facturascripts.ini');
if( isset($ini_file['version']) )
{
$plugin['version'] = intval($ini_file['version']);
}
if( isset($ini_file['require']) )
{
$plugin['require'] = $ini_file['require'];
}
if( isset($ini_file['update_url']) )
{
$plugin['update_url'] = $ini_file['update_url'];
}
if( isset($ini_file['version_url']) )
{
$plugin['version_url'] = $ini_file['version_url'];
}
if($plugin['version_url'] != '' AND $plugin['update_url'] != '')
{
$internet_ini = @parse_ini_string( curl_get_contents($plugin['version_url']) );
if($internet_ini)
{
if( $plugin['version'] < intval($internet_ini['version']) )
{
$plugin['new_version'] = intval($internet_ini['version']);
$plugins[] = $plugin;
}
}
}
}
}
}
return $plugins;
}
function clean_cache()
{
$cache = new fs_cache();
$cache->clean();
/// borramos los archivos temporales del motor de plantillas
foreach( scandir(getcwd().'/tmp') as $f )
{
if( substr($f, -4) == '.php' )
{
unlink('tmp/'.$f);
}
}
}
if( isset($_COOKIE['user']) AND isset($_COOKIE['logkey']) )
{
$mensajes = '';
$errores = '';
if( !isset($_GET['update']) AND !isset($_GET['reinstall']) AND !isset($_GET['plugin']) )
{
foreach(__areWritable(__getAllSubDirectories('.')) as $dir)
{
$errores .= 'No se puede escribir sobre el directorio '.$dir.'<br/>';
}
}
if($errores != '')
{
$errores .= 'Tienes que corregir estos errores antes de continuar.';
}
else if( isset($_GET['update']) OR isset($_GET['reinstall']) )
{
if( @file_put_contents('update.zip', curl_get_contents('https://github.com/NeoRazorX/facturascripts_2015/archive/master.zip')) )
{
$zip = new ZipArchive();
if( $zip->open('update.zip') )
{
$zip->extractTo('.');
$zip->close();
unlink('update.zip');
/// eliminamos archivos antiguos
delTree('base/');
delTree('controller/');
delTree('extras/');
delTree('model/');
delTree('raintpl/');
delTree('view/');
/// ahora hay que copiar todos los archivos de facturascripts-master a . y borrar
recurse_copy('facturascripts_2015-master/', '.');
delTree('facturascripts_2015-master/');
/// limpiamos la caché
clean_cache();
$mensajes = 'Actualizado correctamente.';
}
else
$errores = 'Archivo update.zip no encontrado.';
}
else
$errores = 'Error al descargar el archivo zip.';
}
else if( isset($_GET['plugin']) )
{
/// leemos el ini del plugin
$plugin_ini = parse_ini_file('plugins/'.$_GET['plugin'].'/facturascripts.ini');
if($plugin_ini)
{
/// descargamos el zip
if( @file_put_contents('update.zip', curl_get_contents($plugin_ini['update_url'])) )
{
$zip = new ZipArchive();
if( $zip->open('update.zip') )
{
/// eliminamos los archivos antiguos
delTree('plugins/'.$_GET['plugin']);
/// descomprimimos
$zip->extractTo('plugins/');
$zip->close();
unlink('update.zip');
/// renombramos el directorio
rename('plugins/'.$_GET['plugin'].'-master', 'plugins/'.$_GET['plugin']);
/// limpiamos la caché
clean_cache();
$mensajes = 'Plugin actualizado correctamente.';
}
else
$errores = 'Archivo update.zip no encontrado.';
}
else
$errores = 'Error al descargar el archivo zip.';
}
}
$actualizar = FALSE;
$version_actual = file_get_contents('VERSION');
$nueva_version = @curl_get_contents('https://raw.githubusercontent.com/NeoRazorX/facturascripts_2015/master/VERSION');
if( floatval($version_actual) < floatval($nueva_version) )
{
$actualizar = TRUE;
}
$plugins_for_update = FALSE;
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="es" xml:lang="es" >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Actualizador de FacturaScripts</title>
<meta name="description" content="Script de actualización de FacturaScripts." />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="view/img/favicon.ico" />
<link rel="stylesheet" href="view/css/bootstrap-yeti.min.css" />
<script type="text/javascript" src="view/js/jquery.min.js"></script>
<script type="text/javascript" src="view/js/bootstrap.min.js"></script>
</head>
<body>
<?php
if($errores != '')
{
echo '<div class="alert alert-danger" style="margin-bottom: 0px;">'.$errores.'</div>';
}
else if($mensajes != '')
{
echo '<div class="container-fluid">'
. '<div class="row">'
. '<div class="col-sm-10"><div class="alert alert-info" style="margin-bottom: 0px;">'.$mensajes.'</div></div>'
. '<div class="col-sm-2">'
. '<a href="index.php?page=admin_home&updated=TRUE" class="btn btn-block btn-default">'
. '<span class="glyphicon glyphicon-ok" aria-hidden="true"></span> Finalizar'
. '</a>'
. '</div>'
. '</div>'
. '</div>';
}
?>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="page-header">
<h1>¡Bienvenido al actualizador de FacturaScripts!</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-md-9">
<p>
Este actualizador permite actualizar tanto el núcleo de FacturaScripts como sus plugins.
</p>
<p>
Tienes instalada la versión <mark><?php echo $version_actual; ?></mark>
y en Internet está disponible la versión <mark><?php echo $nueva_version; ?></mark>
</p>
</div>
<div class="col-md-3 text-right">
<?php
if($errores != '')
{
?>
<a class="btn btn-warning btn-lg" href="updater.php" role="button">
<span class="glyphicon glyphicon-warning-sign" aria-hidden="true"></span>
</a>
<?php
}
else if($actualizar)
{
?>
<div class="btn-group">
<a class="btn btn-default btn-lg" href="https://www.facturascripts.com/comm3/index.php?page=community_changelog&version=<?php echo $nueva_version; ?>" target="_blank" role="button" title="Ver la lista de novedades">
<span class="glyphicon glyphicon-zoom-in" aria-hidden="true"></span>
</a>
<a class="btn btn-primary btn-lg" href="updater.php?update=TRUE" role="button">
<span class="glyphicon glyphicon-upload" aria-hidden="true"></span> Actualizar
</a>
</div>
<?php
}
else
{
?>
<a class="btn btn-default btn-lg" href="updater.php?reinstall=TRUE" role="button">
<span class="glyphicon glyphicon-repeat" aria-hidden="true"></span> Reinstalar
</a>
<?php
}
?>
</div>
</div>
<div class="row">
<div class="col-md-12">
<ul class="nav nav-tabs">
<li role="presentation" class="active"><a href="#">Plugins</a></li>
</ul>
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th class="text-left">Nombre</th>
<th class="text-left">Descripción</th>
<th class="text-right">Versión</th>
<th class="text-right">Nueva versión</th>
<th></th>
</tr>
</thead>
<?php
if($actualizar)
{
echo '<tr class="bg-warning"><td colspan="5">Tienes que actualizar FacturaScripts antes de actualizar los plugins.</td></tr>';
}
else if($errores == '')
{
foreach(check_for_plugin_updates() as $plugin)
{
echo '<tr><td>'.$plugin['name'].'</td><td>'.$plugin['description'].'</td>'
. '<td class="text-right">'.$plugin['version'].'</td><td class="text-right">'.$plugin['new_version'].'</td>'
. '<td class="text-right">'
. '<div class="btn-group">'
. '<a class="btn btn-default btn-xs" href="https://www.facturascripts.com/comm3/index.php?page=community_changelog&version='.$plugin['new_version'].'&plugin='.$plugin['name'].'" target="_blank" role="button" title="Ver la lista de novedades">
<span class="glyphicon glyphicon-zoom-in" aria-hidden="true"></span>
</a>'
. '<a href="updater.php?plugin='.$plugin['name'].'" class="btn btn-xs btn-primary">Actualizar</a>'
. '</div>'
. '</td></tr>';
$plugins_for_update = TRUE;
}
if(!$plugins_for_update)
{
echo '<tr class="bg-success"><td colspan="5">No hay actualizaciones de plugins.</td></tr>';
}
}
else
{
echo '<tr class="bg-warning"><td colspan="5">Aplazada la comprobación de plugins hasta que resuelvas los problemas.</td></tr>';
}
?>
</table>
</div>
</div>
</div>
<?php
if($errores == '' AND !$actualizar AND !$plugins_for_update)
{
?>
<div class="row">
<div class="col-md-12 text-center">
<h2>¿Otra actualización correcta?</h2>
<p>Pues siéntete libre de regalarnos una mención en twitter ;-)</p>
<div>
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://www.facturascripts.com" data-text="El WordPress de la contabilidad y facturación" data-via="neorazorx" data-size="large" data-hashtags="facturascripts">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>
</div>
</div>
<?php
}
?>
</div>
</body>
</html>
<?php
}
else
{
echo 'Debes <a href="index.php">iniciar sesión</a>.';
}