Form.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\DomCrawler;
  11. use Symfony\Component\DomCrawler\Field\ChoiceFormField;
  12. use Symfony\Component\DomCrawler\Field\FormField;
  13. /**
  14. * Form represents an HTML form.
  15. *
  16. * @author Fabien Potencier <fabien@symfony.com>
  17. */
  18. class Form extends Link implements \ArrayAccess
  19. {
  20. /**
  21. * @var \DOMElement
  22. */
  23. private $button;
  24. /**
  25. * @var FormFieldRegistry
  26. */
  27. private $fields;
  28. /**
  29. * @var string
  30. */
  31. private $baseHref;
  32. /**
  33. * Constructor.
  34. *
  35. * @param \DOMElement $node A \DOMElement instance
  36. * @param string $currentUri The URI of the page where the form is embedded
  37. * @param string $method The method to use for the link (if null, it defaults to the method defined by the form)
  38. * @param string $baseHref The URI of the <base> used for relative links, but not for empty action
  39. *
  40. * @throws \LogicException if the node is not a button inside a form tag
  41. */
  42. public function __construct(\DOMElement $node, $currentUri, $method = null, $baseHref = null)
  43. {
  44. parent::__construct($node, $currentUri, $method);
  45. $this->baseHref = $baseHref;
  46. $this->initialize();
  47. }
  48. /**
  49. * Gets the form node associated with this form.
  50. *
  51. * @return \DOMElement A \DOMElement instance
  52. */
  53. public function getFormNode()
  54. {
  55. return $this->node;
  56. }
  57. /**
  58. * Sets the value of the fields.
  59. *
  60. * @param array $values An array of field values
  61. *
  62. * @return $this
  63. */
  64. public function setValues(array $values)
  65. {
  66. foreach ($values as $name => $value) {
  67. $this->fields->set($name, $value);
  68. }
  69. return $this;
  70. }
  71. /**
  72. * Gets the field values.
  73. *
  74. * The returned array does not include file fields (@see getFiles).
  75. *
  76. * @return array An array of field values
  77. */
  78. public function getValues()
  79. {
  80. $values = array();
  81. foreach ($this->fields->all() as $name => $field) {
  82. if ($field->isDisabled()) {
  83. continue;
  84. }
  85. if (!$field instanceof Field\FileFormField && $field->hasValue()) {
  86. $values[$name] = $field->getValue();
  87. }
  88. }
  89. return $values;
  90. }
  91. /**
  92. * Gets the file field values.
  93. *
  94. * @return array An array of file field values
  95. */
  96. public function getFiles()
  97. {
  98. if (!in_array($this->getMethod(), array('POST', 'PUT', 'DELETE', 'PATCH'))) {
  99. return array();
  100. }
  101. $files = array();
  102. foreach ($this->fields->all() as $name => $field) {
  103. if ($field->isDisabled()) {
  104. continue;
  105. }
  106. if ($field instanceof Field\FileFormField) {
  107. $files[$name] = $field->getValue();
  108. }
  109. }
  110. return $files;
  111. }
  112. /**
  113. * Gets the field values as PHP.
  114. *
  115. * This method converts fields with the array notation
  116. * (like foo[bar] to arrays) like PHP does.
  117. *
  118. * @return array An array of field values
  119. */
  120. public function getPhpValues()
  121. {
  122. $values = array();
  123. foreach ($this->getValues() as $name => $value) {
  124. $qs = http_build_query(array($name => $value), '', '&');
  125. if (!empty($qs)) {
  126. parse_str($qs, $expandedValue);
  127. $varName = substr($name, 0, strlen(key($expandedValue)));
  128. $values = array_replace_recursive($values, array($varName => current($expandedValue)));
  129. }
  130. }
  131. return $values;
  132. }
  133. /**
  134. * Gets the file field values as PHP.
  135. *
  136. * This method converts fields with the array notation
  137. * (like foo[bar] to arrays) like PHP does.
  138. * The returned array is consistent with the array for field values
  139. * (@see getPhpValues), rather than uploaded files found in $_FILES.
  140. * For a compound file field foo[bar] it will create foo[bar][name],
  141. * instead of foo[name][bar] which would be found in $_FILES.
  142. *
  143. * @return array An array of file field values
  144. */
  145. public function getPhpFiles()
  146. {
  147. $values = array();
  148. foreach ($this->getFiles() as $name => $value) {
  149. $qs = http_build_query(array($name => $value), '', '&');
  150. if (!empty($qs)) {
  151. parse_str($qs, $expandedValue);
  152. $varName = substr($name, 0, strlen(key($expandedValue)));
  153. $values = array_replace_recursive($values, array($varName => current($expandedValue)));
  154. }
  155. }
  156. return $values;
  157. }
  158. /**
  159. * Gets the URI of the form.
  160. *
  161. * The returned URI is not the same as the form "action" attribute.
  162. * This method merges the value if the method is GET to mimics
  163. * browser behavior.
  164. *
  165. * @return string The URI
  166. */
  167. public function getUri()
  168. {
  169. $uri = parent::getUri();
  170. if (!in_array($this->getMethod(), array('POST', 'PUT', 'DELETE', 'PATCH'))) {
  171. $query = parse_url($uri, PHP_URL_QUERY);
  172. $currentParameters = array();
  173. if ($query) {
  174. parse_str($query, $currentParameters);
  175. }
  176. $queryString = http_build_query(array_merge($currentParameters, $this->getValues()), null, '&');
  177. $pos = strpos($uri, '?');
  178. $base = false === $pos ? $uri : substr($uri, 0, $pos);
  179. $uri = rtrim($base.'?'.$queryString, '?');
  180. }
  181. return $uri;
  182. }
  183. protected function getRawUri()
  184. {
  185. // If the form was created from a button rather than the form node, check for HTML5 action overrides
  186. if ($this->button !== $this->node && $this->button->getAttribute('formaction')) {
  187. return $this->button->getAttribute('formaction');
  188. }
  189. return $this->node->getAttribute('action');
  190. }
  191. /**
  192. * Gets the form method.
  193. *
  194. * If no method is defined in the form, GET is returned.
  195. *
  196. * @return string The method
  197. */
  198. public function getMethod()
  199. {
  200. if (null !== $this->method) {
  201. return $this->method;
  202. }
  203. // If the form was created from a button rather than the form node, check for HTML5 method override
  204. if ($this->button !== $this->node && $this->button->getAttribute('formmethod')) {
  205. return strtoupper($this->button->getAttribute('formmethod'));
  206. }
  207. return $this->node->getAttribute('method') ? strtoupper($this->node->getAttribute('method')) : 'GET';
  208. }
  209. /**
  210. * Returns true if the named field exists.
  211. *
  212. * @param string $name The field name
  213. *
  214. * @return bool true if the field exists, false otherwise
  215. */
  216. public function has($name)
  217. {
  218. return $this->fields->has($name);
  219. }
  220. /**
  221. * Removes a field from the form.
  222. *
  223. * @param string $name The field name
  224. */
  225. public function remove($name)
  226. {
  227. $this->fields->remove($name);
  228. }
  229. /**
  230. * Gets a named field.
  231. *
  232. * @param string $name The field name
  233. *
  234. * @return FormField The field instance
  235. *
  236. * @throws \InvalidArgumentException When field is not present in this form
  237. */
  238. public function get($name)
  239. {
  240. return $this->fields->get($name);
  241. }
  242. /**
  243. * Sets a named field.
  244. *
  245. * @param FormField $field The field
  246. */
  247. public function set(FormField $field)
  248. {
  249. $this->fields->add($field);
  250. }
  251. /**
  252. * Gets all fields.
  253. *
  254. * @return FormField[]
  255. */
  256. public function all()
  257. {
  258. return $this->fields->all();
  259. }
  260. /**
  261. * Returns true if the named field exists.
  262. *
  263. * @param string $name The field name
  264. *
  265. * @return bool true if the field exists, false otherwise
  266. */
  267. public function offsetExists($name)
  268. {
  269. return $this->has($name);
  270. }
  271. /**
  272. * Gets the value of a field.
  273. *
  274. * @param string $name The field name
  275. *
  276. * @return FormField The associated Field instance
  277. *
  278. * @throws \InvalidArgumentException if the field does not exist
  279. */
  280. public function offsetGet($name)
  281. {
  282. return $this->fields->get($name);
  283. }
  284. /**
  285. * Sets the value of a field.
  286. *
  287. * @param string $name The field name
  288. * @param string|array $value The value of the field
  289. *
  290. * @throws \InvalidArgumentException if the field does not exist
  291. */
  292. public function offsetSet($name, $value)
  293. {
  294. $this->fields->set($name, $value);
  295. }
  296. /**
  297. * Removes a field from the form.
  298. *
  299. * @param string $name The field name
  300. */
  301. public function offsetUnset($name)
  302. {
  303. $this->fields->remove($name);
  304. }
  305. /**
  306. * Disables validation.
  307. *
  308. * @return self
  309. */
  310. public function disableValidation()
  311. {
  312. foreach ($this->fields->all() as $field) {
  313. if ($field instanceof Field\ChoiceFormField) {
  314. $field->disableValidation();
  315. }
  316. }
  317. return $this;
  318. }
  319. /**
  320. * Sets the node for the form.
  321. *
  322. * Expects a 'submit' button \DOMElement and finds the corresponding form element, or the form element itself.
  323. *
  324. * @param \DOMElement $node A \DOMElement instance
  325. *
  326. * @throws \LogicException If given node is not a button or input or does not have a form ancestor
  327. */
  328. protected function setNode(\DOMElement $node)
  329. {
  330. $this->button = $node;
  331. if ('button' === $node->nodeName || ('input' === $node->nodeName && in_array(strtolower($node->getAttribute('type')), array('submit', 'button', 'image')))) {
  332. if ($node->hasAttribute('form')) {
  333. // if the node has the HTML5-compliant 'form' attribute, use it
  334. $formId = $node->getAttribute('form');
  335. $form = $node->ownerDocument->getElementById($formId);
  336. if (null === $form) {
  337. throw new \LogicException(sprintf('The selected node has an invalid form attribute (%s).', $formId));
  338. }
  339. $this->node = $form;
  340. return;
  341. }
  342. // we loop until we find a form ancestor
  343. do {
  344. if (null === $node = $node->parentNode) {
  345. throw new \LogicException('The selected node does not have a form ancestor.');
  346. }
  347. } while ('form' !== $node->nodeName);
  348. } elseif ('form' !== $node->nodeName) {
  349. throw new \LogicException(sprintf('Unable to submit on a "%s" tag.', $node->nodeName));
  350. }
  351. $this->node = $node;
  352. }
  353. /**
  354. * Adds form elements related to this form.
  355. *
  356. * Creates an internal copy of the submitted 'button' element and
  357. * the form node or the entire document depending on whether we need
  358. * to find non-descendant elements through HTML5 'form' attribute.
  359. */
  360. private function initialize()
  361. {
  362. $this->fields = new FormFieldRegistry();
  363. $xpath = new \DOMXPath($this->node->ownerDocument);
  364. // add submitted button if it has a valid name
  365. if ('form' !== $this->button->nodeName && $this->button->hasAttribute('name') && $this->button->getAttribute('name')) {
  366. if ('input' == $this->button->nodeName && 'image' == strtolower($this->button->getAttribute('type'))) {
  367. $name = $this->button->getAttribute('name');
  368. $this->button->setAttribute('value', '0');
  369. // temporarily change the name of the input node for the x coordinate
  370. $this->button->setAttribute('name', $name.'.x');
  371. $this->set(new Field\InputFormField($this->button));
  372. // temporarily change the name of the input node for the y coordinate
  373. $this->button->setAttribute('name', $name.'.y');
  374. $this->set(new Field\InputFormField($this->button));
  375. // restore the original name of the input node
  376. $this->button->setAttribute('name', $name);
  377. } else {
  378. $this->set(new Field\InputFormField($this->button));
  379. }
  380. }
  381. // find form elements corresponding to the current form
  382. if ($this->node->hasAttribute('id')) {
  383. // corresponding elements are either descendants or have a matching HTML5 form attribute
  384. $formId = Crawler::xpathLiteral($this->node->getAttribute('id'));
  385. $fieldNodes = $xpath->query(sprintf('descendant::input[@form=%s] | descendant::button[@form=%s] | descendant::textarea[@form=%s] | descendant::select[@form=%s] | //form[@id=%s]//input[not(@form)] | //form[@id=%s]//button[not(@form)] | //form[@id=%s]//textarea[not(@form)] | //form[@id=%s]//select[not(@form)]', $formId, $formId, $formId, $formId, $formId, $formId, $formId, $formId));
  386. foreach ($fieldNodes as $node) {
  387. $this->addField($node);
  388. }
  389. } else {
  390. // do the xpath query with $this->node as the context node, to only find descendant elements
  391. // however, descendant elements with form attribute are not part of this form
  392. $fieldNodes = $xpath->query('descendant::input[not(@form)] | descendant::button[not(@form)] | descendant::textarea[not(@form)] | descendant::select[not(@form)]', $this->node);
  393. foreach ($fieldNodes as $node) {
  394. $this->addField($node);
  395. }
  396. }
  397. if ($this->baseHref && '' !== $this->node->getAttribute('action')) {
  398. $this->currentUri = $this->baseHref;
  399. }
  400. }
  401. private function addField(\DOMElement $node)
  402. {
  403. if (!$node->hasAttribute('name') || !$node->getAttribute('name')) {
  404. return;
  405. }
  406. $nodeName = $node->nodeName;
  407. if ('select' == $nodeName || 'input' == $nodeName && 'checkbox' == strtolower($node->getAttribute('type'))) {
  408. $this->set(new Field\ChoiceFormField($node));
  409. } elseif ('input' == $nodeName && 'radio' == strtolower($node->getAttribute('type'))) {
  410. // there may be other fields with the same name that are no choice
  411. // fields already registered (see https://github.com/symfony/symfony/issues/11689)
  412. if ($this->has($node->getAttribute('name')) && $this->get($node->getAttribute('name')) instanceof ChoiceFormField) {
  413. $this->get($node->getAttribute('name'))->addChoice($node);
  414. } else {
  415. $this->set(new Field\ChoiceFormField($node));
  416. }
  417. } elseif ('input' == $nodeName && 'file' == strtolower($node->getAttribute('type'))) {
  418. $this->set(new Field\FileFormField($node));
  419. } elseif ('input' == $nodeName && !in_array(strtolower($node->getAttribute('type')), array('submit', 'button', 'image'))) {
  420. $this->set(new Field\InputFormField($node));
  421. } elseif ('textarea' == $nodeName) {
  422. $this->set(new Field\TextareaFormField($node));
  423. }
  424. }
  425. }