Merge pull request #13258 from eileenmcnaughton/isam
[civicrm-core.git] / CRM / Campaign / BAO / Survey.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
6a488035
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 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035 32 */
4c6ce474
EM
33
34/**
df371444 35 * Class CRM_Campaign_BAO_Survey.
4c6ce474 36 */
6a488035
TO
37class CRM_Campaign_BAO_Survey extends CRM_Campaign_DAO_Survey {
38
39 /**
fe482240
EM
40 * Retrieve DB object based on input parameters.
41 *
42 * It also stores all the retrieved values in the default array.
6a488035 43 *
7aaf6db0
TO
44 * @param array $params
45 * (reference ) an assoc array of name/value pairs.
46 * @param array $defaults
47 * (reference ) an assoc array to hold the flattened values.
77b97be7 48 *
c490a46a 49 * @return CRM_Campaign_DAO_Survey|null
6a488035 50 */
00be9182 51 public static function retrieve(&$params, &$defaults) {
6a488035
TO
52 $dao = new CRM_Campaign_DAO_Survey();
53
54 $dao->copyValues($params);
55
56 if ($dao->find(TRUE)) {
57 CRM_Core_DAO::storeValues($dao, $defaults);
58 return $dao;
59 }
60 return NULL;
61 }
62
63 /**
86950de8
SM
64 * Takes an associative array and creates a Survey object based on the
65 * supplied values.
6a488035 66 *
c490a46a 67 * @param array $params
77b97be7 68 *
86950de8 69 * @return bool|CRM_Campaign_DAO_Survey
6a488035 70 */
00be9182 71 public static function create(&$params) {
6a488035 72 if (empty($params)) {
5c2ea586 73 return FALSE;
6a488035
TO
74 }
75
a7488080 76 if (!empty($params['is_default'])) {
6a488035 77 $query = "UPDATE civicrm_survey SET is_default = 0";
33621c4f 78 CRM_Core_DAO::executeQuery($query);
6a488035
TO
79 }
80
81 if (!(CRM_Utils_Array::value('id', $params))) {
82
83 if (!(CRM_Utils_Array::value('created_id', $params))) {
84 $session = CRM_Core_Session::singleton();
85 $params['created_id'] = $session->get('userID');
86 }
87 if (!(CRM_Utils_Array::value('created_date', $params))) {
88 $params['created_date'] = date('YmdHis');
89 }
86950de8
SM
90
91 CRM_Utils_Hook::pre('create', 'Survey', NULL, $params);
92 }
93 else {
94 CRM_Utils_Hook::pre('edit', 'Survey', $params['id'], $params);
6a488035
TO
95 }
96
97 $dao = new CRM_Campaign_DAO_Survey();
98 $dao->copyValues($params);
99 $dao->save();
100
86950de8
SM
101 if (!empty($params['id'])) {
102 CRM_Utils_Hook::post('edit', 'Survey', $dao->id, $dao);
103 }
104 else {
105 CRM_Utils_Hook::post('create', 'Survey', $dao->id, $dao);
106 }
107
a7488080 108 if (!empty($params['custom']) &&
6a488035
TO
109 is_array($params['custom'])
110 ) {
111 CRM_Core_BAO_CustomValueTable::store($params['custom'], 'civicrm_survey', $dao->id);
112 }
113 return $dao;
114 }
115
116 /**
100fef9d 117 * Retrieve surveys for dashboard.
6a488035 118 *
ad37ac8e 119 * @param array $params
120 * @param bool $onlyCount
121 *
122 * @return array|int
6a488035 123 */
00be9182 124 public static function getSurveySummary($params = array(), $onlyCount = FALSE) {
6a488035
TO
125 //build the limit and order clause.
126 $limitClause = $orderByClause = $lookupTableJoins = NULL;
127 if (!$onlyCount) {
128 $sortParams = array(
129 'sort' => 'created_date',
130 'offset' => 0,
131 'rowCount' => 10,
132 'sortOrder' => 'desc',
133 );
134 foreach ($sortParams as $name => $default) {
a7488080 135 if (!empty($params[$name])) {
6a488035
TO
136 $sortParams[$name] = $params[$name];
137 }
138 }
139
140 //need to lookup tables.
141 $orderOnSurveyTable = TRUE;
142 if ($sortParams['sort'] == 'campaign') {
143 $orderOnSurveyTable = FALSE;
144 $lookupTableJoins = '
145 LEFT JOIN civicrm_campaign campaign ON ( campaign.id = survey.campaign_id )';
146 $orderByClause = "ORDER BY campaign.title {$sortParams['sortOrder']}";
147 }
148 elseif ($sortParams['sort'] == 'activity_type') {
149 $orderOnSurveyTable = FALSE;
150 $lookupTableJoins = "
91da6cd5 151 LEFT JOIN civicrm_option_value activity_type ON ( activity_type.value = survey.activity_type_id
6a488035
TO
152 OR survey.activity_type_id IS NULL )
153INNER JOIN civicrm_option_group grp ON ( activity_type.option_group_id = grp.id AND grp.name = 'activity_type' )";
154 $orderByClause = "ORDER BY activity_type.label {$sortParams['sortOrder']}";
155 }
156 elseif ($sortParams['sort'] == 'isActive') {
157 $sortParams['sort'] = 'is_active';
158 }
159 if ($orderOnSurveyTable) {
160 $orderByClause = "ORDER BY survey.{$sortParams['sort']} {$sortParams['sortOrder']}";
161 }
162 $limitClause = "LIMIT {$sortParams['offset']}, {$sortParams['rowCount']}";
163 }
164
165 //build the where clause.
166 $queryParams = $where = array();
167
168 //we only have activity type as a
169 //difference between survey and petition.
0571e734 170 $petitionTypeID = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'Petition');
6a488035
TO
171 if ($petitionTypeID) {
172 $where[] = "( survey.activity_type_id != %1 )";
173 $queryParams[1] = array($petitionTypeID, 'Positive');
174 }
175
a7488080 176 if (!empty($params['title'])) {
6a488035
TO
177 $where[] = "( survey.title LIKE %2 )";
178 $queryParams[2] = array('%' . trim($params['title']) . '%', 'String');
179 }
a7488080 180 if (!empty($params['campaign_id'])) {
6a488035
TO
181 $where[] = '( survey.campaign_id = %3 )';
182 $queryParams[3] = array($params['campaign_id'], 'Positive');
183 }
a7488080 184 if (!empty($params['activity_type_id'])) {
6a488035
TO
185 $typeId = $params['activity_type_id'];
186 if (is_array($params['activity_type_id'])) {
187 $typeId = implode(' , ', $params['activity_type_id']);
188 }
189 $where[] = "( survey.activity_type_id IN ( {$typeId} ) )";
190 }
191 $whereClause = NULL;
192 if (!empty($where)) {
193 $whereClause = ' WHERE ' . implode(" \nAND ", $where);
194 }
195
196 $selectClause = '
197SELECT survey.id as id,
198 survey.title as title,
199 survey.is_active as is_active,
200 survey.result_id as result_id,
201 survey.is_default as is_default,
202 survey.campaign_id as campaign_id,
203 survey.activity_type_id as activity_type_id,
204 survey.release_frequency as release_frequency,
205 survey.max_number_of_contacts as max_number_of_contacts,
206 survey.default_number_of_contacts as default_number_of_contacts';
207 if ($onlyCount) {
208 $selectClause = 'SELECT COUNT(*)';
209 }
210 $fromClause = 'FROM civicrm_survey survey';
211
212 $query = "{$selectClause} {$fromClause} {$lookupTableJoins} {$whereClause} {$orderByClause} {$limitClause}";
213
214 //return only count.
215 if ($onlyCount) {
5c2ea586 216 return (int) CRM_Core_DAO::singleValueQuery($query, $queryParams);
6a488035
TO
217 }
218
219 $surveys = array();
220 $properties = array(
353ffa53
TO
221 'id',
222 'title',
223 'campaign_id',
224 'is_active',
225 'is_default',
226 'result_id',
227 'activity_type_id',
228 'release_frequency',
229 'max_number_of_contacts',
230 'default_number_of_contacts',
6a488035
TO
231 );
232
233 $survey = CRM_Core_DAO::executeQuery($query, $queryParams);
234 while ($survey->fetch()) {
235 foreach ($properties as $property) {
236 $surveys[$survey->id][$property] = $survey->$property;
237 }
238 }
239
240 return $surveys;
241 }
242
243 /**
244 * Get the survey count.
245 *
6a488035 246 */
00be9182 247 public static function getSurveyCount() {
5c2ea586 248 return (int) CRM_Core_DAO::singleValueQuery('SELECT COUNT(*) FROM civicrm_survey');
6a488035
TO
249 }
250
251 /**
fe482240 252 * Get Surveys.
6a488035 253 *
7aaf6db0
TO
254 * @param bool $onlyActive
255 * Retrieve only active surveys.
256 * @param bool $onlyDefault
257 * Retrieve only default survey.
258 * @param bool $forceAll
259 * Retrieve all surveys.
260 * @param bool $includePetition
261 * Include or exclude petitions.
6a488035 262 *
6a488035 263 */
5c2ea586 264 public static function getSurveys($onlyActive = TRUE, $onlyDefault = FALSE, $forceAll = FALSE, $includePetition = FALSE) {
6a488035 265 $cacheKey = 0;
9231464f 266 $cacheKeyParams = array('onlyActive', 'onlyDefault', 'forceAll', 'includePetition');
6a488035
TO
267 foreach ($cacheKeyParams as $param) {
268 $cacheParam = $$param;
269 if (!$cacheParam) {
270 $cacheParam = 0;
271 }
272 $cacheKey .= '_' . $cacheParam;
273 }
274
275 static $surveys;
276
277 if (!isset($surveys[$cacheKey])) {
9231464f
KJ
278 if (!$includePetition) {
279 //we only have activity type as a
280 //difference between survey and petition.
d66c61b6 281 $petitionTypeID = CRM_Core_PseudoConstant::getKey('CRM_Activity_BAO_Activity', 'activity_type_id', 'petition');
6a488035 282
9231464f
KJ
283 $where = array();
284 if ($petitionTypeID) {
285 $where[] = "( survey.activity_type_id != {$petitionTypeID} )";
286 }
6a488035
TO
287 }
288 if (!$forceAll && $onlyActive) {
289 $where[] = '( survey.is_active = 1 )';
290 }
291 if (!$forceAll && $onlyDefault) {
292 $where[] = '( survey.is_default = 1 )';
293 }
294 $whereClause = implode(' AND ', $where);
295
296 $query = "
297SELECT survey.id as id,
298 survey.title as title
299 FROM civicrm_survey as survey
300 WHERE {$whereClause}";
301 $surveys[$cacheKey] = array();
302 $survey = CRM_Core_DAO::executeQuery($query);
303 while ($survey->fetch()) {
304 $surveys[$cacheKey][$survey->id] = $survey->title;
305 }
306 }
307
308 return $surveys[$cacheKey];
309 }
310
311 /**
8d7a9d07 312 * Get Survey activity types.
ea3ddccf 313 *
314 * @param string $returnColumn
315 * @param bool $includePetitionActivityType
dbb0d30b 316 *
317 * @return string
6a488035 318 */
8d7a9d07 319 public static function getSurveyActivityType($returnColumn = 'label', $includePetitionActivityType = FALSE) {
6a488035
TO
320 static $activityTypes;
321 $cacheKey = "{$returnColumn}_{$includePetitionActivityType}";
322
323 if (!isset($activityTypes[$cacheKey])) {
324 $activityTypes = array();
325 $campaignCompId = CRM_Core_Component::getComponentID('CiviCampaign');
326 if ($campaignCompId) {
327 $condition = " AND v.component_id={$campaignCompId}";
328 if (!$includePetitionActivityType) {
329 $condition .= " AND v.name != 'Petition'";
330 }
331 $activityTypes[$cacheKey] = CRM_Core_OptionGroup::values('activity_type',
332 FALSE, FALSE, FALSE,
333 $condition,
334 $returnColumn
335 );
336 }
337 }
7b60d5b9 338 if (!empty($activityTypes[$cacheKey])) {
339 return $activityTypes[$cacheKey];
340 }
341 else {
342 return;
343 }
6a488035
TO
344 }
345
346 /**
fe482240 347 * Get Surveys custom groups.
6a488035 348 *
5a4f6742
CW
349 * @param array $surveyTypes
350 * an array of survey type id.
6a488035 351 *
77b97be7 352 * @return array
6a488035 353 */
00be9182 354 public static function getSurveyCustomGroups($surveyTypes = array()) {
6a488035
TO
355 $customGroups = array();
356 if (!is_array($surveyTypes)) {
357 $surveyTypes = array($surveyTypes);
358 }
359
360 if (!empty($surveyTypes)) {
361 $activityTypes = array_flip($surveyTypes);
362 }
363 else {
364 $activityTypes = self::getSurveyActivityType();
365 }
366
367 if (!empty($activityTypes)) {
368 $extendSubType = implode('[[:>:]]|[[:<:]]', array_keys($activityTypes));
369
370 $query = "SELECT cg.id, cg.name, cg.title, cg.extends_entity_column_value
371 FROM civicrm_custom_group cg
372 WHERE cg.is_active = 1 AND cg.extends_entity_column_value REGEXP '[[:<:]]{$extendSubType}[[:>:]]'";
373
374 $dao = CRM_Core_DAO::executeQuery($query);
375 while ($dao->fetch()) {
376 $customGroups[$dao->id]['id'] = $dao->id;
377 $customGroups[$dao->id]['name'] = $dao->name;
378 $customGroups[$dao->id]['title'] = $dao->title;
379 $customGroups[$dao->id]['extends'] = $dao->extends_entity_column_value;
380 }
381 }
382
383 return $customGroups;
384 }
385
386 /**
fe482240 387 * Update the is_active flag in the db.
6a488035 388 *
7aaf6db0
TO
389 * @param int $id
390 * Id of the database record.
391 * @param bool $is_active
392 * Value we want to set the is_active field.
6a488035 393 *
8a4fede3 394 * @return bool
395 * true if we found and updated the object, else false
6a488035 396 */
00be9182 397 public static function setIsActive($id, $is_active) {
6a488035
TO
398 return CRM_Core_DAO::setFieldValue('CRM_Campaign_DAO_Survey', $id, 'is_active', $is_active);
399 }
400
401 /**
fe482240 402 * Delete the survey.
6a488035 403 *
7aaf6db0
TO
404 * @param int $id
405 * Survey id.
6a488035 406 *
77b97be7 407 * @return mixed|null
6a488035 408 */
00be9182 409 public static function del($id) {
6a488035
TO
410 if (!$id) {
411 return NULL;
412 }
413 $reportId = CRM_Campaign_BAO_Survey::getReportID($id);
9b873358 414 if ($reportId) {
0b25329b 415 CRM_Report_BAO_ReportInstance::del($reportId);
6a488035
TO
416 }
417 $dao = new CRM_Campaign_DAO_Survey();
418 $dao->id = $id;
419 return $dao->delete();
420 }
421
422 /**
423 * This function retrieve contact information.
424 *
c490a46a 425 * @param array $voterIds
7aaf6db0
TO
426 * @param array $returnProperties
427 * An array of return elements.
6a488035 428 *
a6c01b45
CW
429 * @return array
430 * array of contact info.
6a488035 431 */
00be9182 432 public static function voterDetails($voterIds, $returnProperties = array()) {
6a488035
TO
433 $voterDetails = array();
434 if (!is_array($voterIds) || empty($voterIds)) {
435 return $voterDetails;
436 }
437
438 if (empty($returnProperties)) {
439 $autocompleteContactSearch = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
440 'contact_autocomplete_options'
441 );
442 $returnProperties = array_fill_keys(array_merge(array(
353ffa53
TO
443 'contact_type',
444 'contact_sub_type',
445 'sort_name',
446 ),
447 array_keys($autocompleteContactSearch)
448 ), 1);
6a488035
TO
449 }
450
451 $select = $from = array();
452 foreach ($returnProperties as $property => $ignore) {
453 $value = (in_array($property, array(
353ffa53 454 'city',
8d7a9d07 455 'street_address',
353ffa53 456 ))) ? 'address' : $property;
6a488035
TO
457 switch ($property) {
458 case 'sort_name':
459 case 'contact_type':
460 case 'contact_sub_type':
461 $select[] = "$property as $property";
462 $from['contact'] = 'civicrm_contact contact';
463 break;
464
465 case 'email':
466 case 'phone':
467 case 'city':
468 case 'street_address':
469 $select[] = "$property as $property";
470 $from[$value] = "LEFT JOIN civicrm_{$value} {$value} ON ( contact.id = {$value}.contact_id AND {$value}.is_primary = 1 ) ";
471 break;
472
473 case 'country':
474 case 'state_province':
475 $select[] = "{$property}.name as $property";
476 if (!in_array('address', $from)) {
477 $from['address'] = 'LEFT JOIN civicrm_address address ON ( contact.id = address.contact_id AND address.is_primary = 1) ';
478 }
479 $from[$value] = " LEFT JOIN civicrm_{$value} {$value} ON ( address.{$value}_id = {$value}.id ) ";
480 break;
481 }
482 }
483
484 //finally retrieve contact details.
485 if (!empty($select) && !empty($from)) {
353ffa53 486 $fromClause = implode(' ', $from);
6a488035 487 $selectClause = implode(', ', $select);
353ffa53 488 $whereClause = "contact.id IN (" . implode(',', $voterIds) . ')';
6a488035
TO
489
490 $query = "
91da6cd5 491 SELECT contact.id as contactId, $selectClause
6a488035 492 FROM $fromClause
e5cceea5 493 WHERE $whereClause";
6a488035
TO
494
495 $contact = CRM_Core_DAO::executeQuery($query);
496 while ($contact->fetch()) {
497 $voterDetails[$contact->contactId]['contact_id'] = $contact->contactId;
498 foreach ($returnProperties as $property => $ignore) {
499 $voterDetails[$contact->contactId][$property] = $contact->$property;
500 }
5c2ea586 501 $image = CRM_Contact_BAO_Contact_Utils::getImage($contact->contact_sub_type ? $contact->contact_sub_type : $contact->contact_type,
6a488035
TO
502 FALSE,
503 $contact->contactId
504 );
505 $voterDetails[$contact->contactId]['contact_type'] = $image;
506 }
507 $contact->free();
508 }
509
510 return $voterDetails;
511 }
512
513 /**
514 * This function retrieve survey related activities w/ for give voter ids.
515 *
7aaf6db0
TO
516 * @param int $surveyId
517 * Survey id.
518 * @param array $voterIds
519 * VoterIds.
6a488035 520 *
100fef9d 521 * @param int $interviewerId
2a6da8d7
EM
522 * @param array $statusIds
523 *
a6c01b45
CW
524 * @return array
525 * array of survey activity.
6a488035 526 */
8d7a9d07 527 public static function voterActivityDetails($surveyId, $voterIds, $interviewerId = NULL, $statusIds = array()) {
6a488035
TO
528 $activityDetails = array();
529 if (!$surveyId ||
530 !is_array($voterIds) || empty($voterIds)
531 ) {
532 return $activityDetails;
533 }
534
535 $whereClause = NULL;
536 if (is_array($statusIds) && !empty($statusIds)) {
537 $whereClause = ' AND ( activity.status_id IN ( ' . implode(',', array_values($statusIds)) . ' ) )';
538 }
539
6a488035 540 $targetContactIds = ' ( ' . implode(',', $voterIds) . ' ) ';
44f817d4 541 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
9e74e3ce 542 $assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
543 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
8ef12e64 544
64e716d7 545 $params[1] = array($surveyId, 'Integer');
91da6cd5
DL
546 $query = "
547 SELECT activity.id, activity.status_id,
baf8a079 548 activityTarget.contact_id as voter_id,
549 activityAssignment.contact_id as interviewer_id
6a488035 550 FROM civicrm_activity activity
91da6cd5 551INNER JOIN civicrm_activity_contact activityTarget
9e74e3ce 552 ON ( activityTarget.activity_id = activity.id AND activityTarget.record_type_id = $targetID )
91da6cd5 553INNER JOIN civicrm_activity_contact activityAssignment
9e74e3ce 554 ON ( activityAssignment.activity_id = activity.id AND activityAssignment.record_type_id = $assigneeID )
6a488035 555 WHERE activity.source_record_id = %1
64e716d7 556 AND ( activity.is_deleted IS NULL OR activity.is_deleted = 0 ) ";
22e263ad 557 if (!empty($interviewerId)) {
64e716d7
JM
558 $query .= "AND activityAssignment.contact_id = %2 ";
559 $params[2] = array($interviewerId, 'Integer');
560 }
561 $query .= "AND activityTarget.contact_id IN {$targetContactIds}
6a488035 562 $whereClause";
77b97be7 563 $activity = CRM_Core_DAO::executeQuery($query, $params);
6a488035
TO
564 while ($activity->fetch()) {
565 $activityDetails[$activity->voter_id] = array(
566 'voter_id' => $activity->voter_id,
567 'status_id' => $activity->status_id,
568 'activity_id' => $activity->id,
569 'interviewer_id' => $activity->interviewer_id,
570 );
571 }
572
573 return $activityDetails;
574 }
575
576 /**
577 * This function retrieve survey related activities.
578 *
7aaf6db0 579 * @param int $surveyId
100fef9d 580 * @param int $interviewerId
f220017a
CW
581 * @param array $statusIds
582 * @param array $voterIds
2a6da8d7 583 * @param bool $onlyCount
f220017a
CW
584 *
585 * @return array
586 * An array of survey activity.
6a488035 587 */
8d7a9d07 588 public static function getSurveyActivities(
5c2ea586 589 $surveyId,
6a488035 590 $interviewerId = NULL,
5c2ea586
TO
591 $statusIds = NULL,
592 $voterIds = NULL,
593 $onlyCount = FALSE
6a488035
TO
594 ) {
595 $activities = array();
596 $surveyActivityCount = 0;
597 if (!$surveyId) {
598 return ($onlyCount) ? 0 : $activities;
599 }
600
601 $where = array();
602 if (!empty($statusIds)) {
603 $where[] = '( activity.status_id IN ( ' . implode(',', array_values($statusIds)) . ' ) )';
604 }
605
606 if ($interviewerId) {
5161d8be 607 $where[] = "( activityAssignment.contact_id = $interviewerId )";
6a488035
TO
608 }
609
610 if (!empty($voterIds)) {
5161d8be 611 $where[] = "( activityTarget.contact_id IN ( " . implode(',', $voterIds) . " ) )";
6a488035
TO
612 }
613
614 $whereClause = NULL;
615 if (!empty($where)) {
616 $whereClause = ' AND ( ' . implode(' AND ', $where) . ' )';
617 }
618
619 $actTypeId = CRM_Core_DAO::getFieldValue('CRM_Campaign_DAO_Survey', $surveyId, 'activity_type_id');
620 if (!$actTypeId) {
621 return $activities;
622 }
623
624 if ($onlyCount) {
625 $select = "SELECT count(activity.id)";
626 }
627 else {
628 $select = "
91da6cd5 629 SELECT activity.id, activity.status_id,
5161d8be 630 activityTarget.contact_id as voter_id,
631 activityAssignment.contact_id as interviewer_id,
6a488035
TO
632 activity.result as result,
633 activity.activity_date_time as activity_date_time,
634 contact_a.display_name as voter_name";
635 }
636
44f817d4 637 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
9e74e3ce 638 $assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
639 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
640
6a488035
TO
641 $query = "
642 $select
643 FROM civicrm_activity activity
91da6cd5 644INNER JOIN civicrm_activity_contact activityTarget
9e74e3ce 645 ON ( activityTarget.activity_id = activity.id AND activityTarget.record_type_id = $targetID )
91da6cd5 646INNER JOIN civicrm_activity_contact activityAssignment
9e74e3ce 647 ON ( activityAssignment.activity_id = activity.id AND activityAssignment.record_type_id = $assigneeID )
91da6cd5 648INNER JOIN civicrm_contact contact_a ON ( activityTarget.contact_id = contact_a.id )
6a488035
TO
649 WHERE activity.source_record_id = %1
650 AND activity.activity_type_id = %2
651 AND ( activity.is_deleted IS NULL OR activity.is_deleted = 0 )
652 $whereClause";
653
5c2ea586 654 $params = array(
353ffa53 655 1 => array($surveyId, 'Integer'),
6a488035
TO
656 2 => array($actTypeId, 'Integer'),
657 );
658
659 if ($onlyCount) {
660 $dbCount = CRM_Core_DAO::singleValueQuery($query, $params);
661 return ($dbCount) ? $dbCount : 0;
662 }
663
664 $activity = CRM_Core_DAO::executeQuery($query, $params);
665
666 while ($activity->fetch()) {
667 $activities[$activity->id] = array(
668 'id' => $activity->id,
669 'voter_id' => $activity->voter_id,
670 'voter_name' => $activity->voter_name,
671 'status_id' => $activity->status_id,
672 'interviewer_id' => $activity->interviewer_id,
673 'result' => $activity->result,
21dfd5f5 674 'activity_date_time' => $activity->activity_date_time,
6a488035
TO
675 );
676 }
677
678 return $activities;
679 }
680
681 /**
dc195289 682 * Retrieve survey voter information.
6a488035 683 *
7aaf6db0
TO
684 * @param int $surveyId
685 * Survey id.
686 * @param int $interviewerId
687 * Interviewer id.
688 * @param array $statusIds
689 * Survey status ids.
6a488035 690 *
dc195289
CW
691 * @return array
692 * Survey related contact ids.
6a488035 693 */
5c2ea586 694 public static function getSurveyVoterInfo($surveyId, $interviewerId = NULL, $statusIds = array()) {
6a488035
TO
695 $voterIds = array();
696 if (!$surveyId) {
697 return $voterIds;
698 }
699
700 $cacheKey = $surveyId;
701 if ($interviewerId) {
702 $cacheKey .= "_{$interviewerId}";
703 }
704 if (is_array($statusIds) && !empty($statusIds)) {
705 $cacheKey = "{$cacheKey}_" . implode('_', $statusIds);
706 }
707
708 static $contactIds = array();
709 if (!isset($contactIds[$cacheKey])) {
710 $activities = self::getSurveyActivities($surveyId, $interviewerId, $statusIds);
711 foreach ($activities as $values) {
712 $voterIds[$values['voter_id']] = $values;
713 }
714 $contactIds[$cacheKey] = $voterIds;
715 }
716
717 return $contactIds[$cacheKey];
718 }
719
720 /**
fe482240 721 * This function retrieve all option groups which are created as a result set.
6a488035 722 *
2a6da8d7 723 * @param string $valueColumnName
a6c01b45
CW
724 * @return array
725 * an array of option groups.
6a488035 726 */
5c2ea586 727 public static function getResultSets($valueColumnName = 'title') {
6a488035
TO
728 $resultSets = array();
729 $valueColumnName = CRM_Utils_Type::escape($valueColumnName, 'String');
730
353ffa53
TO
731 $query = "SELECT id, {$valueColumnName} FROM civicrm_option_group WHERE name LIKE 'civicrm_survey_%' AND is_active=1";
732 $dao = CRM_Core_DAO::executeQuery($query);
6a488035
TO
733 while ($dao->fetch()) {
734 $resultSets[$dao->id] = $dao->$valueColumnName;
735 }
736
737 return $resultSets;
738 }
739
740 /**
dc195289 741 * check survey activity.
6a488035 742 *
7aaf6db0
TO
743 * @param int $activityId
744 * Activity id.
8d7a9d07 745 * @return bool
6a488035 746 */
00be9182 747 public static function isSurveyActivity($activityId) {
6a488035
TO
748 $isSurveyActivity = FALSE;
749 if (!$activityId) {
750 return $isSurveyActivity;
751 }
752
753 $activity = new CRM_Activity_DAO_Activity();
754 $activity->id = $activityId;
755 $activity->selectAdd('source_record_id, activity_type_id');
756 if ($activity->find(TRUE) &&
757 $activity->source_record_id
758 ) {
759 $surveyActTypes = self::getSurveyActivityType();
760 if (array_key_exists($activity->activity_type_id, $surveyActTypes)) {
761 $isSurveyActivity = TRUE;
762 }
763 }
764
765 return $isSurveyActivity;
766 }
767
768 /**
fe482240 769 * This function retrive all response options of survey.
6a488035 770 *
7aaf6db0
TO
771 * @param int $surveyId
772 * Survey id.
a6c01b45
CW
773 * @return array
774 * an array of option values
6a488035 775 */
00be9182 776 public static function getResponsesOptions($surveyId) {
6a488035
TO
777 $responseOptions = array();
778 if (!$surveyId) {
779 return $responseOptions;
780 }
781
782 $resultId = CRM_Core_DAO::getFieldValue('CRM_Campaign_DAO_Survey', $surveyId, 'result_id');
783 if ($resultId) {
784 $responseOptions = CRM_Core_OptionGroup::valuesByID($resultId);
785 }
786
787 return $responseOptions;
788 }
789
790 /**
fe482240 791 * This function return all voter links with respecting permissions.
6a488035 792 *
100fef9d 793 * @param int $surveyId
2a6da8d7
EM
794 * @param bool $enclosedInUL
795 * @param string $extraULName
72b3a70c
CW
796 * @return array|string
797 * $url array of permissioned links
6a488035 798 */
00be9182 799 public static function buildPermissionLinks($surveyId, $enclosedInUL = FALSE, $extraULName = 'more') {
6a488035
TO
800 $menuLinks = array();
801 if (!$surveyId) {
802 return $menuLinks;
803 }
804
805 static $voterLinks = array();
806 if (empty($voterLinks)) {
807 $permissioned = FALSE;
808 if (CRM_Core_Permission::check('manage campaign') ||
809 CRM_Core_Permission::check('administer CiviCampaign')
810 ) {
811 $permissioned = TRUE;
812 }
813
814 if ($permissioned || CRM_Core_Permission::check("reserve campaign contacts")) {
815 $voterLinks['reserve'] = array(
816 'name' => 'reserve',
817 'url' => 'civicrm/survey/search',
2db64250 818 'qs' => 'sid=%%id%%&reset=1&op=reserve',
6a488035
TO
819 'title' => ts('Reserve Respondents'),
820 );
821 }
822 if ($permissioned || CRM_Core_Permission::check("interview campaign contacts")) {
823 $voterLinks['release'] = array(
824 'name' => 'interview',
825 'url' => 'civicrm/survey/search',
826 'qs' => 'sid=%%id%%&reset=1&op=interview&force=1',
827 'title' => ts('Interview Respondents'),
828 );
829 }
830 if ($permissioned || CRM_Core_Permission::check("release campaign contacts")) {
831 $voterLinks['interview'] = array(
832 'name' => 'release',
833 'url' => 'civicrm/survey/search',
834 'qs' => 'sid=%%id%%&reset=1&op=release&force=1',
835 'title' => ts('Release Respondents'),
836 );
837 }
838 }
839
840 if (CRM_Core_Permission::check('access CiviReport')) {
841 $reportID = self::getReportID($surveyId);
842 if ($reportID) {
8d7a9d07
CB
843 $voterLinks['report'] = array(
844 'name' => 'report',
845 'url' => "civicrm/report/instance/{$reportID}",
846 'qs' => 'reset=1',
847 'title' => ts('View Survey Report'),
848 );
6a488035
TO
849 }
850 }
851
852 $ids = array('id' => $surveyId);
853 foreach ($voterLinks as $link) {
a7488080 854 if (!empty($link['qs']) &&
6a488035
TO
855 !CRM_Utils_System::isNull($link['qs'])
856 ) {
857 $urlPath = CRM_Utils_System::url(CRM_Core_Action::replace($link['url'], $ids),
858 CRM_Core_Action::replace($link['qs'], $ids)
859 );
a1c7d42f 860 $menuLinks[] = sprintf('<a href="%s" class="action-item crm-hover-button" title="%s">%s</a>',
6a488035
TO
861 $urlPath,
862 CRM_Utils_Array::value('title', $link),
863 $link['title']
864 );
865 }
866 }
867 if ($enclosedInUL) {
868 $extraLinksName = strtolower($extraULName);
869 $allLinks = '';
870 CRM_Utils_String::append($allLinks, '</li><li>', $menuLinks);
871 $allLinks = "$extraULName <ul id='panel_{$extraLinksName}_xx' class='panel'><li>{$allLinks}</li></ul>";
a1c7d42f 872 $menuLinks = "<span class='btn-slide crm-hover-button' id={$extraLinksName}_xx>{$allLinks}</span>";
6a488035
TO
873 }
874
875 return $menuLinks;
876 }
877
878 /**
100fef9d 879 * Retrieve survey associated profile id.
ad37ac8e 880 *
881 * @param int $surveyId
882 *
883 * @return mixed|null
6a488035
TO
884 */
885 public static function getSurveyProfileId($surveyId) {
886 if (!$surveyId) {
887 return NULL;
888 }
889
890 static $ufIds = array();
891 if (!array_key_exists($surveyId, $ufIds)) {
892 //get the profile id.
893 $ufJoinParams = array(
894 'entity_id' => $surveyId,
895 'entity_table' => 'civicrm_survey',
896 'module' => 'CiviCampaign',
897 );
91da6cd5 898
6a488035
TO
899 list($first, $second) = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams);
900
901 if ($first) {
91da6cd5 902 $ufIds[$surveyId] = array($first);
6a488035
TO
903 }
904 if ($second) {
91da6cd5 905 $ufIds[$surveyId][] = array_shift($second);
6a488035
TO
906 }
907 }
908
47dd4836 909 return CRM_Utils_Array::value($surveyId, $ufIds);
6a488035
TO
910 }
911
30c4e065 912 /**
100fef9d 913 * @param int $surveyId
30c4e065
EM
914 *
915 * @return mixed
916 */
6a488035
TO
917 public Static function getReportID($surveyId) {
918 static $reportIds = array();
919
920 if (!array_key_exists($surveyId, $reportIds)) {
921 $query = "SELECT MAX(id) as id FROM civicrm_report_instance WHERE name = %1";
5c2ea586 922 $reportID = CRM_Core_DAO::singleValueQuery($query, array(1 => array("survey_{$surveyId}", 'String')));
6a488035
TO
923 $reportIds[$surveyId] = $reportID;
924 }
925 return $reportIds[$surveyId];
926 }
927
928 /**
100fef9d 929 * Decides the contact type for given survey.
ea3ddccf 930 *
931 * @param int $surveyId
932 *
933 * @return null|string
6a488035
TO
934 */
935 public static function getSurveyContactType($surveyId) {
936 $contactType = NULL;
937
938 //apply filter of profile type on search.
939 $profileId = self::getSurveyProfileId($surveyId);
940 if ($profileId) {
941 $profileType = CRM_Core_BAO_UFField::getProfileType($profileId);
942 if (in_array($profileType, CRM_Contact_BAO_ContactType::basicTypes())) {
943 $contactType = $profileType;
944 }
945 }
946
947 return $contactType;
948 }
949
950 /**
fe482240 951 * Get survey supportable profile types.
6a488035
TO
952 */
953 public static function surveyProfileTypes() {
954 static $profileTypes;
955
956 if (!isset($profileTypes)) {
957 $profileTypes = array_merge(array('Activity', 'Contact'), CRM_Contact_BAO_ContactType::basicTypes());
5c2ea586 958 $profileTypes = array_diff($profileTypes, array('Organization', 'Household'));
6a488035
TO
959 }
960
961 return $profileTypes;
962 }
963
964 /**
fe482240 965 * Get the valid survey response fields those.
6a488035
TO
966 * are configured with profile and custom fields.
967 *
7aaf6db0
TO
968 * @param int $surveyId
969 * Survey id.
970 * @param int $surveyTypeId
971 * Survey activity type id.
6a488035 972 *
a6c01b45
CW
973 * @return array
974 * an array of valid survey response fields.
6a488035
TO
975 */
976 public static function getSurveyResponseFields($surveyId, $surveyTypeId = NULL) {
977 if (empty($surveyId)) {
978 return array();
979 }
980
981 static $responseFields;
982 $cacheKey = "{$surveyId}_{$surveyTypeId}";
983
984 if (isset($responseFields[$cacheKey])) {
985 return $responseFields[$cacheKey];
986 }
987
988 $responseFields[$cacheKey] = array();
989
990 $profileId = self::getSurveyProfileId($surveyId);
991
992 if (!$profileId) {
993 return $responseFields;
994 }
995
996 if (!$surveyTypeId) {
997 $surveyTypeId = CRM_Core_DAO::getFieldValue('CRM_Campaign_DAO_Survey', $surveyId, 'activity_type_id');
998 }
999
1000 $profileFields = CRM_Core_BAO_UFGroup::getFields($profileId,
5e5141ea 1001 FALSE, CRM_Core_Action::VIEW, NULL, NULL, FALSE, NULL, FALSE, NULL, CRM_Core_Permission::CREATE, 'field_name', TRUE
6a488035
TO
1002 );
1003
1004 //don't load these fields in grid.
1005 $removeFields = array('File', 'RichTextEditor');
1006
1007 $supportableFieldTypes = self::surveyProfileTypes();
1008
1009 // get custom fields of type survey
1010 $customFields = CRM_Core_BAO_CustomField::getFields('Activity', FALSE, FALSE, $surveyTypeId);
1011
1012 foreach ($profileFields as $name => $field) {
1013 //get only contact and activity fields.
1014 //later stage we might going to consider contact type also.
4e9ab75a
RN
1015 if (in_array($field['field_type'], $supportableFieldTypes)) {
1016 // we should allow all supported custom data for survey
1017 // In case of activity, allow normal activity and with subtype survey,
1018 // suppress custom data of other activity types
1019 if (CRM_Core_BAO_CustomField::getKeyID($name)) {
1020 if (!in_array($field['html_type'], $removeFields)) {
1021 if ($field['field_type'] != 'Activity') {
1022 $responseFields[$cacheKey][$name] = $field;
1023 }
1024 elseif (array_key_exists(CRM_Core_BAO_CustomField::getKeyID($name), $customFields)) {
1025 $responseFields[$cacheKey][$name] = $field;
1026 }
1027 }
6a488035 1028 }
4e9ab75a 1029 else {
6a488035
TO
1030 $responseFields[$cacheKey][$name] = $field;
1031 }
1032 }
6a488035
TO
1033 }
1034
1035 return $responseFields[$cacheKey];
1036 }
1037
1038 /**
1039 * Get all interviewers of surveys.
1040 *
a6c01b45
CW
1041 * @return array
1042 * an array of valid survey response fields.
6a488035
TO
1043 */
1044 public static function getInterviewers() {
1045 static $interviewers;
1046
1047 if (isset($interviewers)) {
1048 return $interviewers;
1049 }
1050
1051 $whereClause = NULL;
1052 $activityTypes = self::getSurveyActivityType();
1053 if (!empty($activityTypes)) {
1054 $whereClause = ' WHERE survey.activity_type_id IN ( ' . implode(' , ', array_keys($activityTypes)) . ' )';
1055 }
1056
1057 $interviewers = array();
44f817d4 1058 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
9e74e3ce 1059 $assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
6a488035
TO
1060
1061 $query = "
91da6cd5 1062 SELECT contact.id as id,
6a488035 1063 contact.sort_name as sort_name
91da6cd5 1064 FROM civicrm_contact contact
9e74e3ce 1065INNER JOIN civicrm_activity_contact assignment ON ( assignment.contact_id = contact.id AND record_type_id = $assigneeID )
6a488035
TO
1066INNER JOIN civicrm_activity activity ON ( activity.id = assignment.activity_id )
1067INNER JOIN civicrm_survey survey ON ( activity.source_record_id = survey.id )
1068 {$whereClause}";
1069
1070 $interviewer = CRM_Core_DAO::executeQuery($query);
1071 while ($interviewer->fetch()) {
1072 $interviewers[$interviewer->id] = $interviewer->sort_name;
1073 }
1074
1075 return $interviewers;
1076 }
1077
1078 /**
1079 * Check and update the survey respondents.
1080 *
c490a46a 1081 * @param array $params
dd244018 1082 *
a6c01b45
CW
1083 * @return array
1084 * success message
6a488035 1085 */
7b60d5b9 1086 public static function releaseRespondent($params) {
6a488035
TO
1087 $activityStatus = CRM_Core_PseudoConstant::activityStatus('name');
1088 $reserveStatusId = array_search('Scheduled', $activityStatus);
1089 $surveyActivityTypes = CRM_Campaign_BAO_Survey::getSurveyActivityType();
7b60d5b9 1090 if (!empty($surveyActivityTypes) && is_array($surveyActivityTypes)) {
1091 $surveyActivityTypesIds = array_keys($surveyActivityTypes);
1092 }
6a488035
TO
1093
1094 //retrieve all survey activities related to reserve action.
1095 $releasedCount = 0;
1096 if ($reserveStatusId && !empty($surveyActivityTypesIds)) {
1097 $query = '
91da6cd5 1098 SELECT activity.id as id,
6a488035
TO
1099 activity.activity_date_time as activity_date_time,
1100 survey.id as surveyId,
1101 survey.release_frequency as release_frequency
1102 FROM civicrm_activity activity
91da6cd5
DL
1103INNER JOIN civicrm_survey survey ON ( survey.id = activity.source_record_id )
1104 WHERE activity.is_deleted = 0
1105 AND activity.status_id = %1
6a488035
TO
1106 AND activity.activity_type_id IN ( ' . implode(', ', $surveyActivityTypesIds) . ' )';
1107 $activity = CRM_Core_DAO::executeQuery($query, array(1 => array($reserveStatusId, 'Positive')));
1108 $releasedIds = array();
1109 while ($activity->fetch()) {
1110 if (!$activity->release_frequency) {
1111 continue;
1112 }
1113 $reservedSeconds = CRM_Utils_Date::unixTime($activity->activity_date_time);
1114 $releasedSeconds = $activity->release_frequency * 24 * 3600;
1115 $totalReservedSeconds = $reservedSeconds + $releasedSeconds;
1116 if ($totalReservedSeconds < time()) {
1117 $releasedIds[$activity->id] = $activity->id;
1118 }
1119 }
1120
1121 //released respondent.
1122 if (!empty($releasedIds)) {
1123 $query = '
1124UPDATE civicrm_activity
1125 SET is_deleted = 1
1126 WHERE id IN ( ' . implode(', ', $releasedIds) . ' )';
1127 CRM_Core_DAO::executeQuery($query);
1128 $releasedCount = count($releasedIds);
1129 }
1130 }
1131
1132 $rtnMsg = array(
1133 'is_error' => 0,
1134 'messages' => "Number of respondents released = {$releasedCount}",
1135 );
1136
1137 return $rtnMsg;
1138 }
a2015e41
CW
1139
1140 /**
1141 * Get options for a given field.
1142 * @see CRM_Core_DAO::buildOptions
1143 *
7aaf6db0 1144 * @param string $fieldName
353ffa53
TO
1145 * @param string $context : @see CRM_Core_DAO::buildOptionsContext
1146 * @param array $props : whatever is known about this dao object
a2015e41
CW
1147 *
1148 * @return array|bool
1149 */
1150 public static function buildOptions($fieldName, $context = NULL, $props = array()) {
1151 $params = array();
1152 // Special logic for fields whose options depend on context or properties
1153 switch ($fieldName) {
1154 case 'activity_type_id':
1155 $campaignCompId = CRM_Core_Component::getComponentID('CiviCampaign');
1156 if ($campaignCompId) {
cb441c60 1157 $params['condition'] = array("component_id={$campaignCompId}");
a2015e41
CW
1158 }
1159 break;
1160 }
1161 return CRM_Core_PseudoConstant::get(__CLASS__, $fieldName, $params, $context);
1162 }
96025800 1163
6a488035 1164}