form.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  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. // PUT and DELETE methods are spoofed using a hidden field containing the request method.
  22. // Since, HTML does not support PUT and DELETE on forms, we will use POST.
  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 ($method == 'PUT' or $method == 'DELETE')
  30. {
  31. $html .= PHP_EOL.static::input('hidden', 'REQUEST_METHOD', $method);
  32. }
  33. return $html.PHP_EOL;
  34. }
  35. /**
  36. * Open a HTML form with a HTTPS action.
  37. *
  38. * @param string $action
  39. * @param string $method
  40. * @param array $attributes
  41. * @return string
  42. */
  43. public static function open_secure($action = null, $method = 'POST', $attributes = array())
  44. {
  45. return static::open($action, $method, $attributes, true);
  46. }
  47. /**
  48. * Open a HTML form that accepts file uploads.
  49. *
  50. * @param string $action
  51. * @param string $method
  52. * @param array $attributes
  53. * @param bool $https
  54. * @return string
  55. */
  56. public static function open_for_files($action = null, $method = 'POST', $attributes = array(), $https = false)
  57. {
  58. $attributes['enctype'] = 'multipart/form-data';
  59. return static::open($action, $method, $attributes, $https);
  60. }
  61. /**
  62. * Open a HTML form that accepts file uploads with a HTTPS action.
  63. *
  64. * @param string $action
  65. * @param string $method
  66. * @param array $attributes
  67. * @return string
  68. */
  69. public static function open_secure_for_files($action = null, $method = 'POST', $attributes = array())
  70. {
  71. return static::open_for_files($action, $method, $attributes, true);
  72. }
  73. /**
  74. * Close a HTML form.
  75. *
  76. * @return string
  77. */
  78. public static function close()
  79. {
  80. return '</form>';
  81. }
  82. /**
  83. * Generate a hidden field containing the current CSRF token.
  84. *
  85. * @return string
  86. */
  87. public static function token()
  88. {
  89. return static::input('hidden', 'csrf_token', static::raw_token());
  90. }
  91. /**
  92. * Retrieve the current CSRF token.
  93. *
  94. * @return string
  95. */
  96. public static function raw_token()
  97. {
  98. if (Config::get('session.driver') == '')
  99. {
  100. throw new \Exception('Sessions must be enabled to retrieve a CSRF token.');
  101. }
  102. return Session::get('csrf_token');
  103. }
  104. /**
  105. * Create a HTML label element.
  106. *
  107. * @param string $name
  108. * @param string $value
  109. * @param array $attributes
  110. * @return string
  111. */
  112. public static function label($name, $value, $attributes = array())
  113. {
  114. static::$labels[] = $name;
  115. return '<label for="'.$name.'"'.HTML::attributes($attributes).'>'.HTML::entities($value).'</label>'.PHP_EOL;
  116. }
  117. /**
  118. * Create a HTML input element.
  119. *
  120. * @param string $name
  121. * @param mixed $value
  122. * @param array $attributes
  123. * @return string
  124. */
  125. public static function input($type, $name, $value = null, $attributes = array())
  126. {
  127. $name = (isset($attributes['name'])) ? $attributes['name'] : $name;
  128. $id = static::id($name, $attributes);
  129. return '<input'.HTML::attributes(array_merge($attributes, compact('type', 'name', 'value', 'id'))).'>'.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'])) $attributes['rows'] = 10;
  249. if ( ! isset($attributes['cols'])) $attributes['cols'] = 50;
  250. return '<textarea'.HTML::attributes($attributes).'>'.HTML::entities($value).'</textarea>'.PHP_EOL;
  251. }
  252. /**
  253. * Create a HTML select element.
  254. *
  255. * @param string $name
  256. * @param array $options
  257. * @param string $selected
  258. * @param array $attributes
  259. * @return string
  260. */
  261. public static function select($name, $options = array(), $selected = null, $attributes = array())
  262. {
  263. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'name' => $name));
  264. $html = array();
  265. foreach ($options as $value => $display)
  266. {
  267. $option_attributes = array('value' => HTML::entities($value), 'selected' => ($value == $selected) ? 'selected' : null);
  268. $html[] = '<option'.HTML::attributes($option_attributes).'>'.HTML::entities($display).'</option>';
  269. }
  270. return '<select'.HTML::attributes($attributes).'>'.implode('', $html).'</select>'.PHP_EOL;
  271. }
  272. /**
  273. * Create a HTML checkbox input element.
  274. *
  275. * @param string $name
  276. * @param string $value
  277. * @param bool $checked
  278. * @param array $attributes
  279. * @return string
  280. */
  281. public static function checkbox($name, $value = null, $checked = false, $attributes = array())
  282. {
  283. return static::checkable('checkbox', $name, $value, $checked, $attributes);
  284. }
  285. /**
  286. * Create a HTML radio button input element.
  287. *
  288. * @param string $name
  289. * @param string $value
  290. * @param bool $checked
  291. * @param array $attributes
  292. * @return string
  293. */
  294. public static function radio($name, $value = null, $checked = false, $attributes = array())
  295. {
  296. return static::checkable('radio', $name, $value, $checked, $attributes);
  297. }
  298. /**
  299. * Create a checkable input element.
  300. *
  301. * @param string $type
  302. * @param string $name
  303. * @param string $value
  304. * @param bool $checked
  305. * @param array $attributes
  306. * @return string
  307. */
  308. private static function checkable($type, $name, $value, $checked, $attributes)
  309. {
  310. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'checked' => ($checked) ? 'checked' : null));
  311. return static::input($type, $name, $value, $attributes);
  312. }
  313. /**
  314. * Create a HTML submit input element.
  315. *
  316. * @param string $value
  317. * @param array $attributes
  318. * @return string
  319. */
  320. public static function submit($value, $attributes = array())
  321. {
  322. return static::input('submit', null, $value, $attributes);
  323. }
  324. /**
  325. * Create a HTML reset input element.
  326. *
  327. * @param string $value
  328. * @param array $attributes
  329. * @return string
  330. */
  331. public static function reset($value, $attributes = array())
  332. {
  333. return static::input('reset', null, $value, $attributes);
  334. }
  335. /**
  336. * Create a HTML image input element.
  337. *
  338. * @param string $url
  339. * @param array $attributes
  340. * @return string
  341. */
  342. public static function image($url, $name = null, $attributes = array())
  343. {
  344. $attributes['src'] = URL::to_asset($url);
  345. return static::input('image', $name, null, $attributes);
  346. }
  347. /**
  348. * Create a HTML button element.
  349. *
  350. * @param string $name
  351. * @param string $value
  352. * @param array $attributes
  353. * @return string
  354. */
  355. public static function button($value, $attributes = array())
  356. {
  357. return '<button'.HTML::attributes($attributes).'>'.HTML::entities($value).'</button>'.PHP_EOL;
  358. }
  359. /**
  360. * Determine the ID attribute for a form element.
  361. *
  362. * An explicitly specified ID in the attributes takes first precedence, then
  363. * the label names will be checked for a label matching the element name.
  364. *
  365. * @param string $name
  366. * @param array $attributes
  367. * @return mixed
  368. */
  369. private static function id($name, $attributes)
  370. {
  371. if (array_key_exists('id', $attributes)) return $attributes['id'];
  372. if (in_array($name, static::$labels)) return $name;
  373. }
  374. }