CRM-14423 - CRM_Utils_Check_Env - Add check for other environmental configuration...
authorTim Otten <totten@civicrm.org>
Fri, 4 Apr 2014 04:37:58 +0000 (21:37 -0700)
committerTim Otten <totten@civicrm.org>
Fri, 4 Apr 2014 05:15:10 +0000 (22:15 -0700)
CRM/Utils/Check.php
CRM/Utils/Check/Env.php [new file with mode: 0644]

index 65a4ff331d3bce0c682f39ec2bf452694836f388..08b8d7af7c7de05811368fe239858705b488f0ad 100644 (file)
@@ -95,8 +95,10 @@ class CRM_Utils_Check {
    */
   public function checkAll() {
     $security = new CRM_Utils_Check_Security();
+    $env = new CRM_Utils_Check_Env();
     $messages = array_merge(
-      $security->checkAll()
+      $security->checkAll(),
+      $env->checkAll()
     );
     return $messages;
   }
diff --git a/CRM/Utils/Check/Env.php b/CRM/Utils/Check/Env.php
new file mode 100644 (file)
index 0000000..7170b45
--- /dev/null
@@ -0,0 +1,68 @@
+<?php
+/*
+ +--------------------------------------------------------------------+
+ | CiviCRM version 4.4                                                |
+ +--------------------------------------------------------------------+
+ | Copyright CiviCRM LLC (c) 2004-2014                                |
+ +--------------------------------------------------------------------+
+ | This file is a part of CiviCRM.                                    |
+ |                                                                    |
+ | CiviCRM is free software; you can copy, modify, and distribute it  |
+ | under the terms of the GNU Affero General Public License           |
+ | Version 3, 19 November 2007 and the CiviCRM Licensing Exception.   |
+ |                                                                    |
+ | CiviCRM 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 and the CiviCRM Licensing Exception along                  |
+ | with this program; if not, contact CiviCRM LLC                     |
+ | at info[AT]civicrm[DOT]org. If you have questions about the        |
+ | GNU Affero General Public License or the licensing of CiviCRM,     |
+ | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
+ +--------------------------------------------------------------------+
+*/
+
+/**
+ *
+ * @package CRM
+ * @copyright CiviCRM LLC (c) 2004-2014
+ * $Id: $
+ *
+ */
+class CRM_Utils_Check_Env {
+
+  /**
+   * Run some sanity checks.
+   *
+   * @return array<CRM_Utils_Check_Message>
+   */
+  public function checkAll() {
+    $messages = array_merge(
+      $this->checkMysqlTime()
+    );
+    return $messages;
+  }
+
+  public function checkMysqlTime() {
+    $messages = array();
+
+    $phpNow = date('Y-m-d H:i');
+    $sqlNow = CRM_Core_DAO::singleValueQuery("SELECT date_format(now(), '%Y-%m-%d %H:%i')");
+    if ($phpNow != $sqlNow) {
+      $messages[] = new CRM_Utils_Check_Message(
+        'checkMysqlTime',
+        ts('Timestamps reported by MySQL (eg "%2") and PHP (eg "%3" ) are mismatched.<br /><a href="%1">Read more about this warning</a>', array(
+          1 => CRM_Utils_System::getWikiBaseURL()  . 'checkMysqlTime',
+          2 => $sqlNow,
+          3 => $phpNow,
+        )),
+        ts('Environment Settings')
+      );
+    }
+
+    return $messages;
+  }
+}
\ No newline at end of file