Comment fixes for CRM/Utils directory
[civicrm-core.git] / CRM / Utils / Check / Case.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2015
32 */
33 class CRM_Utils_Check_Case {
34
35 /**
36 * @var CRM_Case_XMLRepository
37 */
38 protected $xmlRepo;
39
40 /**
41 * @var array<string>
42 */
43 protected $caseTypeNames;
44
45 /**
46 * @param CRM_Case_XMLRepository $xmlRepo
47 * @param array <string> $caseTypeNames
48 */
49 public function __construct($xmlRepo, $caseTypeNames) {
50 $this->caseTypeNames = $caseTypeNames;
51 $this->xmlRepo = $xmlRepo;
52 }
53
54 /**
55 * Run some sanity checks.
56 *
57 * @return array<CRM_Utils_Check_Message>
58 */
59 public function checkAll() {
60 $messages = array_merge(
61 $this->checkCaseTypeNameConsistency()
62 );
63 return $messages;
64 }
65
66 /**
67 * Check that the case-type names don't rely on double-munging.
68 *
69 * @return array<CRM_Utils_Check_Message> an empty array, or a list of warnings
70 */
71 public function checkCaseTypeNameConsistency() {
72 $messages = array();
73
74 foreach ($this->caseTypeNames as $caseTypeName) {
75 $normalFile = $this->xmlRepo->findXmlFile($caseTypeName);
76 $mungedFile = $this->xmlRepo->findXmlFile(CRM_Case_XMLProcessor::mungeCaseType($caseTypeName));
77
78 if ($normalFile && $mungedFile && $normalFile == $mungedFile) {
79 // ok
80 }
81 elseif ($normalFile && $mungedFile) {
82 $messages[] = new CRM_Utils_Check_Message(
83 __FUNCTION__,
84 ts('Case type "%2" has duplicate XML files ("%3" and "%4").<br /><a href="%1">Read more about this warning</a>', array(
85 1 => CRM_Utils_System::getWikiBaseURL() . __FUNCTION__,
86 2 => $caseTypeName,
87 3 => $normalFile,
88 4 => $mungedFile,
89 )),
90 ts('CiviCase')
91 );
92 }
93 elseif ($normalFile && !$mungedFile) {
94 // ok
95 }
96 elseif (!$normalFile && $mungedFile) {
97 $messages[] = new CRM_Utils_Check_Message(
98 __FUNCTION__,
99 ts('Case type "%2" corresponds to XML file ("%3") The XML file should be named "%4".<br /><a href="%1">Read more about this warning</a>', array(
100 1 => CRM_Utils_System::getWikiBaseURL() . __FUNCTION__,
101 2 => $caseTypeName,
102 3 => $mungedFile,
103 4 => "{$caseTypeName}.xml",
104 )),
105 ts('CiviCase')
106 );
107 }
108 elseif (!$normalFile && !$mungedFile) {
109 // ok -- probably a new or DB-based CaseType
110 }
111 }
112
113 return $messages;
114 }
115
116 }