Merge pull request #2435 from davecivicrm/CRM-13833
[civicrm-core.git] / CRM / Case / Page / AJAX.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 *
33 */
34
35 /**
36 * This class contains all case related functions that are called using AJAX (jQuery)
37 */
38 class CRM_Case_Page_AJAX {
39
40 /**
41 * Retrieve unclosed cases.
42 */
43 static function unclosedCases() {
44 $criteria = explode('-', CRM_Utils_Type::escape(CRM_Utils_Array::value('s', $_GET), 'String'));
45
46 $limit = CRM_Utils_Array::value('limit', $_GET);
47 if ($limit) {
48 $limit = CRM_Utils_Type::escape($limit, 'Integer');
49 }
50
51 $params = array(
52 'limit' => $limit,
53 'case_type' => trim(CRM_Utils_Array::value(1, $criteria)),
54 'sort_name' => trim(CRM_Utils_Array::value(0, $criteria)),
55 );
56
57 $excludeCaseIds = array();
58 if ($caseIdStr = CRM_Utils_Array::value('excludeCaseIds', $_GET)) {
59 $excludeIdStr = CRM_Utils_Type::escape($caseIdStr, 'String');
60 $excludeCaseIds = explode(',', $excludeIdStr);
61 }
62 $unclosedCases = CRM_Case_BAO_Case::getUnclosedCases($params, $excludeCaseIds);
63 $results = array();
64 foreach ($unclosedCases as $caseId => $details) {
65 $results["$caseId|" . $details['contact_id'] . '|' . $details['case_type'] . '|' . $details['sort_name']] = $details['sort_name'] . ' (' . $details['case_type'] . ': ' . $details['case_subject'] . ')';
66 }
67 CRM_Core_Page_AJAX::autocompleteResults($results);
68 }
69
70 function processCaseTags() {
71
72 $caseId = CRM_Utils_Type::escape($_POST['case_id'], 'Integer');
73 $tags = CRM_Utils_Type::escape($_POST['tag'], 'String');
74 $tagList = $_POST['taglist'];
75
76 if (empty($caseId)) {
77 echo 'false';
78 CRM_Utils_System::civiExit();
79 }
80
81 $tagIds = array();
82 if ($tags) {
83 $tagIds = explode(',', $tags);
84 }
85
86 if (!empty($tagIds)) {
87 $params = array(
88 'entity_id' => $caseId,
89 'entity_table' => 'civicrm_case',
90 );
91
92 CRM_Core_BAO_EntityTag::del($params);
93
94 foreach ($tagIds as $tagid) {
95 if (is_numeric($tagid)) {
96 $params['tag_id'] = $tagid;
97 CRM_Core_BAO_EntityTag::add($params);
98 }
99 }
100 }
101
102 if (!empty($tagList)) {
103 CRM_Core_Form_Tag::postProcess($tagList, $caseId, 'civicrm_case', CRM_Core_DAO::$_nullObject);
104 }
105
106 $session = CRM_Core_Session::singleton();
107
108 $activityParams = array();
109 $activityParams['source_contact_id'] = $session->get('userID');
110 $activityParams['activity_type_id'] = CRM_Core_OptionGroup::getValue('activity_type', 'Change Case Tags', 'name');
111 $activityParams['activity_date_time'] = date('YmdHis');
112 $activityParams['status_id'] = CRM_Core_OptionGroup::getValue('activity_status', 'Completed', 'name');
113 $activityParams['case_id'] = $caseId;
114 $activityParams['is_auto'] = 0;
115 $activityParams['subject'] = 'Change Case Tags';
116
117 $activity = CRM_Activity_BAO_Activity::create($activityParams);
118
119 $caseParams = array(
120 'activity_id' => $activity->id,
121 'case_id' => $caseId,
122 );
123
124 CRM_Case_BAO_Case::processCaseActivity($caseParams);
125
126 echo 'true';
127 CRM_Utils_System::civiExit();
128 }
129
130 function caseDetails() {
131 $caseId = CRM_Utils_Type::escape($_GET['caseId'], 'Integer');
132 $sql = "SELECT * FROM civicrm_case where id = %1";
133 $dao = CRM_Core_DAO::executeQuery($sql, array(1 => array($caseId, 'Integer')));
134
135 if ($dao->fetch()) {
136 $caseType = CRM_Case_BAO_Case::getCaseType((str_replace(CRM_Core_DAO::VALUE_SEPARATOR,
137 "",
138 $dao->case_type_id
139 )));
140 $caseStatuses = CRM_Case_PseudoConstant::caseStatus();
141 $cs = $caseStatuses[$dao->status_id];
142 $caseDetails = "<table><tr><td>" . ts('Case Subject') . "</td><td>{$dao->subject}</td></tr>
143 <tr><td>" . ts('Case Type') . "</td><td>{$caseType}</td></tr>
144 <tr><td>" . ts('Case Status') . "</td><td>{$cs}</td></tr>
145 <tr><td>" . ts('Case Start Date') . "</td><td>" . CRM_Utils_Date::customFormat($dao->start_date) . "</td></tr>
146 <tr><td>" . ts('Case End Date') . "</td><td></td></tr>" . CRM_Utils_Date::customFormat($dao->end_date) . "</table>";
147 echo $caseDetails;
148 }
149 else {
150 echo ts('Could not find valid Case!');
151 }
152 CRM_Utils_System::civiExit();
153 }
154
155 function addClient() {
156 $caseId = CRM_Utils_Type::escape($_POST['caseID'], 'Integer');
157 $contactId = CRM_Utils_Type::escape($_POST['contactID'], 'Integer');
158
159 $params = array(
160 'case_id' => $caseId,
161 'contact_id' => $contactId,
162 );
163
164 CRM_Case_BAO_Case::addCaseToContact($params);
165
166 // add case relationships
167 CRM_Case_BAO_Case::addCaseRelationships($caseId, $contactId);
168
169 $session = CRM_Core_Session::singleton();
170
171 $activityParams = array();
172 $activityParams['source_contact_id'] = $session->get('userID');
173 $activityParams['activity_type_id'] = CRM_Core_OptionGroup::getValue('activity_type', 'Add Client To Case', 'name');
174 $activityParams['activity_date_time'] = date('YmdHis');
175 $activityParams['status_id'] = CRM_Core_OptionGroup::getValue('activity_status', 'Completed', 'name');
176 $activityParams['case_id'] = $caseId;
177 $activityParams['is_auto'] = 0;
178 $activityParams['subject'] = 'Client Added To Case';
179
180 $activity = CRM_Activity_BAO_Activity::create($activityParams);
181
182 $caseParams = array(
183 'activity_id' => $activity->id,
184 'case_id' => $caseId,
185 );
186
187 CRM_Case_BAO_Case::processCaseActivity($caseParams);
188 echo json_encode(TRUE);
189 CRM_Utils_System::civiExit();
190 }
191
192 /**
193 * Function to delete relationships specific to case and relationship type
194 */
195 static function deleteCaseRoles() {
196 $caseId = CRM_Utils_Type::escape($_POST['case_id'], 'Integer');
197 $relType = CRM_Utils_Type::escape($_POST['rel_type'], 'Integer');
198
199 $sql = "DELETE FROM civicrm_relationship WHERE case_id={$caseId} AND relationship_type_id={$relType}";
200 CRM_Core_DAO::executeQuery($sql);
201
202 CRM_Utils_System::civiExit();
203 }
204 }
205