fix header
[civicrm-core.git] / CRM / Contact / Form / Search / Custom / PriceSet.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
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
TO
32 */
33class CRM_Contact_Form_Search_Custom_PriceSet extends CRM_Contact_Form_Search_Custom_Base implements CRM_Contact_Form_Search_Interface {
34
35 protected $_eventID = NULL;
d14ccbdc
SL
36 protected $_aclFrom = NULL;
37 protected $_aclWhere = NULL;
4e54c348
PJ
38 protected $_tableName = NULL;
39 public $_permissionedComponent;
40
86538308 41 /**
5a409b50 42 * Class constructor.
43 *
44 * @param array $formValues
86538308 45 */
00be9182 46 public function __construct(&$formValues) {
6a488035
TO
47 parent::__construct($formValues);
48
49 $this->_eventID = CRM_Utils_Array::value('event_id',
50 $this->_formValues
51 );
52
53 $this->setColumns();
54
55 if ($this->_eventID) {
56 $this->buildTempTable();
6a488035
TO
57 $this->fillTable();
58 }
4e54c348
PJ
59
60 // define component access permission needed
61 $this->_permissionedComponent = 'CiviEvent';
6a488035
TO
62 }
63
00be9182 64 public function __destruct() {
6a488035 65 /*
e70a7fc0
TO
66 if ( $this->_eventID ) {
67 $sql = "DROP TEMPORARY TABLE {$this->_tableName}";
68 CRM_Core_DAO::executeQuery( $sql );
69 }
70 */
6a488035
TO
71 }
72
00be9182 73 public function buildTempTable() {
353ffa53 74 $randomNum = md5(uniqid());
6a488035 75 $this->_tableName = "civicrm_temp_custom_{$randomNum}";
353ffa53 76 $sql = "
6a488035
TO
77CREATE TEMPORARY TABLE {$this->_tableName} (
78 id int unsigned NOT NULL AUTO_INCREMENT,
79 contact_id int unsigned NOT NULL,
80 participant_id int unsigned NOT NULL,
81";
82
83 foreach ($this->_columns as $dontCare => $fieldName) {
84 if (in_array($fieldName, array(
85 'contact_id',
353ffa53
TO
86 'participant_id',
87 'display_name',
88 ))) {
6a488035
TO
89 continue;
90 }
91 $sql .= "{$fieldName} int default 0,\n";
92 }
93
94 $sql .= "
95PRIMARY KEY ( id ),
96UNIQUE INDEX unique_participant_id ( participant_id )
97) ENGINE=HEAP
98";
99
100 CRM_Core_DAO::executeQuery($sql);
101 }
102
00be9182 103 public function fillTable() {
6a488035
TO
104 $sql = "
105REPLACE INTO {$this->_tableName}
106( contact_id, participant_id )
107SELECT c.id, p.id
108FROM civicrm_contact c,
109 civicrm_participant p
110WHERE p.contact_id = c.id
111 AND p.is_test = 0
112 AND p.event_id = {$this->_eventID}
113 AND p.status_id NOT IN (4,11,12)
114 AND ( c.is_deleted = 0 OR c.is_deleted IS NULL )
115";
116 CRM_Core_DAO::executeQuery($sql);
117
118 $sql = "
119SELECT c.id as contact_id,
120 p.id as participant_id,
121 l.price_field_value_id as price_field_value_id,
122 l.qty
123FROM civicrm_contact c,
124 civicrm_participant p,
125 civicrm_line_item l
126WHERE c.id = p.contact_id
127AND p.event_id = {$this->_eventID}
128AND p.id = l.entity_id
129AND l.entity_table ='civicrm_participant'
130ORDER BY c.id, l.price_field_value_id;
131";
132
133 $dao = CRM_Core_DAO::executeQuery($sql);
134
135 // first store all the information by option value id
136 $rows = array();
137 while ($dao->fetch()) {
138 $contactID = $dao->contact_id;
139 $participantID = $dao->participant_id;
140 if (!isset($rows[$participantID])) {
141 $rows[$participantID] = array();
142 }
143
144 $rows[$participantID][] = "price_field_{$dao->price_field_value_id} = {$dao->qty}";
145 }
146
147 foreach (array_keys($rows) as $participantID) {
148 $values = implode(',', $rows[$participantID]);
149 $sql = "
150UPDATE {$this->_tableName}
151SET $values
152WHERE participant_id = $participantID;
153";
154 CRM_Core_DAO::executeQuery($sql);
155 }
156 }
157
86538308 158 /**
100fef9d 159 * @param int $eventID
86538308
EM
160 *
161 * @return Object
162 */
00be9182 163 public function priceSetDAO($eventID = NULL) {
6a488035
TO
164
165 // get all the events that have a price set associated with it
166 $sql = "
167SELECT e.id as id,
168 e.title as title,
169 p.price_set_id as price_set_id
170FROM civicrm_event e,
171 civicrm_price_set_entity p
172
173WHERE p.entity_table = 'civicrm_event'
174AND p.entity_id = e.id
175";
176
177 $params = array();
178 if ($eventID) {
179 $params[1] = array($eventID, 'Integer');
180 $sql .= " AND e.id = $eventID";
181 }
182
183 $dao = CRM_Core_DAO::executeQuery($sql,
184 $params
185 );
186 return $dao;
187 }
188
86538308 189 /**
c490a46a 190 * @param CRM_Core_Form $form
86538308
EM
191 *
192 * @throws Exception
193 */
00be9182 194 public function buildForm(&$form) {
6a488035
TO
195 $dao = $this->priceSetDAO();
196
197 $event = array();
198 while ($dao->fetch()) {
199 $event[$dao->id] = $dao->title;
200 }
201
202 if (empty($event)) {
203 CRM_Core_Error::fatal(ts('There are no events with Price Sets'));
204 }
205
206 $form->add('select',
207 'event_id',
208 ts('Event'),
209 $event,
210 TRUE
211 );
212
213 /**
214 * You can define a custom title for the search form
215 */
216 $this->setTitle('Price Set Export');
217
218 /**
219 * if you are using the standard template, this array tells the template what elements
220 * are part of the search criteria
221 */
222 $form->assign('elements', array('event_id'));
223 }
224
00be9182 225 public function setColumns() {
6a488035 226 $this->_columns = array(
7b99ead3 227 ts('Contact ID') => 'contact_id',
aa6228f8 228 ts('Participant ID') => 'participant_id',
6a488035
TO
229 ts('Name') => 'display_name',
230 );
231
232 if (!$this->_eventID) {
233 return;
234 }
235
236 // for the selected event, find the price set and all the columns associated with it.
237 // create a column for each field and option group within it
238 $dao = $this->priceSetDAO($this->_formValues['event_id']);
239
240 if ($dao->fetch() &&
241 !$dao->price_set_id
242 ) {
243 CRM_Core_Error::fatal(ts('There are no events with Price Sets'));
244 }
245
246 // get all the fields and all the option values associated with it
9da8dc8c 247 $priceSet = CRM_Price_BAO_PriceSet::getSetDetail($dao->price_set_id);
6a488035
TO
248 if (is_array($priceSet[$dao->price_set_id])) {
249 foreach ($priceSet[$dao->price_set_id]['fields'] as $key => $value) {
250 if (is_array($value['options'])) {
251 foreach ($value['options'] as $oKey => $oValue) {
252 $columnHeader = CRM_Utils_Array::value('label', $value);
253 if (CRM_Utils_Array::value('html_type', $value) != 'Text') {
254 $columnHeader .= ' - ' . $oValue['label'];
255 }
256
257 $this->_columns[$columnHeader] = "price_field_{$oValue['id']}";
258 }
259 }
260 }
261 }
262 }
263
86538308
EM
264 /**
265 * @return null
266 */
00be9182 267 public function summary() {
6a488035
TO
268 return NULL;
269 }
270
86538308
EM
271 /**
272 * @param int $offset
273 * @param int $rowcount
274 * @param null $sort
275 * @param bool $includeContactIDs
276 * @param bool $justIDs
277 *
278 * @return string
279 */
87a890cc 280 public function all(
51ccfbbe 281 $offset = 0, $rowcount = 0, $sort = NULL,
6a488035
TO
282 $includeContactIDs = FALSE, $justIDs = FALSE
283 ) {
284 if ($justIDs) {
285 $selectClause = "contact_a.id as contact_id";
286 }
287 else {
288 $selectClause = "
289contact_a.id as contact_id ,
290contact_a.display_name as display_name";
291
292 foreach ($this->_columns as $dontCare => $fieldName) {
293 if (in_array($fieldName, array(
353ffa53
TO
294 'contact_id',
295 'display_name',
296 ))) {
6a488035
TO
297 continue;
298 }
299 $selectClause .= ",\ntempTable.{$fieldName} as {$fieldName}";
300 }
301 }
302
303 return $this->sql($selectClause,
304 $offset, $rowcount, $sort,
305 $includeContactIDs, NULL
306 );
307 }
308
86538308
EM
309 /**
310 * @return string
311 */
00be9182 312 public function from() {
d14ccbdc
SL
313 $this->buildACLClause('contact_a');
314 $from = "
6a488035 315FROM civicrm_contact contact_a
d14ccbdc 316INNER JOIN {$this->_tableName} tempTable ON ( tempTable.contact_id = contact_a.id ) {$this->_aclFrom}
6a488035 317";
d14ccbdc 318 return $from;
6a488035
TO
319 }
320
86538308
EM
321 /**
322 * @param bool $includeContactIDs
323 *
324 * @return string
325 */
00be9182 326 public function where($includeContactIDs = FALSE) {
47b8444f
SL
327 $where = ' ( 1 ) ';
328 if ($this->_aclWhere) {
b3798d48 329 $where .= " AND {$this->_aclWhere} ";
47b8444f
SL
330 }
331 return $where;
6a488035
TO
332 }
333
86538308
EM
334 /**
335 * @return string
336 */
00be9182 337 public function templateFile() {
6a488035
TO
338 return 'CRM/Contact/Form/Search/Custom.tpl';
339 }
340
86538308
EM
341 /**
342 * @param $row
343 */
51ccfbbe
TO
344 public function alterRow(&$row) {
345 }
6a488035 346
86538308
EM
347 /**
348 * @param $title
349 */
00be9182 350 public function setTitle($title) {
6a488035
TO
351 if ($title) {
352 CRM_Utils_System::setTitle($title);
353 }
354 else {
355 CRM_Utils_System::setTitle(ts('Export Price Set Info for an Event'));
356 }
357 }
96025800 358
d14ccbdc
SL
359 /**
360 * @param string $tableAlias
361 */
362 public function buildACLClause($tableAlias = 'contact') {
363 list($this->_aclFrom, $this->_aclWhere) = CRM_Contact_BAO_Contact_Permission::cacheClause($tableAlias);
364 }
365
6a488035 366}