-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFieldhandlerUsageTrait.php
More file actions
212 lines (184 loc) · 4.8 KB
/
FieldhandlerUsageTrait.php
File metadata and controls
212 lines (184 loc) · 4.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<?php
/**
* Fieldhandler Usage Trait
*
* @package Fieldhandler
* @copyright 2014-2015 Amy Stephen. All rights reserved.
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
namespace CommonApi\Fieldhandler;
use Exception;
use CommonApi\Exception\InvalidArgumentException;
use CommonApi\Exception\RuntimeException;
/**
* Fieldhandler Usage Trait
*
* @package Fieldhandler
* @copyright 2014-2015 Amy Stephen. All rights reserved.
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @since 1.0.0
*/
trait FieldhandlerUsageTrait
{
/**
* Fieldhandler Instance
*
* @var object CommonApi\Fieldhandler\FieldhandlerInterface
* @since 1.0.0
*/
protected $fieldhandler;
/**
* Field Properties
*
* @var array
* @since 1.0.0
*/
protected $field;
/**
* Method
*
* @var string
* @since 1.0.0
*/
protected $method = null;
/**
* Field Name
*
* @var string
* @since 1.0.0
*/
protected $field_name = null;
/**
* Field Value
*
* @var string
* @since 1.0.0
*/
protected $field_value = null;
/**
* Field Type
*
* @var string
* @since 1.0.0
*/
protected $field_type = null;
/**
* Messages
*
* @var array
* @since 1.0.0
*/
protected $messages = array();
/**
* Process Field
*
* @param string $method
* @param array $field
* @param array $options
*
* @return $this
* @since 1.0.0
* @throws \CommonApi\Exception\InvalidArgumentException
*/
protected function processField($method, array $field = array(), array $options = array())
{
$this->field = $field;
$this->method = strtolower($method);
$this->editFieldhandlerMethod();
foreach (array('name', 'value', 'type') as $key) {
$this->editFieldhandlerAttribute($key);
}
$fieldhandler_results = $this->executeConstraint($options);
$this->processConstraintResults($fieldhandler_results);
return $this->field_value;
}
/**
* Edit Method for Fieldhandler Method
*
* @return $this
* @since 1.0.0
* @throws \CommonApi\Exception\InvalidArgumentException
*/
protected function editFieldhandlerMethod()
{
if (in_array($this->method, array('validate', 'sanitize', 'format'))) {
return $this;
}
throw new InvalidArgumentException(
get_class($this)
. ' passed in invalid Fieldhandler method '
. $this->method
. ' in FieldhandlerUsageTrait::editFieldhandlerMethod.'
);
}
/**
* Edit Fieldhandler Attribute
*
* @param string $attribute
*
* @return $this
* @since 1.0.0
* @throws \CommonApi\Exception\InvalidArgumentException
*/
protected function editFieldhandlerAttribute($attribute)
{
$field_name = 'field_' . $attribute;
$this->$field_name = null;
if (isset($this->field[$attribute])) {
$this->$field_name = $this->field[$attribute];
return $this;
}
if ($attribute === 'value') {
$this->$field_name = null;
return $this;
}
throw new InvalidArgumentException(
'No field ' . $attribute . ' passed into '
. get_class($this)
. ' FieldhandlerUsageTrait::editFieldhandlerAttribute '
);
}
/**
* Execute Fieldhandler Method
*
* @param array $options
*
* @return $this
* @since 1.0.0
* @throws \CommonApi\Exception\RuntimeException
*/
protected function executeConstraint(array $options = array())
{
try {
$method = $this->method;
return $this->fieldhandler->$method(
$this->field_name,
$this->field_value,
ucfirst(strtolower($this->field_type)),
$options
);
} catch (Exception $e) {
throw new RuntimeException (
'FieldhandlerUsageTrait: executeConstraint method '
. ' used within class '
. get_class($this)
. ' caught this exception: '
. $e->getMessage()
);
}
}
/**
* Process Fieldhandler Results
*
* @param object $fieldhandler_results
*
* @return $this
* @since 1.0.0
* @throws \CommonApi\Exception\RuntimeException
*/
protected function processConstraintResults($fieldhandler_results)
{
$this->field_value = $fieldhandler_results->getFieldValue();
return $this;
}
}