Merge remote-tracking branch 'upstream/4.3' into 4.3-master-2013-05-01-11-04-54
[civicrm-core.git] / CRM / Contribute / Import / Field.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 class CRM_Contribute_Import_Field {
36
37 /**#@+
38 * @access protected
39 * @var string
40 */
41
42 /**
43 * name of the field
44 */
45 public $_name;
46
47 /**
48 * title of the field to be used in display
49 */
50 public $_title;
51
52 /**
53 * type of field
54 * @var enum
55 */
56 public $_type;
57
58 /**
59 * is this field required
60 * @var boolean
61 */
62 public $_required;
63
64 /**
65 * data to be carried for use by a derived class
66 * @var object
67 */
68 public $_payload;
69
70 /**
71 * regexp to match the CSV header of this column/field
72 * @var string
73 */
74 public $_headerPattern;
75
76 /**
77 * regexp to match the pattern of data from various column/fields
78 * @var string
79 */
80 public $_dataPattern;
81
82 /**
83 * value of this field
84 * @var object
85 */
86 public $_value;
87
88 /**
89 * this is soft credit field
90 * @var string
91 */
92 public $_softCreditField; function __construct($name, $title, $type = CRM_Utils_Type::T_INT, $headerPattern = '//', $dataPattern = '//', $softCreditField = NULL) {
93 $this->_name = $name;
94 $this->_title = $title;
95 $this->_type = $type;
96 $this->_headerPattern = $headerPattern;
97 $this->_dataPattern = $dataPattern;
98 $this->_softCreditField = $softCreditField;
99 $this->_value = NULL;
100 }
101
102 function resetValue() {
103 $this->_value = NULL;
104 }
105
106 /**
107 * the value is in string format. convert the value to the type of this field
108 * and set the field value with the appropriate type
109 */
110 function setValue($value) {
111 $this->_value = $value;
112 }
113
114 function validate() {
115
116 if (CRM_Utils_System::isNull($this->_value)) {
117 return TRUE;
118 }
119
120 switch ($this->_name) {
121 case 'contact_id':
122 // note: we validate extistence of the contact in API, upon
123 // insert (it would be too costlty to do a db call here)
124 return CRM_Utils_Rule::integer($this->_value);
125
126 case 'receive_date':
127 case 'cancel_date':
128 case 'receipt_date':
129 case 'thankyou_date':
130 return CRM_Utils_Rule::date($this->_value);
131
132 case 'non_deductible_amount':
133 case 'total_amount':
134 case 'fee_amount':
135 case 'net_amount':
136 return CRM_Utils_Rule::money($this->_value);
137
138 case 'trxn_id':
139 static $seenTrxnIds = array();
140 if (in_array($this->_value, $seenTrxnIds)) {
141 return FALSE;
142 }
143 elseif ($this->_value) {
144 $seenTrxnIds[] = $this->_value;
145 return TRUE;
146 }
147 else {
148 $this->_value = NULL;
149 return TRUE;
150 }
151 break;
152
153 case 'currency':
154 return CRM_Utils_Rule::currencyCode($this->_value);
155
156 case 'financial_type':
157 static $contributionTypes = NULL;
158 if (!$contributionTypes) {
159 $contributionTypes = CRM_Contribute_PseudoConstant::financialType();
160 }
161 if (in_array($this->_value, $contributionTypes)) {
162 return TRUE;
163 }
164 else {
165 return FALSE;
166 }
167 break;
168
169 case 'payment_instrument':
170 static $paymentInstruments = NULL;
171 if (!$paymentInstruments) {
172 $paymentInstruments = CRM_Contribute_PseudoConstant::paymentInstrument();
173 }
174 if (in_array($this->_value, $paymentInstruments)) {
175 return TRUE;
176 }
177 else {
178 return FALSE;
179 }
180 break;
181
182 default:
183 break;
184 }
185
186 // check whether that's a valid custom field id
187 // and if so, check the contents' validity
188 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($this->_name)) {
189 static $customFields = NULL;
190 if (!$customFields) {
191 $customFields = CRM_Core_BAO_CustomField::getFields('Contribution');
192 }
193 if (!array_key_exists($customFieldID, $customFields)) {
194 return FALSE;
195 }
196 return CRM_Core_BAO_CustomValue::typecheck($customFields[$customFieldID]['data_type'], $this->_value);
197 }
198
199 return TRUE;
200 }
201 }
202