2013-08-28 22:47:04 +02:00
< ? php
/**
* File : startupdates . php .
* Author : Ulrich Block
* Date : 05.01 . 13
* Time : 12 : 20
* Contact : < ulrich . block @ easy - wi . com >
*
* This file is part of Easy - WI .
*
* Easy - WI is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
*
* Easy - WI 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 General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with Easy - WI . If not , see < http :// www . gnu . org / licenses />.
*
* Diese Datei ist Teil von Easy - WI .
*
* Easy - WI ist Freie Software : Sie koennen es unter den Bedingungen
* der GNU General Public License , wie von der Free Software Foundation ,
* Version 3 der Lizenz oder ( nach Ihrer Wahl ) jeder spaeteren
* veroeffentlichten Version , weiterverbreiten und / oder modifizieren .
*
* Easy - WI wird in der Hoffnung , dass es nuetzlich sein wird , aber
* OHNE JEDE GEWAEHELEISTUNG , bereitgestellt ; sogar ohne die implizite
* Gewaehrleistung der MARKTFAEHIGKEIT oder EIGNUNG FUER EINEN BESTIMMTEN ZWECK .
* Siehe die GNU General Public License fuer weitere Details .
*
* Sie sollten eine Kopie der GNU General Public License zusammen mit diesem
* Programm erhalten haben . Wenn nicht , siehe < http :// www . gnu . org / licenses />.
*/
if ( isset ( $_SERVER [ 'REMOTE_ADDR' ])) {
$ip = $_SERVER [ 'REMOTE_ADDR' ];
if ( isset ( $_GET [ 'timeout' ]) and is_numeric ( $_GET [ 'timeout' ])) {
$timelimit = $_GET [ 'timeout' ];
} else {
$timelimit = ini_get ( 'max_execution_time' ) - 10 ;
}
} else {
$timelimit = 600 ;
}
set_time_limit ( $timelimit );
2013-10-05 13:39:56 +02:00
if ( ! isset ( $ip ) or $_SERVER [ 'SERVER_ADDR' ] == $ip ) {
2013-09-27 08:22:09 +02:00
define ( 'EASYWIDIR' , dirname ( __FILE__ ));
2013-08-28 22:47:04 +02:00
echo " Start Syncs and Updates loading... \r \n " ;
2013-09-27 08:22:09 +02:00
include ( EASYWIDIR . '/stuff/vorlage.php' );
include ( EASYWIDIR . '/stuff/class_validator.php' );
include ( EASYWIDIR . '/stuff/functions.php' );
include ( EASYWIDIR . '/stuff/settings.php' );
include ( EASYWIDIR . '/stuff/ssh_exec.php' );
include ( EASYWIDIR . '/stuff/class_masterserver.php' );
include ( EASYWIDIR . '/stuff/keyphrasefile.php' );
2013-08-28 22:47:04 +02:00
$currentHour = date ( 'G' );
$currentMinute = ( int ) date ( 'i' );
2013-09-29 15:29:58 +02:00
$query = $sql -> prepare ( " SELECT `lastUpdateRun` FROM `settings` WHERE `resellerid`=0 LIMIT 1 " );
2013-08-28 22:47:04 +02:00
$query -> execute ();
2013-10-10 08:06:37 +02:00
$lastUpdateRun = ( int ) $query -> fetchColumn ();
2013-09-29 15:29:58 +02:00
$query = $sql -> prepare ( " UPDATE `settings` SET `lastUpdateRun`=? WHERE `resellerid`=0 LIMIT 1 " );
2013-08-28 22:47:04 +02:00
$query -> execute ( array ( $currentMinute ));
echo " Checking for servers to be updated and or synced at hour ${ currentHour } and between minutes ${ lastUpdateRun } and ${ currentMinute } \r \n " ;
$currentMinute ++ ;
2013-10-03 12:49:13 +02:00
if ( $lastUpdateRun != null and $lastUpdateRun != 0 ) $lastUpdateRun -- ;
2013-09-29 15:29:58 +02:00
$query = $sql -> prepare ( " SELECT `id` FROM `rserverdata` WHERE `updates`!=3 AND (`alreadyStartedAt` IS NULL OR `alreadyStartedAt`!=?) AND `updateMinute`>? AND `updateMinute`<? " );
$query2 = $sql -> prepare ( " UPDATE `rserverdata` SET `alreadyStartedAt`=? WHERE `id`=? LIMIT 1 " );
2013-08-28 22:47:04 +02:00
$query -> execute ( array ( $currentHour , $lastUpdateRun ,( $currentMinute + 1 )));
foreach ( $query -> fetchAll ( PDO :: FETCH_ASSOC ) as $row ) {
$rootServer = new masterServer ( $row [ 'id' ], $aeskey );
$rootServer -> collectData ();
echo " Starting updates for " . $rootServer -> sship . " \r \n " ;
$sshcmd = $rootServer -> returnCmds ();
if ( $rootServer -> sshcmd !== null ) {
2013-10-03 12:49:13 +02:00
$update = ssh2_execute ( 'gs' , $row [ 'id' ], $rootServer -> sshcmd );
2013-08-29 23:37:49 +02:00
if ( $update !== false ) {
2013-08-28 22:47:04 +02:00
$rootServer -> setUpdating ();
echo " Updater started for " . $rootServer -> sship . " \r \n " ;
} else {
echo " Updating failed for: " . $rootServer -> sship . " \r \n " ;
}
}
2013-10-03 12:49:13 +02:00
$query2 -> execute ( array ( $currentHour , $row [ 'id' ]));
2013-08-28 22:47:04 +02:00
unset ( $rootServer );
}
2013-09-29 15:29:58 +02:00
$query = $sql -> prepare ( " UPDATE `settings` SET `lastCronUpdates`=UNIX_TIMESTAMP() WHERE `resellerid`=0 LIMIT 1 " );
2013-08-28 22:47:04 +02:00
$query -> execute ();
}