messages.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?php namespace Laravel;
  2. class Messages {
  3. /**
  4. * All of the registered messages.
  5. *
  6. * @var array
  7. */
  8. public $messages;
  9. /**
  10. * Create a new Messages instance.
  11. *
  12. * The Messages class provides a convenient wrapper around an array of strings.
  13. *
  14. * @return void
  15. */
  16. public function __construct($messages = array())
  17. {
  18. $this->messages = (array) $messages;
  19. }
  20. /**
  21. * Add a message to the collector.
  22. *
  23. * <code>
  24. * // Add a message for the e-mail attribute
  25. * $messages->add('email', 'The e-mail address is invalid.');
  26. * </code>
  27. *
  28. * @param string $key
  29. * @param string $message
  30. * @return void
  31. */
  32. public function add($key, $message)
  33. {
  34. if ($this->unique($key, $message)) $this->messages[$key][] = $message;
  35. }
  36. /**
  37. * Determine if a key and message combination already exists.
  38. *
  39. * @param string $key
  40. * @param string $message
  41. * @return bool
  42. */
  43. protected function unique($key, $message)
  44. {
  45. return ! isset($this->messages[$key]) or ! in_array($message, $this->messages[$key]);
  46. }
  47. /**
  48. * Determine if messages exist for a given key.
  49. *
  50. * @param string $key
  51. * @return bool
  52. */
  53. public function has($key)
  54. {
  55. return $this->first($key) !== '';
  56. }
  57. /**
  58. * Get the first message for a given key.
  59. *
  60. * <code>
  61. * // Get the first message for the e-mail attribute
  62. * $email = $messages->first('email');
  63. *
  64. * // Format the first message for the e-mail attribute
  65. * $email = $messages->first('email', '<p>:message</p>');
  66. * </code>
  67. *
  68. * @param string $key
  69. * @param string $format
  70. * @return string
  71. */
  72. public function first($key, $format = ':message')
  73. {
  74. return (count($messages = $this->get($key, $format)) > 0) ? $messages[0] : '';
  75. }
  76. /**
  77. * Get all of the messages for a key.
  78. *
  79. * <code>
  80. * // Get all of the messages for the e-mail attribute
  81. * $email = $messages->get('email');
  82. *
  83. * // Format all of the messages for the e-mail attribute
  84. * $email = $messages->get('email', '<p>:message</p>');
  85. * </code>
  86. *
  87. * @param string $key
  88. * @param string $format
  89. * @return array
  90. */
  91. public function get($key, $format = ':message')
  92. {
  93. if (array_key_exists($key, $this->messages))
  94. {
  95. return $this->format($this->messages[$key], $format);
  96. }
  97. return array();
  98. }
  99. /**
  100. * Get all of the messages for every key.
  101. *
  102. * <code>
  103. * // Get all of the messages in the collector
  104. * $all = $messages->all();
  105. *
  106. * // Format all of the messages in the collector
  107. * $all = $messages->all('<p>:message</p>');
  108. * </code>
  109. *
  110. * @param string $format
  111. * @return array
  112. */
  113. public function all($format = ':message')
  114. {
  115. $all = array();
  116. foreach ($this->messages as $messages)
  117. {
  118. $all = array_merge($all, $this->format($messages, $format));
  119. }
  120. return $all;
  121. }
  122. /**
  123. * Format an array of messages.
  124. *
  125. * @param array $messages
  126. * @param string $format
  127. * @return array
  128. */
  129. protected function format($messages, $format)
  130. {
  131. $messages = (array) $messages;
  132. foreach ($messages as $key => &$message)
  133. {
  134. $message = str_replace(':message', $message, $format);
  135. }
  136. return $messages;
  137. }
  138. }