form.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. <?php namespace System;
  2. class Form {
  3. /**
  4. * Stores labels names.
  5. *
  6. * @var array
  7. */
  8. private static $labels = array();
  9. /**
  10. * Open a HTML form.
  11. *
  12. * @param string $action
  13. * @param string $method
  14. * @param array $attributes
  15. * @param bool $https
  16. * @return string
  17. */
  18. public static function open($action = null, $method = 'POST', $attributes = array(), $https = false)
  19. {
  20. $attributes['action'] = HTML::entities(URL::to(((is_null($action)) ? Request::uri() : $action), $https));
  21. // If the request method is PUT or DELETE, we'll default the request method to POST
  22. // since the request method is being spoofed by the form.
  23. $attributes['method'] = ($method == 'PUT' or $method == 'DELETE') ? 'POST' : $method;
  24. if ( ! array_key_exists('accept-charset', $attributes))
  25. {
  26. $attributes['accept-charset'] = Config::get('application.encoding');
  27. }
  28. $html = '<form'.HTML::attributes($attributes).'>';
  29. // If the request method is PUT or DELETE, create a hidden input element with the
  30. // request method in it since HTML forms do not support these two methods.
  31. if ($method == 'PUT' or $method == 'DELETE')
  32. {
  33. $html .= PHP_EOL.static::input('hidden', 'REQUEST_METHOD', $method);
  34. }
  35. return $html.PHP_EOL;
  36. }
  37. /**
  38. * Open a HTML form with a HTTPS action.
  39. *
  40. * @param string $action
  41. * @param string $method
  42. * @param array $attributes
  43. * @return string
  44. */
  45. public static function open_secure($action = null, $method = 'POST', $attributes = array())
  46. {
  47. return static::open($action, $method, $attributes, true);
  48. }
  49. /**
  50. * Open a HTML form that accepts file uploads.
  51. *
  52. * @param string $action
  53. * @param string $method
  54. * @param array $attributes
  55. * @param bool $https
  56. * @return string
  57. */
  58. public static function open_for_files($action = null, $method = 'POST', $attributes = array(), $https = false)
  59. {
  60. $attributes['enctype'] = 'multipart/form-data';
  61. return static::open($action, $method, $attributes, $https);
  62. }
  63. /**
  64. * Open a HTML form that accepts file uploads with a HTTPS action.
  65. *
  66. * @param string $action
  67. * @param string $method
  68. * @param array $attributes
  69. * @return string
  70. */
  71. public static function open_secure_for_files($action = null, $method = 'POST', $attributes = array())
  72. {
  73. return static::open_for_files($action, $method, $attributes, true);
  74. }
  75. /**
  76. * Close a HTML form.
  77. *
  78. * @return string
  79. */
  80. public static function close()
  81. {
  82. return '</form>';
  83. }
  84. /**
  85. * Generate a hidden field containing the current CSRF token.
  86. *
  87. * @return string
  88. */
  89. public static function token()
  90. {
  91. return static::input('hidden', 'csrf_token', static::raw_token());
  92. }
  93. /**
  94. * Retrieve the current CSRF token.
  95. *
  96. * @return string
  97. */
  98. public static function raw_token()
  99. {
  100. if (Config::get('session.driver') == '')
  101. {
  102. throw new \Exception('Sessions must be enabled to retrieve a CSRF token.');
  103. }
  104. return Session::get('csrf_token');
  105. }
  106. /**
  107. * Create a HTML label element.
  108. *
  109. * @param string $name
  110. * @param string $value
  111. * @param array $attributes
  112. * @return string
  113. */
  114. public static function label($name, $value, $attributes = array())
  115. {
  116. static::$labels[] = $name;
  117. return '<label for="'.$name.'"'.HTML::attributes($attributes).'>'.HTML::entities($value).'</label>'.PHP_EOL;
  118. }
  119. /**
  120. * Create a HTML input element.
  121. *
  122. * @param string $name
  123. * @param mixed $value
  124. * @param array $attributes
  125. * @return string
  126. */
  127. public static function input($type, $name, $value = null, $attributes = array())
  128. {
  129. return '<input'.HTML::attributes(array_merge($attributes, array('type' => $type, 'name' => $name, 'value' => $value, 'id' => static::id($name, $attributes)))).'>'.PHP_EOL;
  130. }
  131. /**
  132. * Create a HTML text input element.
  133. *
  134. * @param string $name
  135. * @param string $value
  136. * @param array $attributes
  137. * @return string
  138. */
  139. public static function text($name, $value = null, $attributes = array())
  140. {
  141. return static::input('text', $name, $value, $attributes);
  142. }
  143. /**
  144. * Create a HTML password input element.
  145. *
  146. * @param string $name
  147. * @param array $attributes
  148. * @return string
  149. */
  150. public static function password($name, $attributes = array())
  151. {
  152. return static::input('password', $name, null, $attributes);
  153. }
  154. /**
  155. * Create a HTML hidden input element.
  156. *
  157. * @param string $name
  158. * @param string $value
  159. * @param array $attributes
  160. * @return string
  161. */
  162. public static function hidden($name, $value = null, $attributes = array())
  163. {
  164. return static::input('hidden', $name, $value, $attributes);
  165. }
  166. /**
  167. * Create a HTML search input element.
  168. *
  169. * @param string $name
  170. * @param string $value
  171. * @param array $attributes
  172. * @return string
  173. */
  174. public static function search($name, $value = null, $attributes = array())
  175. {
  176. return static::input('search', $name, $value, $attributes);
  177. }
  178. /**
  179. * Create a HTML email input element.
  180. *
  181. * @param string $name
  182. * @param string $value
  183. * @param array $attributes
  184. * @return string
  185. */
  186. public static function email($name, $value = null, $attributes = array())
  187. {
  188. return static::input('email', $name, $value, $attributes);
  189. }
  190. /**
  191. * Create a HTML telephone input element.
  192. *
  193. * @param string $name
  194. * @param string $value
  195. * @param array $attributes
  196. * @return string
  197. */
  198. public static function telephone($name, $value = null, $attributes = array())
  199. {
  200. return static::input('tel', $name, $value, $attributes);
  201. }
  202. /**
  203. * Create a HTML URL input element.
  204. *
  205. * @param string $name
  206. * @param string $value
  207. * @param array $attributes
  208. * @return string
  209. */
  210. public static function url($name, $value = null, $attributes = array())
  211. {
  212. return static::input('url', $name, $value, $attributes);
  213. }
  214. /**
  215. * Create a HTML number input element.
  216. *
  217. * @param string $name
  218. * @param string $value
  219. * @param array $attributes
  220. * @return string
  221. */
  222. public static function number($name, $value = null, $attributes = array())
  223. {
  224. return static::input('number', $name, $value, $attributes);
  225. }
  226. /**
  227. * Create a HTML file input element.
  228. *
  229. * @param string $name
  230. * @param array $attributes
  231. * @return string
  232. */
  233. public static function file($name, $attributes = array())
  234. {
  235. return static::input('file', $name, null, $attributes);
  236. }
  237. /**
  238. * Create a HTML textarea element.
  239. *
  240. * @param string $name
  241. * @param string $value
  242. * @param array $attributes
  243. * @return string
  244. */
  245. public static function textarea($name, $value = '', $attributes = array())
  246. {
  247. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'name' => $name));
  248. if ( ! isset($attributes['rows']))
  249. {
  250. $attributes['rows'] = 10;
  251. }
  252. if ( ! isset($attributes['cols']))
  253. {
  254. $attributes['cols'] = 50;
  255. }
  256. return '<textarea'.HTML::attributes($attributes).'>'.HTML::entities($value).'</textarea>'.PHP_EOL;
  257. }
  258. /**
  259. * Create a HTML select element.
  260. *
  261. * @param string $name
  262. * @param array $options
  263. * @param string $selected
  264. * @param array $attributes
  265. * @return string
  266. */
  267. public static function select($name, $options = array(), $selected = null, $attributes = array())
  268. {
  269. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'name' => $name));
  270. $html = array();
  271. foreach ($options as $value => $display)
  272. {
  273. $html[] = '<option'.HTML::attributes(array('value' => HTML::entities($value), 'selected' => ($value == $selected) ? 'selected' : null)).'>'.HTML::entities($display).'</option>';
  274. }
  275. return '<select'.HTML::attributes($attributes).'>'.implode('', $html).'</select>'.PHP_EOL;
  276. }
  277. /**
  278. * Create a HTML checkbox input element.
  279. *
  280. * @param string $name
  281. * @param string $value
  282. * @param bool $checked
  283. * @param array $attributes
  284. * @return string
  285. */
  286. public static function checkbox($name, $value = null, $checked = false, $attributes = array())
  287. {
  288. return static::checkable('checkbox', $name, $value, $checked, $attributes);
  289. }
  290. /**
  291. * Create a HTML radio button input element.
  292. *
  293. * @param string $name
  294. * @param string $value
  295. * @param bool $checked
  296. * @param array $attributes
  297. * @return string
  298. */
  299. public static function radio($name, $value = null, $checked = false, $attributes = array())
  300. {
  301. return static::checkable('radio', $name, $value, $checked, $attributes);
  302. }
  303. /**
  304. * Create a checkable input element.
  305. *
  306. * @param string $type
  307. * @param string $name
  308. * @param string $value
  309. * @param bool $checked
  310. * @param array $attributes
  311. * @return string
  312. */
  313. private static function checkable($type, $name, $value, $checked, $attributes)
  314. {
  315. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'checked' => ($checked) ? 'checked' : null));
  316. return static::input($type, $name, $value, $attributes);
  317. }
  318. /**
  319. * Create a HTML submit input element.
  320. *
  321. * @param string $value
  322. * @param array $attributes
  323. * @return string
  324. */
  325. public static function submit($value, $attributes = array())
  326. {
  327. return static::input('submit', null, $value, $attributes);
  328. }
  329. /**
  330. * Create a HTML reset input element.
  331. *
  332. * @param string $value
  333. * @param array $attributes
  334. * @return string
  335. */
  336. public static function reset($value, $attributes = array())
  337. {
  338. return static::input('reset', null, $value, $attributes);
  339. }
  340. /**
  341. * Create a HTML image input element.
  342. *
  343. * @param string $url
  344. * @param array $attributes
  345. * @return string
  346. */
  347. public static function image($url, $name = null, $attributes = array())
  348. {
  349. $attributes['src'] = URL::to_asset($url);
  350. return static::input('image', $name, null, $attributes);
  351. }
  352. /**
  353. * Create a HTML button element.
  354. *
  355. * @param string $name
  356. * @param string $value
  357. * @param array $attributes
  358. * @return string
  359. */
  360. public static function button($value, $attributes = array())
  361. {
  362. return '<button'.HTML::attributes($attributes).'>'.HTML::entities($value).'</button>'.PHP_EOL;
  363. }
  364. /**
  365. * Determine the ID attribute for a form element.
  366. *
  367. * An explicitly specified ID in the attributes takes first precedence, then
  368. * the label names will be checked for a label matching the element name.
  369. *
  370. * @param string $name
  371. * @param array $attributes
  372. * @return mixed
  373. */
  374. private static function id($name, $attributes)
  375. {
  376. if (array_key_exists('id', $attributes))
  377. {
  378. return $attributes['id'];
  379. }
  380. if (in_array($name, static::$labels))
  381. {
  382. return $name;
  383. }
  384. }
  385. }