CRM-12595 fix formatting in CRM/Upgrade files
[civicrm-core.git] / CRM / Upgrade / Snapshot / V4p2 / Price / BAO / Set.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
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 * $Id$
33 *
34 */
35
36 /**
37 * Business object for managing price sets
38 *
39 */
40 class CRM_Upgrade_Snapshot_V4p2_Price_BAO_Set extends CRM_Upgrade_Snapshot_V4p2_Price_DAO_Set {
41
42 /**
43 * class constructor
44 */
45 function __construct() {
46 parent::__construct();
47 }
48
49 /**
50 * takes an associative array and creates a price set object
51 *
52 * @param array $params (reference) an assoc array of name/value pairs
53 *
54 * @return object CRM_Upgrade_Snapshot_V4p2_Price_DAO_Set object
55 * @access public
56 * @static
57 */
58 static function create(&$params) {
59 $priceSetBAO = new CRM_Upgrade_Snapshot_V4p2_Price_BAO_Set();
60 $priceSetBAO->copyValues($params);
61 if (self::eventPriceSetDomainID()) {
62 $priceSetBAO->domain_id = CRM_Core_Config::domainID();
63 }
64 return $priceSetBAO->save();
65 }
66
67 /**
68 * Takes a bunch of params that are needed to match certain criteria and
69 * retrieves the relevant objects. Typically the valid params are only
70 * contact_id. We'll tweak this function to be more full featured over a period
71 * of time. This is the inverse function of create. It also stores all the retrieved
72 * values in the default array
73 *
74 * @param array $params (reference ) an assoc array of name/value pairs
75 * @param array $defaults (reference ) an assoc array to hold the flattened values
76 *
77 * @return object CRM_Upgrade_Snapshot_V4p2_Price_DAO_Set object
78 * @access public
79 * @static
80 */
81 static function retrieve(&$params, &$defaults) {
82 return CRM_Core_DAO::commonRetrieve('CRM_Upgrade_Snapshot_V4p2_Price_DAO_Set', $params, $defaults);
83 }
84
85 /**
86 * update the is_active flag in the db
87 *
88 * @param int $id id of the database record
89 * @param boolean $is_active value we want to set the is_active field
90 *
91 * @return Object DAO object on sucess, null otherwise
92 * @static
93 * @access public
94 */
95 static function setIsActive($id, $isActive) {
96 return CRM_Core_DAO::setFieldValue('CRM_Upgrade_Snapshot_V4p2_Price_DAO_Set', $id, 'is_active', $isActive);
97 }
98
99 /**
100 * Calculate the default price set id
101 * assigned to the contribution/membership etc
102 *
103 * @param string $entity
104 *
105 * @return id $priceSetID
106 *
107 * @access public
108 * @static
109 *
110 */
111 public static function getDefaultPriceSet($entity = 'contribution') {
112 if ($entity == 'contribution') {
113 $entityName = 'default_contribution_amount';
114 }
115 else if ($entity == 'membership') {
116 $entityName = 'default_membership_type_amount';
117 }
118
119 $sql = "
120 SELECT ps.id AS setID, pfv.price_field_id AS priceFieldID, pfv.id AS priceFieldValueID, pfv.name, pfv.label
121 FROM civicrm_price_set ps
122 LEFT JOIN civicrm_price_field pf ON pf.`price_set_id` = ps.id
123 LEFT JOIN civicrm_price_field_value pfv ON pfv.price_field_id = pf.id
124 WHERE ps.name = '{$entityName}'
125 ";
126
127 $dao = CRM_Core_DAO::executeQuery($sql);
128 $defaultPriceSet = array();
129 while ($dao->fetch()) {
130 $defaultPriceSet[$dao->priceFieldValueID]['setID'] = $dao->setID;
131 $defaultPriceSet[$dao->priceFieldValueID]['priceFieldID'] = $dao->priceFieldID;
132 $defaultPriceSet[$dao->priceFieldValueID]['name'] = $dao->name;
133 $defaultPriceSet[$dao->priceFieldValueID]['label'] = $dao->label;
134 }
135
136
137 return $defaultPriceSet;
138 }
139
140 /**
141 * Get the price set title.
142 *
143 * @param int $id id of price set
144 *
145 * @return string title
146 *
147 * @access public
148 * @static
149 *
150 */
151 public static function getTitle($id) {
152 return CRM_Core_DAO::getFieldValue('CRM_Upgrade_Snapshot_V4p2_Price_DAO_Set', $id, 'title');
153 }
154
155 /**
156 * Return a list of all forms which use this price set.
157 *
158 * @param int $id id of price set
159 * @param str $simpleReturn - get raw data. Possible values: 'entity', 'table'
160 *
161 * @return array
162 */
163 public static function &getUsedBy($id, $simpleReturn = FALSE) {
164 $usedBy = $forms = $tables = array();
165 $queryString = "
166 SELECT entity_table, entity_id
167 FROM civicrm_price_set_entity
168 WHERE price_set_id = %1";
169 $params = array(1 => array($id, 'Integer'));
170 $crmFormDAO = CRM_Core_DAO::executeQuery($queryString, $params);
171
172 while ($crmFormDAO->fetch()) {
173 $forms[$crmFormDAO->entity_table][] = $crmFormDAO->entity_id;
174 $tables[] = $crmFormDAO->entity_table;
175 }
176 // Return only tables
177 if ($simpleReturn == 'table') {
178 return $tables;
179 }
180 if (empty($forms)) {
181 $queryString = "
182 SELECT cli.entity_table, cli.entity_id
183 FROM civicrm_line_item cli
184 LEFT JOIN civicrm_price_field cpf ON cli.price_field_id = cpf.id
185 WHERE cpf.price_set_id = %1";
186 $params = array(1 => array($id, 'Integer'));
187 $crmFormDAO = CRM_Core_DAO::executeQuery($queryString, $params);
188 while ($crmFormDAO->fetch()) {
189 $forms[$crmFormDAO->entity_table][] = $crmFormDAO->entity_id;
190 $tables[] = $crmFormDAO->entity_table;
191 }
192 if (empty($forms)) {
193 return $usedBy;
194 }
195 }
196 // Return only entity data
197 if ($simpleReturn == 'entity') {
198 return $forms;
199 }
200 foreach ($forms as $table => $entities) {
201 switch ($table) {
202 case 'civicrm_event':
203 $ids = implode(',', $entities);
204 $queryString = "SELECT ce.id as id, ce.title as title, ce.is_public as isPublic, ce.start_date as startDate, ce.end_date as endDate, civicrm_option_value.label as eventType
205 FROM civicrm_event ce
206 LEFT JOIN civicrm_option_value ON
207 ( ce.event_type_id = civicrm_option_value.value )
208 LEFT JOIN civicrm_option_group ON
209 ( civicrm_option_group.id = civicrm_option_value.option_group_id )
210 WHERE
211 civicrm_option_group.name = 'event_type' AND
212 ( ce.is_template IS NULL OR ce.is_template = 0) AND
213 ce.id IN ($ids) AND
214 ce.is_active = 1;";
215 $crmDAO = CRM_Core_DAO::executeQuery($queryString);
216 while ($crmDAO->fetch()) {
217 $usedBy[$table][$crmDAO->id]['title'] = $crmDAO->title;
218 $usedBy[$table][$crmDAO->id]['eventType'] = $crmDAO->eventType;
219 $usedBy[$table][$crmDAO->id]['startDate'] = $crmDAO->startDate;
220 $usedBy[$table][$crmDAO->id]['endDate'] = $crmDAO->endDate;
221 $usedBy[$table][$crmDAO->id]['isPublic'] = $crmDAO->isPublic;
222 }
223 break;
224
225 case 'civicrm_contribution_page':
226 $ids = implode(',', $entities);
227 $queryString = "SELECT cp.id as id, cp.title as title, cp.start_date as startDate, cp.end_date as endDate,ct.name as type
228 FROM civicrm_contribution_page cp, civicrm_contribution_type ct
229 WHERE ct.id = cp.contribution_type_id AND
230 cp.id IN ($ids) AND
231 cp.is_active = 1;";
232 $crmDAO = CRM_Core_DAO::executeQuery($queryString);
233 while ($crmDAO->fetch()) {
234 $usedBy[$table][$crmDAO->id]['title'] = $crmDAO->title;
235 $usedBy[$table][$crmDAO->id]['type'] = $crmDAO->type;
236 $usedBy[$table][$crmDAO->id]['startDate'] = $crmDAO->startDate;
237 $usedBy[$table][$crmDAO->id]['endDate'] = $crmDAO->endDate;
238 }
239 break;
240
241 case 'civicrm_contribution':
242 case 'civicrm_membership':
243 case 'civicrm_participant':
244 $usedBy[$table] = 1;
245 break;
246
247 default:
248 CRM_Core_Error::fatal("$table is not supported in PriceSet::usedBy()");
249 break;
250 }
251 }
252
253 return $usedBy;
254 }
255
256 /**
257 * Delete the price set
258 *
259 * @param int $id Price Set id
260 *
261 * @return boolean false if fields exist for this set, true if the
262 * set could be deleted
263 *
264 * @access public
265 * @static
266 */
267 public static function deleteSet($id) {
268 // remove from all inactive forms
269 $usedBy = self::getUsedBy($id);
270 if (isset($usedBy['civicrm_event'])) {
271 foreach ($usedBy['civicrm_event'] as $eventId => $unused) {
272 $eventDAO = new CRM_Event_DAO_Event();
273 $eventDAO->id = $eventId;
274 $eventDAO->find();
275 while ($eventDAO->fetch()) {
276 self::removeFrom('civicrm_event', $eventDAO->id);
277 }
278 }
279 }
280
281 // delete price fields
282 $priceField = new CRM_Upgrade_Snapshot_V4p2_Price_DAO_Field();
283 $priceField->price_set_id = $id;
284 $priceField->find();
285 while ($priceField->fetch()) {
286 // delete options first
287 CRM_Upgrade_Snapshot_V4p2_Price_BAO_Field::deleteField($priceField->id);
288 }
289
290 $set = new CRM_Upgrade_Snapshot_V4p2_Price_DAO_Set();
291 $set->id = $id;
292 return $set->delete();
293 }
294
295 /**
296 * Link the price set with the specified table and id
297 *
298 * @param string $entityTable
299 * @param integer $entityId
300 * @param integer $priceSetId
301 *
302 * @return bool
303 */
304 public static function addTo($entityTable, $entityId, $priceSetId) {
305 // verify that the price set exists
306 $dao = new CRM_Upgrade_Snapshot_V4p2_Price_DAO_Set();
307 $dao->id = $priceSetId;
308 if (!$dao->find()) {
309 return FALSE;
310 }
311 unset($dao);
312
313 $dao = new CRM_Upgrade_Snapshot_V4p2_Price_DAO_SetEntity();
314 // find if this already exists
315 $dao->entity_id = $entityId;
316 $dao->entity_table = $entityTable;
317 $dao->find(TRUE);
318
319 // add or update price_set_id
320 $dao->price_set_id = $priceSetId;
321 return $dao->save();
322 }
323
324 /**
325 * Delete price set for the given entity and id
326 *
327 * @param string $entityTable
328 * @param integer $entityId
329 */
330 public static function removeFrom($entityTable, $entityId) {
331 $dao = new CRM_Upgrade_Snapshot_V4p2_Price_DAO_SetEntity();
332 $dao->entity_table = $entityTable;
333 $dao->entity_id = $entityId;
334 return $dao->delete();
335 }
336
337 /**
338 * Find a price_set_id associatied with the given table, id and usedFor
339 * Used For value for events:1, contribution:2, membership:3
340 *
341 * @param string $entityTable
342 * @param int $entityId
343 * @param int $usedFor ( price set that extends/used for particular component )
344 *
345 * @return integer|false price_set_id, or false if none found
346 */
347 public static function getFor($entityTable, $entityId, $usedFor = NULL, $isQuickConfig = NULL, &$setName = NULL) {
348 if (!$entityTable || !$entityId) {
349 return FALSE;
350 }
351
352 $sql = 'SELECT ps.id as price_set_id, ps.name as price_set_name
353 FROM civicrm_price_set ps
354 INNER JOIN civicrm_price_set_entity pse ON ps.id = pse.price_set_id
355 WHERE pse.entity_table = %1 AND pse.entity_id = %2 ';
356 if ($isQuickConfig) {
357 $sql .= " AND ps.is_quick_config = 0 ";
358 }
359 $params = array(1 => array($entityTable, 'String'),
360 2 => array($entityId, 'Integer'),
361 );
362 if ($usedFor) {
363 $sql .= " AND ps.extends LIKE '%%3%' ";
364 $params[3] = array($usedFor, 'Integer');
365 }
366
367 $dao = CRM_Core_DAO::executeQuery($sql, $params);
368 $dao->fetch();
369 $setName = (isset($dao->price_set_name)) ? $dao->price_set_name : FALSE;
370 return (isset($dao->price_set_id)) ? $dao->price_set_id : FALSE;
371 }
372
373 /**
374 * Find a price_set_id associatied with the given option value or field ID
375 *
376 * @param array $params (reference) an assoc array of name/value pairs
377 * array may contain either option id or
378 * price field id
379 *
380 * @return price set id on success, null otherwise
381 * @static
382 * @access public
383 */
384 public static function getSetId(&$params) {
385 $fid = NULL;
386
387 if ($oid = CRM_Utils_Array::value('oid', $params)) {
388 $fieldValue = new CRM_Upgrade_Snapshot_V4p2_Price_DAO_FieldValue();
389 $fieldValue->id = $oid;
390 if ($fieldValue->find(TRUE)) {
391 $fid = $fieldValue->price_field_id;
392 }
393 }
394 else {
395 $fid = CRM_Utils_Array::value('fid', $params);
396 }
397
398 if (isset($fid)) {
399 return CRM_Core_DAO::getFieldValue('CRM_Upgrade_Snapshot_V4p2_Price_DAO_Field', $fid, 'price_set_id');
400 }
401
402 return NULL;
403 }
404
405 /**
406 * Return an associative array of all price sets
407 *
408 * @param bool $withInactive whether or not to include inactive entries
409 * @param string $extendComponentName name of the component like 'CiviEvent','CiviContribute'
410 *
411 * @return array associative array of id => name
412 */
413 public static function getAssoc($withInactive = FALSE, $extendComponentName = FALSE) {
414 $query = "
415 SELECT
416 DISTINCT ( price_set_id ) as id, title
417 FROM
418 civicrm_price_field,
419 civicrm_price_set
420 WHERE
421 civicrm_price_set.id = civicrm_price_field.price_set_id AND is_quick_config = 0 ";
422
423 if (!$withInactive) {
424 $query .= " AND civicrm_price_set.is_active = 1 ";
425 }
426
427 if (self::eventPriceSetDomainID()) {
428 $query .= " AND civicrm_price_set.domain_id = " . CRM_Core_Config::domainID();
429 }
430
431 $priceSets = array();
432
433 if ($extendComponentName) {
434 $componentId = CRM_Core_Component::getComponentID($extendComponentName);
435 if (!$componentId) {
436 return $priceSets;
437 }
438 $query .= " AND civicrm_price_set.extends LIKE '%$componentId%' ";
439 }
440
441 $dao = CRM_Core_DAO::executeQuery($query);
442 while ($dao->fetch()) {
443 $priceSets[$dao->id] = $dao->title;
444 }
445 return $priceSets;
446 }
447
448 /**
449 * Get price set details
450 *
451 * An array containing price set details (including price fields) is returned
452 *
453 * @param int $setId - price set id whose details are needed
454 *
455 * @return array $setTree - array consisting of field details
456 */
457 public static function getSetDetail($setID, $required = TRUE, $validOnly = FALSE) {
458 // create a new tree
459 $setTree = array();
460 $select = $from = $where = $orderBy = '';
461
462 $priceFields = array(
463 'id',
464 'name',
465 'label',
466 'html_type',
467 'is_enter_qty',
468 'help_pre',
469 'help_post',
470 'weight',
471 'is_display_amounts',
472 'options_per_line',
473 'is_active',
474 'active_on',
475 'expire_on',
476 'javascript',
477 'visibility_id',
478 'is_required',
479 );
480 if ($required == TRUE) {
481 $priceFields[] = 'is_required';
482 }
483
484 // create select
485 $select = 'SELECT ' . implode(',', $priceFields);
486 $from = ' FROM civicrm_price_field';
487
488 $params = array();
489 $params[1] = array($setID, 'Integer');
490 $where = '
491 WHERE price_set_id = %1
492 AND is_active = 1
493 ';
494 $dateSelect = '';
495 if ($validOnly) {
496 $currentTime = date('YmdHis');
497 $dateSelect = "
498 AND ( active_on IS NULL OR active_on <= {$currentTime} )
499 AND ( expire_on IS NULL OR expire_on >= {$currentTime} )
500 ";
501 }
502
503 $orderBy = ' ORDER BY weight';
504
505 $sql = $select . $from . $where . $dateSelect . $orderBy;
506
507 $dao = CRM_Core_DAO::executeQuery($sql, $params);
508
509 $visibility = CRM_Core_PseudoConstant::visibility('name');
510 while ($dao->fetch()) {
511 $fieldID = $dao->id;
512
513 $setTree[$setID]['fields'][$fieldID] = array();
514 $setTree[$setID]['fields'][$fieldID]['id'] = $fieldID;
515
516 foreach ($priceFields as $field) {
517 if ($field == 'id' || is_null($dao->$field)) {
518 continue;
519 }
520
521 if ($field == 'visibility_id') {
522 $setTree[$setID]['fields'][$fieldID]['visibility'] = $visibility[$dao->$field];
523 }
524 $setTree[$setID]['fields'][$fieldID][$field] = $dao->$field;
525 }
526 $setTree[$setID]['fields'][$fieldID]['options'] = CRM_Upgrade_Snapshot_V4p2_Price_BAO_Field::getOptions($fieldID, FALSE);
527 }
528
529 // also get the pre and post help from this price set
530 $sql = "
531 SELECT extends, contribution_type_id, help_pre, help_post, is_quick_config
532 FROM civicrm_price_set
533 WHERE id = %1";
534 $dao = CRM_Core_DAO::executeQuery($sql, $params);
535 if ($dao->fetch()) {
536 $setTree[$setID]['extends'] = $dao->extends;
537 $setTree[$setID]['contribution_type_id'] = $dao->contribution_type_id;
538 $setTree[$setID]['help_pre'] = $dao->help_pre;
539 $setTree[$setID]['help_post'] = $dao->help_post;
540 $setTree[$setID]['is_quick_config'] = $dao->is_quick_config;
541 }
542 return $setTree;
543 }
544
545 static function initSet(&$form, $id, $entityTable = 'civicrm_event', $validOnly = FALSE, $priceSetId = NULL) {
546 if (!$priceSetId) {
547 $priceSetId = self::getFor($entityTable, $id);
548 }
549
550 //check if priceset is is_config
551 if (is_numeric($priceSetId)) {
552 if (CRM_Core_DAO::getFieldValue('CRM_Upgrade_Snapshot_V4p2_Price_DAO_Set', $priceSetId, 'is_quick_config') && $form->getVar('_name') != 'Participant') {
553 $form->assign('quickConfig', 1);
554 }
555 }
556 // get price info
557 if ($priceSetId) {
558 if ($form->_action & CRM_Core_Action::UPDATE) {
559 $entityId = $entity = NULL;
560
561 switch ($entityTable) {
562 case 'civicrm_event':
563 $entity = 'participant';
564 if (CRM_Utils_System::getClassName($form) == 'CRM_Event_Form_Participant') {
565 $entityId = $form->_id;
566 }
567 else {
568 $entityId = $form->_participantId;
569 }
570 break;
571
572 case 'civicrm_contribution_page':
573 case 'civicrm_contribution':
574 $entity = 'contribution';
575 $entityId = $form->_id;
576 break;
577 }
578
579 if ($entityId && $entity) {
580 $form->_values['line_items'] = CRM_Upgrade_Snapshot_V4p2_Price_BAO_LineItem::getLineItems($entityId, $entity);
581 }
582 $required = FALSE;
583 }
584 else {
585 $required = TRUE;
586 }
587
588 $form->_priceSetId = $priceSetId;
589 $priceSet = self::getSetDetail($priceSetId, $required, $validOnly);
590 $form->_priceSet = CRM_Utils_Array::value($priceSetId, $priceSet);
591 $form->_values['fee'] = CRM_Utils_Array::value('fields', $form->_priceSet);
592
593 //get the price set fields participant count.
594 if ($entityTable == 'civicrm_event') {
595 //get option count info.
596 $form->_priceSet['optionsCountTotal'] = self::getPricesetCount($priceSetId);
597 if ($form->_priceSet['optionsCountTotal']) {
598 $optionsCountDeails = array();
599 if (!empty($form->_priceSet['fields'])) {
600 foreach ($form->_priceSet['fields'] as $field) {
601 foreach ($field['options'] as $option) {
602 $count = CRM_Utils_Array::value('count', $option, 0);
603 $optionsCountDeails['fields'][$field['id']]['options'][$option['id']] = $count;
604 }
605 }
606 }
607 $form->_priceSet['optionsCountDetails'] = $optionsCountDeails;
608 }
609
610 //get option max value info.
611 $optionsMaxValueTotal = 0;
612 $optionsMaxValueDetails = array();
613
614 if (!empty($form->_priceSet['fields'])) {
615 foreach ($form->_priceSet['fields'] as $field) {
616 foreach ($field['options'] as $option) {
617 $maxVal = CRM_Utils_Array::value('max_value', $option, 0);
618 $optionsMaxValueDetails['fields'][$field['id']]['options'][$option['id']] = $maxVal;
619 $optionsMaxValueTotal += $maxVal;
620 }
621 }
622 }
623
624 $form->_priceSet['optionsMaxValueTotal'] = $optionsMaxValueTotal;
625 if ($optionsMaxValueTotal) {
626 $form->_priceSet['optionsMaxValueDetails'] = $optionsMaxValueDetails;
627 }
628 }
629 $form->set('priceSetId', $form->_priceSetId);
630 $form->set('priceSet', $form->_priceSet);
631
632 return $priceSetId;
633 }
634 return FALSE;
635 }
636
637 static function processAmount(&$fields, &$params, &$lineItem) {
638 // using price set
639 $totalPrice = 0;
640 $radioLevel = $checkboxLevel = $selectLevel = $textLevel = array();
641
642 foreach ($fields as $id => $field) {
643 if (!CRM_Utils_Array::value("price_{$id}", $params) ||
644 (empty($params["price_{$id}"]) && $params["price_{$id}"] == NULL)
645 ) {
646 // skip if nothing was submitted for this field
647 continue;
648 }
649
650 switch ($field['html_type']) {
651 case 'Text':
652 $params["price_{$id}"] = array(key($field['options']) => $params["price_{$id}"]);
653 CRM_Upgrade_Snapshot_V4p2_Price_BAO_LineItem::format($id, $params, $field, $lineItem);
654 $totalPrice += $lineItem[key($field['options'])]['line_total'];
655 break;
656
657 case 'Radio':
658 //special case if user select -none-
659 if ($params["price_{$id}"] <= 0) {
660 continue;
661 }
662 $params["price_{$id}"] = array($params["price_{$id}"] => 1);
663 $optionValueId = CRM_Utils_Array::key(1, $params["price_{$id}"]);
664 $optionLabel = CRM_Utils_Array::value('label', $field['options'][$optionValueId]);
665 $params['amount_priceset_level_radio'] = array();
666 $params['amount_priceset_level_radio'][$optionValueId] = $optionLabel;
667 if (isset($radioLevel)) {
668 $radioLevel = array_merge($radioLevel,
669 array_keys($params['amount_priceset_level_radio'])
670 );
671 }
672 else {
673 $radioLevel = array_keys($params['amount_priceset_level_radio']);
674 }
675 CRM_Upgrade_Snapshot_V4p2_Price_BAO_LineItem::format($id, $params, $field, $lineItem);
676 $totalPrice += $lineItem[$optionValueId]['line_total'];
677 break;
678
679 case 'Select':
680 $params["price_{$id}"] = array($params["price_{$id}"] => 1);
681 $optionValueId = CRM_Utils_Array::key(1, $params["price_{$id}"]);
682 $optionLabel = $field['options'][$optionValueId]['label'];
683 $params['amount_priceset_level_select'] = array();
684 $params['amount_priceset_level_select'][CRM_Utils_Array::key(1, $params["price_{$id}"])] = $optionLabel;
685 if (isset($selectLevel)) {
686 $selectLevel = array_merge($selectLevel, array_keys($params['amount_priceset_level_select']));
687 }
688 else {
689 $selectLevel = array_keys($params['amount_priceset_level_select']);
690 }
691 CRM_Upgrade_Snapshot_V4p2_Price_BAO_LineItem::format($id, $params, $field, $lineItem);
692 $totalPrice += $lineItem[$optionValueId]['line_total'];
693 break;
694 case 'CheckBox':
695 $params['amount_priceset_level_checkbox'] = $optionIds = array();
696 foreach ($params["price_{$id}"] as $optionId => $option) {
697 $optionIds[] = $optionId;
698 $optionLabel = $field['options'][$optionId]['label'];
699 $params['amount_priceset_level_checkbox']["{$field['options'][$optionId]['id']}"] = $optionLabel;
700 if (isset($checkboxLevel)) {
701 $checkboxLevel = array_unique(array_merge(
702 $checkboxLevel,
703 array_keys($params['amount_priceset_level_checkbox'])
704 )
705 );
706 }
707 else {
708 $checkboxLevel = array_keys($params['amount_priceset_level_checkbox']);
709 }
710 }
711 CRM_Upgrade_Snapshot_V4p2_Price_BAO_LineItem::format($id, $params, $field, $lineItem);
712 foreach ($optionIds as $optionId) {
713 $totalPrice += $lineItem[$optionId]['line_total'];
714 }
715 break;
716 }
717 }
718
719 $amount_level = array();
720 $totalParticipant = 0;
721 if (is_array($lineItem)) {
722 foreach ($lineItem as $values) {
723 $totalParticipant += $values['participant_count'];
724 if ($values['html_type'] == 'Text') {
725 $amount_level[] = $values['label'] . ' - ' . $values['qty'];
726 continue;
727 }
728 $amount_level[] = $values['label'];
729 }
730 }
731
732 $displayParticipantCount = '';
733 if ($totalParticipant > 0) {
734 $displayParticipantCount = ' Participant Count -' . $totalParticipant;
735 }
736
737 $params['amount_level'] = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR, $amount_level) . $displayParticipantCount . CRM_Core_DAO::VALUE_SEPARATOR;
738 $params['amount'] = $totalPrice;
739 }
740
741 /**
742 * Function to build the price set form.
743 *
744 * @return None
745 * @access public
746 */
747 static function buildPriceSet(&$form) {
748 $priceSetId = $form->get('priceSetId');
749 $userid = $form->getVar('_userID');
750 if (!$priceSetId) {
751 return;
752 }
753
754 $validFieldsOnly = TRUE;
755 $className = CRM_Utils_System::getClassName($form);
756 if (in_array($className, array(
757 'CRM_Contribute_Form_Contribution', 'CRM_Member_Form_Membership'))) {
758 $validFieldsOnly = FALSE;
759 }
760
761 $priceSet = self::getSetDetail($priceSetId, TRUE, $validFieldsOnly);
762 $form->_priceSet = CRM_Utils_Array::value($priceSetId, $priceSet);
763 $form->_quickConfig = $quickConfig = 0;
764 if (CRM_Core_DAO::getFieldValue('CRM_Upgrade_Snapshot_V4p2_Price_DAO_Set', $priceSetId, 'is_quick_config')) {
765 $quickConfig = 1;
766 }
767
768 $form->assign('quickConfig', $quickConfig);
769 if ($className == "CRM_Contribute_Form_Contribution_Main") {
770 $form->_quickConfig = $quickConfig;
771 }
772 $form->assign('priceSet', $form->_priceSet);
773
774 $component = 'contribution';
775 if ($className == 'CRM_Member_Form_Membership') {
776 $component = 'membership';
777 }
778
779 if ($className == 'CRM_Contribute_Form_Contribution_Main') {
780 $feeBlock = &$form->_values['fee'];
781 if (!empty($form->_useForMember)) {
782 $component = 'membership';
783 }
784 }
785 else {
786 $feeBlock = &$form->_priceSet['fields'];
787 }
788
789 // call the hook.
790 CRM_Utils_Hook::buildAmount($component, $form, $feeBlock);
791
792 foreach ($feeBlock as $field) {
793 if (CRM_Utils_Array::value('visibility', $field) == 'public' ||
794 !$validFieldsOnly
795 ) {
796 $options = CRM_Utils_Array::value('options', $field);
797 if ($className == 'CRM_Contribute_Form_Contribution_Main' && $component = 'membership') {
798 $checklifetime = self::checkCurrentMembership($options, $userid);
799 if ($checklifetime) {
800 $form->assign('ispricelifetime', TRUE);
801 }
802 }
803 if (!is_array($options)) {
804 continue;
805 }
806 CRM_Upgrade_Snapshot_V4p2_Price_BAO_Field::addQuickFormElement($form,
807 'price_' . $field['id'],
808 $field['id'],
809 FALSE,
810 CRM_Utils_Array::value('is_required', $field, FALSE),
811 NULL,
812 $options
813 );
814 }
815 }
816 }
817
818 /**
819 * Function to check the current Membership
820 * having end date null.
821 */
822 static function checkCurrentMembership(&$options, $userid) {
823 if (!$userid || empty($options)) {
824 return;
825 }
826 static $_contact_memberships = array();
827 $checklifetime = FALSE;
828 foreach ($options as $key => $value) {
829 if (CRM_Utils_Array::value('membership_type_id', $value)) {
830 if (!isset($_contact_memberships[$userid][$value['membership_type_id']])) {
831 $_contact_memberships[$userid][$value['membership_type_id']] = CRM_Member_BAO_Membership::getContactMembership($userid, $value['membership_type_id'], FALSE);
832 }
833 $currentMembership = $_contact_memberships[$userid][$value['membership_type_id']];
834 if (!empty($currentMembership) && !CRM_Utils_Array::value('end_date', $currentMembership)) {
835 unset($options[$key]);
836 $checklifetime = TRUE;
837 }
838 }
839 }
840 if ($checklifetime) {
841 return TRUE;
842 }
843 else {
844 return FALSE;
845 }
846 }
847
848 /**
849 * Function to set daefult the price set fields.
850 *
851 * @return array $defaults
852 * @access public
853 */
854 static function setDefaultPriceSet(&$form, &$defaults) {
855 if (!isset($form->_priceSet) || empty($form->_priceSet['fields'])) {
856 return $defaults;
857 }
858
859 foreach ($form->_priceSet['fields'] as $key => $val) {
860 foreach ($val['options'] as $keys => $values) {
861 if ($values['is_default']) {
862 if ($val['html_type'] == 'CheckBox') {
863 $defaults["price_{$key}"][$keys] = 1;
864 }
865 else {
866 $defaults["price_{$key}"] = $keys;
867 }
868 }
869 }
870 }
871 return $defaults;
872 }
873
874 /**
875 * Get field ids of a price set
876 *
877 * @param int id Price Set id
878 *
879 * @return array of the field ids
880 *
881 * @access public
882 * @static
883 */
884 public static function getFieldIds($id) {
885 $priceField = new CRM_Upgrade_Snapshot_V4p2_Price_DAO_Field();
886 $priceField->price_set_id = $id;
887 $priceField->find();
888 while ($priceField->fetch()) {
889 $var[] = $priceField->id;
890 }
891 return $var;
892 }
893
894 /**
895 * This function is to make a copy of a price set, including
896 * all the fields
897 *
898 * @param int $id the price set id to copy
899 *
900 * @return the copy object
901 * @access public
902 * @static
903 */
904 static function copy($id) {
905 $maxId = CRM_Core_DAO::singleValueQuery("SELECT max(id) FROM civicrm_price_set");
906
907 $title = ts('[Copy id %1]', array(1 => $maxId + 1));
908 $fieldsFix = array(
909 'suffix' => array('title' => ' ' . $title,
910 'name' => '__Copy_id_' . ($maxId + 1) . '_',
911 ),
912 );
913
914 $copy = &CRM_Core_DAO::copyGeneric('CRM_Upgrade_Snapshot_V4p2_Price_DAO_Set',
915 array('id' => $id),
916 NULL,
917 $fieldsFix
918 );
919
920 //copying all the blocks pertaining to the price set
921 $copyPriceField = &CRM_Core_DAO::copyGeneric('CRM_Upgrade_Snapshot_V4p2_Price_DAO_Field',
922 array('price_set_id' => $id),
923 array('price_set_id' => $copy->id)
924 );
925 if (!empty($copyPriceField)) {
926 $price = array_combine(self::getFieldIds($id), self::getFieldIds($copy->id));
927
928 //copy option group and values
929 foreach ($price as $originalId => $copyId) {
930 CRM_Core_DAO::copyGeneric('CRM_Upgrade_Snapshot_V4p2_Price_DAO_FieldValue',
931 array('price_field_id' => $originalId),
932 array('price_field_id' => $copyId)
933 );
934 }
935 }
936 $copy->save();
937
938 CRM_Utils_Hook::copy('Set', $copy);
939 return $copy;
940 }
941
942 /**
943 * This function is to check price set permission
944 *
945 * @param int $sid the price set id
946 */
947 function checkPermission($sid) {
948 if ($sid &&
949 self::eventPriceSetDomainID()
950 ) {
951 $domain_id = CRM_Core_DAO::getFieldValue('CRM_Upgrade_Snapshot_V4p2_Price_DAO_Set', $sid, 'domain_id', 'id');
952 if (CRM_Core_Config::domainID() != $domain_id) {
953 CRM_Core_Error::fatal(ts('You do not have permission to access this page'));
954 }
955 }
956 return TRUE;
957 }
958
959 /**
960 * Get the sum of participant count
961 * for all fields of given price set.
962 *
963 * @param int $sid the price set id
964 *
965 * @access public
966 * @static
967 */
968 public static function getPricesetCount($sid, $onlyActive = TRUE) {
969 $count = 0;
970 if (!$sid) {
971 return $count;
972 }
973
974 $where = NULL;
975 if ($onlyActive) {
976 $where = 'AND value.is_active = 1 AND field.is_active = 1';
977 }
978
979 static $pricesetFieldCount;
980 if (!isset($pricesetFieldCount[$sid])) {
981 $sql = "
982 SELECT sum(value.count) as totalCount
983 FROM civicrm_price_field_value value
984 INNER JOIN civicrm_price_field field ON ( field.id = value.price_field_id )
985 INNER JOIN civicrm_price_set pset ON ( pset.id = field.price_set_id )
986 WHERE pset.id = %1
987 $where";
988
989 $count = CRM_Core_DAO::singleValueQuery($sql, array(1 => array($sid, 'Positive')));
990 $pricesetFieldCount[$sid] = ($count) ? $count : 0;
991 }
992
993 return $pricesetFieldCount[$sid];
994 }
995
996 public static function getMembershipCount($ids) {
997 $queryString = "
998 SELECT count( pfv.id ) AS count, pfv.id AS id
999 FROM civicrm_price_field_value pfv
1000 INNER JOIN civicrm_membership_type mt ON mt.id = pfv.membership_type_id
1001 WHERE pfv.id IN ( $ids )
1002 GROUP BY mt.member_of_contact_id";
1003
1004 $crmDAO = CRM_Core_DAO::executeQuery($queryString);
1005 $count = array();
1006
1007 while ($crmDAO->fetch()) {
1008 $count[$crmDAO->id] = $crmDAO->count;
1009 }
1010
1011 return $count;
1012 }
1013
1014 /**
1015 * Function to check if auto renew option should be shown
1016 *
1017 * @param int $priceSetId price set id
1018 *
1019 * @return int $autoRenewOption ( 0:hide, 1:optional 2:required )
1020 */
1021 public static function checkAutoRenewForPriceSet($priceSetId) {
1022 // auto-renew option should be visible if membership types associated with all the fields has
1023 // been set for auto-renew option
1024 // Auto renew checkbox should be frozen if for all the membership type auto renew is required
1025
1026 // get the membership type auto renew option and check if required or optional
1027 $query = 'SELECT mt.auto_renew, mt.duration_interval, mt.duration_unit
1028 FROM civicrm_price_field_value pfv
1029 INNER JOIN civicrm_membership_type mt ON pfv.membership_type_id = mt.id
1030 INNER JOIN civicrm_price_field pf ON pfv.price_field_id = pf.id
1031 WHERE pf.price_set_id = %1
1032 AND pf.is_active = 1
1033 AND pfv.is_active = 1';
1034
1035 $params = array(1 => array($priceSetId, 'Integer'));
1036
1037 $dao = CRM_Core_DAO::executeQuery($query, $params);
1038 $autoRenewOption = 2;
1039 $interval = $unit = array();
1040 while ($dao->fetch()) {
1041 if (!$dao->auto_renew) {
1042 $autoRenewOption = 0;
1043 break;
1044 }
1045 if ($dao->auto_renew == 1) {
1046 $autoRenewOption = 1;
1047 }
1048
1049 $interval[$dao->duration_interval] = $dao->duration_interval;
1050 $unit[$dao->duration_unit] = $dao->duration_unit;
1051 }
1052
1053 if (count($interval) == 1 && count($unit) == 1 && $autoRenewOption > 0) {
1054 return $autoRenewOption;
1055 }
1056 else {
1057 return 0;
1058 }
1059 }
1060
1061 /**
1062 * Function to retrieve auto renew frequency and interval
1063 *
1064 * @param int $priceSetId price set id
1065 *
1066 * @return array associate array of frequency interval and unit
1067 * @static
1068 * @access public
1069 */
1070 public static function getRecurDetails($priceSetId) {
1071 $query = 'SELECT mt.duration_interval, mt.duration_unit
1072 FROM civicrm_price_field_value pfv
1073 INNER JOIN civicrm_membership_type mt ON pfv.membership_type_id = mt.id
1074 INNER JOIN civicrm_price_field pf ON pfv.price_field_id = pf.id
1075 WHERE pf.price_set_id = %1 LIMIT 1';
1076
1077 $params = array(1 => array($priceSetId, 'Integer'));
1078 $dao = CRM_Core_DAO::executeQuery($query, $params);
1079 $dao->fetch();
1080 return array($dao->duration_interval, $dao->duration_unit);
1081 }
1082
1083 static function eventPriceSetDomainID() {
1084 return CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::MULTISITE_PREFERENCES_NAME,
1085 'event_price_set_domain_id',
1086 NULL, FALSE
1087 );
1088 }
1089
1090 /**
1091 * update the is_quick_config flag in the db
1092 *
1093 * @param int $id id of the database record
1094 * @param boolean $isQuickConfig value we want to set the is_quick_config field
1095 *
1096 * @return Object DAO object on sucess, null otherwise
1097 * @static
1098 * @access public
1099 */
1100 static function setIsQuickConfig($id, $isQuickConfig) {
1101 return CRM_Core_DAO::setFieldValue('CRM_Upgrade_Snapshot_V4p2_Price_DAO_Set', $id, 'is_quick_config', $isQuickConfig);
1102 }
1103 }
1104