Merge pull request #10403 from yashodha/CRM-20624
[civicrm-core.git] / CRM / Event / Import / Field.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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 * Class CRM_Event_Import_Field
30 */
31 class CRM_Event_Import_Field {
32
33 /**#@+
34 * @var string
35 */
36
37 /**
38 * Name of the field
39 */
40 public $_name;
41
42 /**
43 * Title of the field to be used in display
44 */
45 public $_title;
46
47 /**
48 * Type of field
49 * @var enum
50 */
51 public $_type;
52
53 /**
54 * Regexp to match the CSV header of this column/field
55 * @var string
56 */
57 public $_headerPattern;
58
59 /**
60 * Regexp to match the pattern of data from various column/fields
61 * @var string
62 */
63 public $_dataPattern;
64
65 /**
66 * Value of this field
67 * @var object
68 */
69 public $_value;
70
71 /**
72 * @param string $name
73 * @param $title
74 * @param int $type
75 * @param string $headerPattern
76 * @param string $dataPattern
77 */
78 public function __construct($name, $title, $type = CRM_Utils_Type::T_INT, $headerPattern = '//', $dataPattern = '//') {
79 $this->_name = $name;
80 $this->_title = $title;
81 $this->_type = $type;
82 $this->_headerPattern = $headerPattern;
83 $this->_dataPattern = $dataPattern;
84
85 $this->_value = NULL;
86 }
87
88 public function resetValue() {
89 $this->_value = NULL;
90 }
91
92 /**
93 * Convert the value to the type of this field and set the field value with the appropriate type.
94 *
95 * @param string $value
96 */
97 public function setValue($value) {
98 $this->_value = $value;
99 }
100
101 /**
102 * @return bool
103 */
104 public function validate() {
105 if (CRM_Utils_System::isNull($this->_value)) {
106 return TRUE;
107 }
108
109 switch ($this->_name) {
110 case 'contact_id':
111 // note: we validate extistence of the contact in API, upon
112 // insert (it would be too costlty to do a db call here)
113 return CRM_Utils_Rule::integer($this->_value);
114
115 case 'register_date':
116 return CRM_Utils_Rule::date($this->_value);
117
118 /* @codingStandardsIgnoreStart
119 case 'event_id':
120 static $events = null;
121 if (!$events) {
122 $events = CRM_Event_PseudoConstant::event();
123 }
124 if (in_array($this->_value, $events)) {
125 return true;
126 }
127 else {
128 return false;
129 }
130 break;
131 @codingStandardsIgnoreEnd */
132
133 default:
134 break;
135 }
136
137 // check whether that's a valid custom field id
138 // and if so, check the contents' validity
139 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($this->_name)) {
140 static $customFields = NULL;
141 if (!$customFields) {
142 $customFields = CRM_Core_BAO_CustomField::getFields('Participant');
143 }
144 if (!array_key_exists($customFieldID, $customFields)) {
145 return FALSE;
146 }
147 return CRM_Core_BAO_CustomValue::typecheck($customFields[$customFieldID]['data_type'], $this->_value);
148 }
149 return TRUE;
150 }
151
152 }