Merge pull request #14127 from civicrm/5.13
[civicrm-core.git] / CRM / Utils / Check.php
CommitLineData
1248c859
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
1248c859 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
1248c859
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
1248c859
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
1248c859
TO
32 */
33class CRM_Utils_Check {
50bfb460 34 // How often to run checks and notify admins about issues.
7d029160 35 const CHECK_TIMER = 86400;
1248c859 36
e5e4a5b2
CW
37 /**
38 * @var array
39 * @link https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md
40 */
be2fb01f 41 protected static $severityList = [
e5e4a5b2
CW
42 \Psr\Log\LogLevel::DEBUG,
43 \Psr\Log\LogLevel::INFO,
44 \Psr\Log\LogLevel::NOTICE,
45 \Psr\Log\LogLevel::WARNING,
46 \Psr\Log\LogLevel::ERROR,
47 \Psr\Log\LogLevel::CRITICAL,
48 \Psr\Log\LogLevel::ALERT,
49 \Psr\Log\LogLevel::EMERGENCY,
be2fb01f 50 ];
e5e4a5b2 51
1248c859
TO
52 /**
53 * We only need one instance of this object, so we use the
54 * singleton pattern and cache the instance in this variable
55 *
56 * @var object
1248c859
TO
57 */
58 static private $_singleton = NULL;
59
60 /**
61 * Provide static instance of CRM_Utils_Check.
62 *
63 * @return CRM_Utils_Check
64 */
00be9182 65 public static function &singleton() {
1248c859
TO
66 if (!isset(self::$_singleton)) {
67 self::$_singleton = new CRM_Utils_Check();
68 }
69 return self::$_singleton;
70 }
71
0e1b333f
CW
72 /**
73 * @return array
74 */
75 public static function getSeverityList() {
76 return self::$severityList;
77 }
78
1248c859 79 /**
f608a24a 80 * Display daily system status alerts (admin only).
1248c859 81 */
f608a24a 82 public function showPeriodicAlerts() {
f55dd135 83 if (CRM_Core_Permission::check('administer CiviCRM')) {
1248c859
TO
84 $session = CRM_Core_Session::singleton();
85 if ($session->timer('check_' . __CLASS__, self::CHECK_TIMER)) {
86
87 // Best attempt at re-securing folders
88 $config = CRM_Core_Config::singleton();
89 $config->cleanup(0, FALSE);
90
be2fb01f 91 $statusMessages = [];
f608a24a
CW
92 $maxSeverity = 0;
93 foreach ($this->checkAll() as $message) {
00eef683
AH
94 if (!$message->isVisible()) {
95 continue;
96 }
f608a24a
CW
97 if ($message->getLevel() >= 3) {
98 $maxSeverity = max($maxSeverity, $message->getLevel());
47e2b515
AH
99 $statusMessage = $message->getMessage();
100 $statusMessages[] = $statusTitle = $message->getTitle();
f0f49b45 101 }
1248c859 102 }
848577e3 103
f608a24a 104 if ($statusMessages) {
848577e3 105 if (count($statusMessages) > 1) {
f608a24a
CW
106 $statusTitle = self::toStatusLabel($maxSeverity);
107 $statusMessage = '<ul><li>' . implode('</li><li>', $statusMessages) . '</li></ul>';
848577e3 108 }
1b366958 109
f608a24a
CW
110 $statusMessage .= '<p><a href="' . CRM_Utils_System::url('civicrm/a/#/status') . '">' . ts('View details and manage alerts') . '</a></p>';
111
112 $statusType = $maxSeverity >= 4 ? 'error' : 'alert';
77fe66d6 113 CRM_Core_Session::setStatus($statusMessage, $statusTitle, $statusType);
848577e3 114 }
1248c859
TO
115 }
116 }
117 }
118
1b366958
AH
119 /**
120 * Sort messages based upon severity
121 *
122 * @param CRM_Utils_Check_Message $a
123 * @param CRM_Utils_Check_Message $b
fd66a333 124 * @return int
1b366958 125 */
7d029160 126 public static function severitySort($a, $b) {
fe8bdad8
CW
127 $aSeverity = $a->getLevel();
128 $bSeverity = $b->getLevel();
1b366958 129 if ($aSeverity == $bSeverity) {
47e2b515 130 return strcmp($a->getName(), $b->getName());
1b366958 131 }
4f2714af
J
132 // The Message constructor guarantees that these will always be integers.
133 return ($aSeverity < $bSeverity);
1b366958
AH
134 }
135
f0f49b45 136 /**
6ea8408d 137 * Get the integer value (useful for thresholds) of the severity.
f0f49b45 138 *
3860d465 139 * @param int|string $severity
6ea8408d
AH
140 * the value to look up
141 * @param bool $reverse
142 * whether to find the constant from the integer
3860d465
CW
143 * @return string|int
144 * @throws \CRM_Core_Exception
f0f49b45 145 */
6ea8408d 146 public static function severityMap($severity, $reverse = FALSE) {
3860d465
CW
147 if ($reverse) {
148 if (isset(self::$severityList[$severity])) {
149 return self::$severityList[$severity];
150 }
151 }
152 else {
153 // Lowercase string-based severities
bc84da84 154 $severity = strtolower($severity);
3860d465
CW
155 if (in_array($severity, self::$severityList)) {
156 return array_search($severity, self::$severityList);
157 }
bc84da84 158 }
3860d465 159 throw new CRM_Core_Exception('Invalid PSR Severity Level');
f0f49b45
TO
160 }
161
c0bc3902 162 /**
fe482240 163 * Throw an exception if any of the checks fail.
7c42ee33 164 *
c3850204
CW
165 * @param array|NULL $messages
166 * [CRM_Utils_Check_Message]
167 * @param string $threshold
f4aaa82a 168 *
c3850204
CW
169 * @throws \CRM_Core_Exception
170 * @throws \Exception
c0bc3902 171 */
c3850204 172 public function assertValid($messages = NULL, $threshold = \Psr\Log\LogLevel::ERROR) {
7c42ee33
TO
173 if ($messages === NULL) {
174 $messages = $this->checkAll();
175 }
c3850204 176 $minLevel = self::severityMap($threshold);
be2fb01f 177 $errors = [];
c3850204
CW
178 foreach ($messages as $message) {
179 if ($message->getLevel() >= $minLevel) {
180 $errors[] = $message->toArray();
c0bc3902 181 }
c3850204
CW
182 }
183 if ($errors) {
184 throw new Exception("System $threshold: " . print_r($errors, TRUE));
c0bc3902
TO
185 }
186 }
187
1248c859 188 /**
5f3c0af5 189 * Run all system checks.
1248c859 190 *
5f3c0af5 191 * This functon is wrapped by the System.check api.
1248c859 192 *
5f3c0af5
CW
193 * Calls hook_civicrm_check() for extensions to add or modify messages.
194 * @link http://wiki.civicrm.org/confluence/display/CRMDOC/hook_civicrm_check
1248c859 195 *
7d029160
NM
196 * @param bool $max
197 * Whether to return just the maximum non-hushed severity
198 *
a6c01b45 199 * @return array
5f3c0af5 200 * Array of CRM_Utils_Check_Message objects
1248c859 201 */
7d029160 202 public static function checkAll($max = FALSE) {
be2fb01f 203 $messages = [];
3a0d0bbd
CW
204 foreach (glob(__DIR__ . '/Check/Component/*.php') as $filePath) {
205 $className = 'CRM_Utils_Check_Component_' . basename($filePath, '.php');
206 /* @var CRM_Utils_Check_Component $check */
207 $check = new $className();
208 if ($check->isEnabled()) {
209 $messages = array_merge($messages, $check->checkAll());
210 }
2aa3d7ab 211 }
260e353b
TO
212
213 CRM_Utils_Hook::check($messages);
214
be2fb01f 215 uasort($messages, [__CLASS__, 'severitySort']);
47e2b515 216
7d029160
NM
217 $maxSeverity = 1;
218 foreach ($messages as $message) {
219 if (!$message->isVisible()) {
220 continue;
221 }
222 $maxSeverity = max(1, $message->getLevel());
223 break;
224 }
225
b1fc1ab0 226 Civi::cache('checks')->set('systemStatusCheckResult', $maxSeverity);
7d029160
NM
227
228 return ($max) ? $maxSeverity : $messages;
1248c859
TO
229 }
230
f608a24a
CW
231 /**
232 * @param int $level
233 * @return string
234 */
235 public static function toStatusLabel($level) {
236 switch ($level) {
237 case 7:
238 return ts('System Status: Emergency');
239
240 case 6:
241 return ts('System Status: Alert');
242
243 case 5:
244 return ts('System Status: Critical');
245
246 case 4:
247 return ts('System Status: Error');
248
249 case 3:
250 return ts('System Status: Warning');
251
252 case 2:
253 return ts('System Status: Notice');
254
255 default:
256 return ts('System Status: Ok');
257 }
258 }
259
f4aaa82a 260}