Merge pull request #2842 from totten/master-api-rollback-soft-errors
[civicrm-core.git] / CRM / Member / Form / MembershipType.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * This class generates form components for Membership Type
38 *
39 */
40 class CRM_Member_Form_MembershipType extends CRM_Member_Form {
41
42 /**
43 * max number of contacts we will display for membership-organisation
44 */
45 CONST MAX_CONTACTS = 50;
46
47 function preProcess() {
48 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE, 0 );
49 $this->_BAOName = 'CRM_Member_BAO_MembershipType';
50 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'add');
51 $this->assign('action', $this->_action);
52
53 $session = CRM_Core_Session::singleton();
54 $url = CRM_Utils_System::url('civicrm/admin/member/membershipType', 'reset=1');
55 $session->pushUserContext($url);
56 }
57
58 /**
59 * This function sets the default values for the form. MobileProvider that in edit/view mode
60 * the default values are retrieved from the database
61 *
62 * @access public
63 *
64 * @return void
65 */
66 public function setDefaultValues() {
67 $defaults = parent::setDefaultValues();
68
69 //finding default weight to be put
70 if (!isset($defaults['weight']) || (!$defaults['weight'])) {
71 $defaults['weight'] = CRM_Utils_Weight::getDefaultWeight('CRM_Member_DAO_MembershipType');
72 }
73 //setting default relationshipType
74 if (isset($defaults['relationship_type_id'])) {
75 //$defaults['relationship_type_id'] = $defaults['relationship_type_id'].'_a_b';
76 // Set values for relation type select box
77 $relTypeIds = explode(CRM_Core_DAO::VALUE_SEPARATOR, $defaults['relationship_type_id']);
78 $relDirections = explode(CRM_Core_DAO::VALUE_SEPARATOR, $defaults['relationship_direction']);
79 $defaults['relationship_type_id'] = array();
80 foreach ($relTypeIds as $key => $value) {
81 $defaults['relationship_type_id'][] = $value . '_' . $relDirections[$key];
82 }
83 }
84
85
86 //setting default fixed_period_start_day & fixed_period_rollover_day
87 $periods = array('fixed_period_start_day', 'fixed_period_rollover_day');
88 foreach ($periods as $per) {
89 if (isset($defaults[$per])) {
90 $date = $defaults[$per];
91
92 $defaults[$per] = array();
93 if ($date > 31) {
94 $date = ($date < 999) ? '0' . $date : $date;
95 $defaults[$per]['M'] = substr($date, 0, 2);
96 $defaults[$per]['d'] = substr($date, 2, 3);
97 }
98 else {
99 //special case when only day is rollover and duration is month
100 $defaults['month_fixed_period_rollover_day']['d'] = $date;
101 }
102 }
103 }
104
105 return $defaults;
106 }
107
108 /**
109 * Function to build the form
110 *
111 * @return void
112 * @access public
113 */
114 public function buildQuickForm() {
115 parent::buildQuickForm();
116
117 if ($this->_action & CRM_Core_Action::DELETE) {
118 return;
119 }
120
121 $this->applyFilter('__ALL__', 'trim');
122 $this->add('text', 'name', ts('Name'), CRM_Core_DAO::getAttribute('CRM_Member_DAO_MembershipType', 'name'), TRUE);
123
124 $this->addRule('name', ts('A membership type with this name already exists. Please select another name.'),
125 'objectExists', array('CRM_Member_DAO_MembershipType', $this->_id)
126 );
127 $this->add('text', 'description', ts('Description'),
128 CRM_Core_DAO::getAttribute('CRM_Member_DAO_MembershipType', 'description')
129 );
130 $this->add('text', 'minimum_fee', ts('Minimum Fee'),
131 CRM_Core_DAO::getAttribute('CRM_Member_DAO_MembershipType', 'minimum_fee')
132 );
133 $this->addRule('minimum_fee', ts('Please enter a monetary value for the Minimum Fee.'), 'money');
134
135 $this->addSelect('duration_unit', array(), TRUE);
136
137 //period type
138 $this->addSelect('period_type', array(), TRUE);
139
140 $this->add('text', 'duration_interval', ts('Duration Interval'),
141 CRM_Core_DAO::getAttribute('CRM_Member_DAO_MembershipType', 'duration_interval')
142 );
143
144 $props = array('api' => array('params' => array('contact_type' => 'Organization')));
145 $this->addEntityRef('member_of_contact_id', ts('Membership Organization'), $props, TRUE);
146
147 //start day
148 $this->add('date', 'fixed_period_start_day', ts('Fixed Period Start Day'),
149 CRM_Core_SelectValues::date(NULL, 'M d'), FALSE
150 );
151
152 //Auto-renew Option
153 $paymentProcessor = CRM_Core_PseudoConstant::paymentProcessor(FALSE, FALSE, 'is_recur = 1');
154 $isAuthorize = FALSE;
155 $options = array();
156 if (is_array($paymentProcessor) && !empty($paymentProcessor)) {
157 $isAuthorize = TRUE;
158 $options = array(ts('No auto-renew option'), ts('Give option, but not required'), ts('Auto-renew required '));
159 }
160
161 $this->addRadio('auto_renew', ts('Auto-renew Option'), $options);
162 $this->assign('authorize', $isAuthorize);
163
164 //rollover day
165 $this->add('date', 'fixed_period_rollover_day', ts('Fixed Period Rollover Day'),
166 CRM_Core_SelectValues::date(NULL, 'M d'), FALSE
167 );
168 $this->add('date', 'month_fixed_period_rollover_day', ts('Fixed Period Rollover Day'),
169 CRM_Core_SelectValues::date(NULL, 'd'), FALSE
170 );
171
172 $this->add('select', 'financial_type_id', ts( 'Financial Type' ),
173 array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::financialType(), TRUE, array('class' => 'crm-select2')
174 );
175
176 $relTypeInd = CRM_Contact_BAO_Relationship::getContactRelationshipType(NULL, NULL, NULL, NULL, TRUE);
177 if (is_array($relTypeInd)) {
178 asort($relTypeInd);
179 }
180 $memberRel = &$this->add('select', 'relationship_type_id', ts('Relationship Type'),
181 array('' => ts('- select -')) + $relTypeInd);
182 $memberRel->setMultiple(TRUE);
183
184 $this->addSelect('visibility', array('placeholder' => NULL, 'option_url' => NULL));
185
186 $this->add('text', 'weight', ts('Order'),
187 CRM_Core_DAO::getAttribute('CRM_Member_DAO_MembershipType', 'weight')
188 );
189 $this->add('checkbox', 'is_active', ts('Enabled?'));
190
191 $membershipRecords = FALSE;
192 if ($this->_action & CRM_Core_Action::UPDATE) {
193 $membershipType = new CRM_Member_BAO_Membership();
194 $membershipType->membership_type_id = $this->_id;
195 if ($membershipType->find(TRUE)) {
196 $membershipRecords = TRUE;
197 $memberRel->freeze();
198 }
199 }
200
201 $this->assign('membershipRecordsExists', $membershipRecords);
202
203 $this->add('text', 'max_related', ts('Max related'),
204 CRM_Core_DAO::getAttribute('CRM_Member_DAO_MembershipType', 'max_related')
205 );
206
207 $this->addFormRule(array('CRM_Member_Form_MembershipType', 'formRule'));
208
209 $this->assign('membershipTypeId', $this->_id);
210 }
211
212 /**
213 * Function for validation
214 *
215 * @param array $params (ref.) an assoc array of name/value pairs
216 *
217 * @return mixed true or array of errors
218 * @access public
219 * @static
220 */
221 static function formRule($params) {
222 $errors = array();
223
224 if (!$params['name']) {
225 $errors['name'] = ts('Please enter a membership type name.');
226 }
227
228 if (($params['minimum_fee'] > 0 ) && !$params['financial_type_id'] ) {
229 $errors['financial_type_id'] = ts('Please enter the financial type.');
230 }
231
232 if (empty($params['duration_interval']) and $params['duration_unit'] != 'lifetime') {
233 $errors['duration_interval'] = ts('Please enter a duration interval.');
234 }
235
236 if (in_array(CRM_Utils_Array::value('auto_renew', $params), array(
237 1, 2))) {
238 if (($params['duration_interval'] > 1 && $params['duration_unit'] == 'year') ||
239 ($params['duration_interval'] > 12 && $params['duration_unit'] == 'month')
240 ) {
241 $errors['duration_unit'] = ts('Automatic renewals are not supported by the currently available payment processors when the membership duration is greater than 1 year / 12 months.');
242 }
243 }
244
245 if ($params['period_type'] == 'fixed' &&
246 $params['duration_unit'] == 'day'
247 ) {
248 $errors['period_type'] = ts('Period type should be Rolling when duration unit is Day');
249 }
250
251 if (($params['period_type'] == 'fixed') &&
252 ($params['duration_unit'] == 'year')
253 ) {
254 $periods = array('fixed_period_start_day', 'fixed_period_rollover_day');
255 foreach ($periods as $period) {
256 $month = $params[$period]['M'];
257 $date = $params[$period]['d'];
258 if (!$month || !$date) {
259 switch ($period) {
260 case 'fixed_period_start_day':
261 $errors[$period] = ts('Please enter a valid fixed period start day');
262 break;
263
264 case 'fixed_period_rollover_day':
265 $errors[$period] = ts('Please enter a valid fixed period rollover day');
266 break;
267 }
268 }
269 }
270 }
271
272 if ($params['fixed_period_start_day'] && !empty($params['fixed_period_start_day'])) {
273 $params['fixed_period_start_day']['Y'] = date('Y');
274 if (!CRM_Utils_Rule::qfDate($params['fixed_period_start_day'])) {
275 $errors['fixed_period_start_day'] = ts('Please enter valid Fixed Period Start Day');
276 }
277 }
278
279 if ($params['fixed_period_rollover_day'] && !empty($params['fixed_period_rollover_day'])) {
280 $params['fixed_period_rollover_day']['Y'] = date('Y');
281 if (!CRM_Utils_Rule::qfDate($params['fixed_period_rollover_day'])) {
282 $errors['fixed_period_rollover_day'] = ts('Please enter valid Fixed Period Rollover Day');
283 }
284 }
285
286 return empty($errors) ? TRUE : $errors;
287 }
288
289 /**
290 * Function to process the form
291 *
292 * @access public
293 *
294 * @return void
295 */
296 public function postProcess() {
297 if ($this->_action & CRM_Core_Action::DELETE) {
298 try{
299 CRM_Member_BAO_MembershipType::del($this->_id);
300 }
301 catch(CRM_Core_Exception $e) {
302 CRM_Core_Error::statusBounce($e->getMessage(), NULL, ts('Membership Type Not Deleted'));
303 }
304 CRM_Core_Session::setStatus(ts('Selected membership type has been deleted.'), ts('Record Deleted'), 'success');
305 }
306 else {
307 $buttonName = $this->controller->getButtonName();
308 $submitted = $this->controller->exportValues($this->_name);
309
310 $fields = array(
311 'name',
312 'weight',
313 'is_active',
314 'member_of_contact_id',
315 'visibility',
316 'period_type',
317 'minimum_fee',
318 'description',
319 'auto_renew',
320 'duration_unit',
321 'duration_interval',
322 'financial_type_id',
323 'fixed_period_start_day',
324 'fixed_period_rollover_day',
325 'month_fixed_period_rollover_day',
326 'max_related'
327 );
328
329 $params = $ids = array();
330 foreach ($fields as $fld) {
331 $params[$fld] = CRM_Utils_Array::value($fld, $submitted, 'NULL');
332 }
333
334 //clean money.
335 if ($params['minimum_fee']) {
336 $params['minimum_fee'] = CRM_Utils_Rule::cleanMoney($params['minimum_fee']);
337 }
338
339 $hasRelTypeVal = FALSE;
340 if (!CRM_Utils_System::isNull($submitted['relationship_type_id'])) {
341 // To insert relation ids and directions with value separator
342 $relTypeDirs = $submitted['relationship_type_id'];
343 $relIds = $relDirection = array();
344 foreach ($relTypeDirs as $key => $value) {
345 $relationId = explode('_', $value);
346 if (count($relationId) == 3 &&
347 is_numeric($relationId[0])
348 ) {
349 $relIds[] = $relationId[0];
350 $relDirection[] = $relationId[1] . '_' . $relationId[2];
351 }
352 }
353 if (!empty($relIds)) {
354 $hasRelTypeVal = TRUE;
355 $params['relationship_type_id'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $relIds);
356 $params['relationship_direction'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $relDirection);
357 }
358 }
359 if (!$hasRelTypeVal) {
360 $params['relationship_type_id'] = $params['relationship_direction'] = $params['max_related'] = 'NULL';
361 }
362
363 if ($params['duration_unit'] == 'lifetime' &&
364 empty($params['duration_interval'])
365 ) {
366 $params['duration_interval'] = 1;
367 }
368
369 $periods = array('fixed_period_start_day', 'fixed_period_rollover_day');
370 foreach ($periods as $per) {
371 if (!empty($params[$per]['M']) && !empty($params[$per]['d'])) {
372 $mon = $params[$per]['M'];
373 $dat = $params[$per]['d'];
374 $mon = ($mon < 10) ? '0' . $mon : $mon;
375 $dat = ($dat < 10) ? '0' . $dat : $dat;
376 $params[$per] = $mon . $dat;
377 }
378 else if($per == 'fixed_period_rollover_day' && !empty($params['month_fixed_period_rollover_day'])){
379 $params['fixed_period_rollover_day'] = $params['month_fixed_period_rollover_day']['d'];
380 unset($params['month_fixed_period_rollover_day']);
381 }
382 else {
383 $params[$per] = 'NULL';
384 }
385 }
386 $oldWeight = NULL;
387
388 if ($this->_id) {
389 $oldWeight = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType',
390 $this->_id, 'weight', 'id'
391 );
392 }
393 $params['weight'] = CRM_Utils_Weight::updateOtherWeights('CRM_Member_DAO_MembershipType',
394 $oldWeight, $params['weight']
395 );
396
397 if ($this->_action & CRM_Core_Action::UPDATE) {
398 $ids['membershipType'] = $this->_id;
399 }
400
401 $membershipType = CRM_Member_BAO_MembershipType::add($params, $ids);
402
403 CRM_Core_Session::setStatus(ts('The membership type \'%1\' has been saved.',
404 array(1 => $membershipType->name)
405 ), ts('Saved'), 'success');
406 $session = CRM_Core_Session::singleton();
407 if ($buttonName == $this->getButtonName('upload', 'new')) {
408 $session->replaceUserContext(
409 CRM_Utils_System::url('civicrm/admin/member/membershipType/add', 'action=add&reset=1')
410 );
411 }
412 }
413 }
414
415 /**
416 * @param $previousID
417 * @param $priceSetId
418 * @param $membershipTypeId
419 * @param $optionsIds
420 */
421 public static function checkPreviousPriceField($previousID, $priceSetId, $membershipTypeId, &$optionsIds) {
422 if ($previousID) {
423 $editedFieldParams = array(
424 'price_set_id ' => $priceSetId,
425 'name' => $previousID,
426 );
427 $editedResults = array();
428 CRM_Price_BAO_PriceField::retrieve($editedFieldParams, $editedResults);
429 if (!empty($editedResults)) {
430 $editedFieldParams = array(
431 'price_field_id' => $editedResults['id'],
432 'membership_type_id' => $membershipTypeId,
433 );
434 $editedResults = array();
435 CRM_Price_BAO_PriceFieldValue::retrieve($editedFieldParams, $editedResults);
436 $optionsIds['option_id'][1] = CRM_Utils_Array::value('id', $editedResults);
437 }
438 }
439 }
440 }
441