messages.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php namespace System;
  2. class Messages {
  3. /**
  4. * All of the messages.
  5. *
  6. * @var array
  7. */
  8. public $messages;
  9. /**
  10. * Create a new Messages instance.
  11. *
  12. * @return void
  13. */
  14. public function __construct($messages = array())
  15. {
  16. $this->messages = $messages;
  17. }
  18. /**
  19. * Add a message to the collector.
  20. *
  21. * Duplicate messages will not be added.
  22. *
  23. * @param string $key
  24. * @param string $message
  25. * @return void
  26. */
  27. public function add($key, $message)
  28. {
  29. if ( ! isset($this->messages[$key]) or array_search($message, $this->messages[$key]) === false)
  30. {
  31. $this->messages[$key][] = $message;
  32. }
  33. }
  34. /**
  35. * Determine if messages exist for a given key.
  36. *
  37. * @param string $key
  38. * @return bool
  39. */
  40. public function has($key)
  41. {
  42. return $this->first($key) !== '';
  43. }
  44. /**
  45. * Get the first message for a given key.
  46. *
  47. * @param string $key
  48. * @param string $format
  49. * @return string
  50. */
  51. public function first($key, $format = ':message')
  52. {
  53. return (count($messages = $this->get($key, $format)) > 0) ? $messages[0] : '';
  54. }
  55. /**
  56. * Get all of the messages for a key.
  57. *
  58. * If no key is specified, all of the messages will be returned.
  59. *
  60. * @param string $key
  61. * @param string $format
  62. * @return array
  63. */
  64. public function get($key = null, $format = ':message')
  65. {
  66. if (is_null($key)) return $this->all($format);
  67. return (array_key_exists($key, $this->messages)) ? $this->format($this->messages[$key], $format) : array();
  68. }
  69. /**
  70. * Get all of the messages.
  71. *
  72. * @param string $format
  73. * @return array
  74. */
  75. public function all($format = ':message')
  76. {
  77. $all = array();
  78. foreach ($this->messages as $messages)
  79. {
  80. $all = array_merge($all, $this->format($messages, $format));
  81. }
  82. return $all;
  83. }
  84. /**
  85. * Format an array of messages.
  86. *
  87. * @param array $messages
  88. * @param string $format
  89. * @return array
  90. */
  91. private function format($messages, $format)
  92. {
  93. foreach ($messages as $key => &$message)
  94. {
  95. $message = str_replace(':message', $message, $format);
  96. }
  97. return $messages;
  98. }
  99. }