-
Notifications
You must be signed in to change notification settings - Fork 1
/
Form.php
263 lines (224 loc) · 6.27 KB
/
Form.php
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<?php
namespace flyingpiranhas\forms;
use flyingpiranhas\common\traits\PropertySetter;
use flyingpiranhas\common\http\Request;
use flyingpiranhas\common\http\interfaces\RequestInterface;
use flyingpiranhas\forms\elements\abstracts\ElementAbstract;
use flyingpiranhas\forms\exceptions\FormException;
use flyingpiranhas\forms\elements\Checkbox;
/**
* The form object is responsible for parsing and validating form input.
* It holds references to various element objects and can process input.
*
* Create forms by extending this class and adding an array of elements to it.
* Override the process method to implement form processing.
* Override the sViewFragmentPath property to set the view file path, for easy form html rendering.
*
* @category forms
* @package flyingpiranhas.forms
* @license Apache-2.0
* @version 0.01
* @since 2012-09-07
* @author Ivan Pintar
*/
class Form
{
use PropertySetter;
/** @var bool */
protected $bPostback = false;
/** @var array */
protected $aElements = array();
/** @var string */
protected $sViewFragmentPath = '';
/**
* @param array $aProperties
*/
public function __construct(array $aProperties = array())
{
$this->setProperties($aProperties);
$this->setElements($this->aElements);
}
/**
* @return array
*/
public function getElements()
{
return $this->aElements;
}
/**
* @param string $sKey
*
* @return ElementAbstract
* @throws FormException
*/
public function getElement($sKey)
{
if (!isset($this->aElements[$sKey])) {
throw new FormException('The element ' . $sKey . ' was not defined');
}
return $this->aElements[$sKey];
}
/**
* @return bool
*/
public function isPostback()
{
return $this->bPostback;
}
/**
* @return array
*/
public function getValue()
{
$aValues = array();
foreach ($this->aElements as $sKey => $oElement) {
if ($oElement instanceof Checkbox && $oElement->isChecked()) {
$aValues[$sKey] = $oElement->getValue();
} else if (!($oElement instanceof Checkbox)) {
$aValues[$sKey] = $oElement->getValue();
}
}
return $aValues;
}
/**
* @return bool
*/
public function isValid()
{
if (!$this->isPostback()) {
return true;
}
/** @var $oElement ElementAbstract */
foreach ($this->aElements as $oElement) {
if (!$oElement->isValid()) {
return false;
}
}
return true;
}
/**
* @param array $aElements
*
* @return Form
*/
public function setElements(array $aElements)
{
$this->aElements = array();
foreach ($aElements as $sKey => $oElement) {
$this->addElement($sKey, $oElement);
}
return $this;
}
/**
* @param string $sKey
* @param ElementAbstract|array $oElement
*
* @return Form
* @throws FormException
*/
public function addElement($sKey, $oElement)
{
$oElement = $this->buildElement($oElement);
$this->aElements[$sKey] = $oElement;
if ($oElement->getName() === null) {
$oElement->setName($sKey);
}
return $this;
}
/**
* @param array $aValue
*
* @return Form
* @throws FormException
*/
public function setValue(array $aValue)
{
/** @var $oElement ElementAbstract|Checkbox */
foreach ($this->aElements as $sKey => $oElement) {
if ($oElement instanceof Checkbox) {
$oElement->setChecked(isset($aValue[$sKey]) && $aValue[$sKey] == $oElement->getValue());
} else if (isset($aValue[$sKey])) {
$oElement->setValue($aValue[$sKey]);
} else {
$oElement->setValue(null);
}
}
return $this;
}
/**
* @param string $sViewFragmentPath
*
* @return Form
*/
public function setViewFragmentPath($sViewFragmentPath)
{
$this->sViewFragmentPath = $sViewFragmentPath;
return $this;
}
/**
* Echos the form html
*
* @throws FormException
*/
public function render()
{
if (!empty($this->sViewFragmentPath) && is_readable($this->sViewFragmentPath)) {
include $this->sViewFragmentPath;
return;
}
throw new FormException('No form view file could be found');
}
/**
* @param RequestInterface $oRequest
*
* @return Form
*/
public function process(RequestInterface $oRequest)
{
$this->bPostback = true;
$sRequestMethod = $oRequest->getServer()['REQUEST_METHOD'];
$aValues = $oRequest->getParams($sRequestMethod);
foreach ($oRequest->getParams(Request::PARAM_TYPES_FILES) as $sKey => $aFile) {
$aValues[$sKey] = $aFile;
}
$this->setValue($aValues);
return $this->processPost();
}
/**
* Called when processing the request.
* Override this method to provide custom form processing logic,
* after the validation has been performed.
* Return true if processing was successful.
* Return false if processing has failed.
*
* If not overriden, returns the validation result.
*
* @return bool
*/
protected function processPost()
{
return $this->isValid();
}
/**
* Builds an element from an array of settings
*
* @param ElementAbstract|null $aElement
*
* @return ElementAbstract
*/
protected function buildElement(&$aElement)
{
if ($aElement instanceof ElementAbstract) {
return $aElement->setForm($this);
}
$sClassName = (isset($aElement['class'])) ? $aElement['class'] : __NAMESPACE__ . '\\elements\\' . ucfirst($aElement['type']);
$aElement['form'] = $this;
if (isset($aElement['class'])) {
unset($aElement['class']);
}
if (isset($aElement['type'])) {
unset($aElement['type']);
}
return new $sClassName($aElement);
}
}