]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-updates.php
Mailer project rwritten:
[mailer.git] / inc / modules / admin / what-updates.php
index 6d73b593ac92c35a5afeb8b84f40c10502747a4a..89df15eea14fb18924bd9e3372df32367044ab6a 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 01/16/2004 *
- * ================                             Last change: 05/14/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 01/16/2004 *
+ * ===================                          Last change: 05/14/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-updates.php                                 *
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -42,42 +41,28 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 } // END - if
 
 // Add description as navigation point
-addMenuDescription('admin', __FILE__);
+addYouAreHereLink('admin', __FILE__);
 
 // Init array
 $ONLINE['code'] = '???';
 
 // Get response from our server in an array
-$response = sendGetRequest('check-updates3.php');
+$response = sendHttpGetRequest('check-updates3.php');
 
 if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($response[3])) {
        // Error!
        $response = array('', '', '');
 } else {
        // Analyse header for response code
-       if (eregi('200 OK', $response[0])) {
+       if (isInStringIgnoreCase('200 OK', $response[0])) {
                // Found, kill header
-               $pos = 0;
-               foreach($response as $k => $v) {
-                       $v = trim($v);
-                       if (empty($v)) {
-                               // Header ends here (+1)
-                               $pos = $k + 1; break;
-                       }
-               }
-
-               $response2 = array();
-               for($i = $pos; $i < count($response); $i++) {
-                       $response2[] = trim($response[$i]);
-               }
-               $response = $response2; unset($response2);
-               unset($pos);
+               $response = removeHttpHeaderFromResponse($response);
 
                // Which is the latest version on server?
                $ONLINE = array(
-                       'version'  => str_replace("\n", '', $response[0]),
-                       'changed'  => str_replace("\n", '', $response[1]),
-                       'revision' => str_replace("\n", '', $response[2]),
+                       'version'  => trim(str_replace(PHP_EOL, '', $response[0])),
+                       'changed'  => trim(str_replace(PHP_EOL, '', $response[1])),
+                       'revision' => trim(str_replace(PHP_EOL, '', $response[2])),
                        'code'     => '200 OK'
                );
        } else {
@@ -89,16 +74,19 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($
 // Is a newer version available?
 if (empty($ONLINE['version'])) {
        // Disconnected?
-       loadTemplate('admin_settings_saved', false, "<div class=\"admin_failed\">{--ADMIN_CANNOT_CHECK_VERSION--} (".$ONLINE['code'].")</div>");
-} elseif (($ONLINE['version'] != getConfig('FULL_VERSION')) || ($ONLINE['revision'] != getConfig('CURR_SVN_REVISION'))) {
+       loadTemplate('admin_settings_unsaved', FALSE, '{--ADMIN_CANNOT_CHECK_VERSION--} (' . $ONLINE['code'] . ')');
+} elseif (($ONLINE['version'] != getFullVersion()) || ($ONLINE['revision'] > getCurrentRepositoryRevision())) {
        // New full-version available (all previous released patches are included in this version!)
        $ONLINE['changed'] = generateDateTime($ONLINE['changed'], 2);
 
        // Load template
-       loadTemplate('admin_update_download', false, $ONLINE);
+       loadTemplate('admin_update_download', FALSE, $ONLINE);
+} elseif ($ONLINE['revision'] < getCurrentRepositoryRevision()) {
+       // Installed revision is newer than on server
+       displayMessage('{--ADMIN_LOCAL_REVISION_IS_NEWER_THAN_UPDATE--}');
 } else {
        // You have the latest version!
-       loadTemplate('admin_settings_saved', false, getMessage('NO_UPDATES_AVAILABLE'));
+       displayMessage('{--ADMIN_NO_UPDATES_AVAILABLE--}');
 }
 
 // [EOF]