view.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. <?php namespace System;
  2. class View {
  3. /**
  4. * The name of the view.
  5. *
  6. * @var string
  7. */
  8. public $view;
  9. /**
  10. * The view data.
  11. *
  12. * @var array
  13. */
  14. public $data = array();
  15. /**
  16. * The module that contains the view.
  17. *
  18. * @var string
  19. */
  20. public $module;
  21. /**
  22. * The path to the view.
  23. *
  24. * @var string
  25. */
  26. public $path;
  27. /**
  28. * The defined view composers.
  29. *
  30. * @var array
  31. */
  32. private static $composers;
  33. /**
  34. * The defined view names.
  35. *
  36. * @var array
  37. */
  38. private static $names;
  39. /**
  40. * Create a new view instance.
  41. *
  42. * @param string $view
  43. * @param array $data
  44. * @return void
  45. */
  46. public function __construct($view, $data = array())
  47. {
  48. $this->data = $data;
  49. list($this->module, $this->path, $this->view) = static::parse($view);
  50. $this->compose();
  51. }
  52. /**
  53. * Create a new view instance.
  54. *
  55. * @param string $view
  56. * @param array $data
  57. * @return View
  58. */
  59. public static function make($view, $data = array())
  60. {
  61. return new static($view, $data);
  62. }
  63. /**
  64. * Create a new view instance from a view name.
  65. *
  66. * The view names for the active module will be searched first, followed by
  67. * the view names for the application directory, followed by the view names
  68. * for all other modules.
  69. *
  70. * @param string $name
  71. * @param array $data
  72. * @return View
  73. */
  74. private static function of($name, $data = array())
  75. {
  76. $modules = array_unique(array_merge(array(ACTIVE_MODULE, 'application'), Config::get('application.modules')));
  77. foreach ($modules as $module)
  78. {
  79. static::load_composers($module);
  80. foreach (static::$composers[$module] as $key => $value)
  81. {
  82. if ($name === $value or (isset($value['name']) and $name === $value['name']))
  83. {
  84. return new static($key, $data);
  85. }
  86. }
  87. }
  88. throw new \Exception("Named view [$name] is not defined.");
  89. }
  90. /**
  91. * Parse a view identifier and get the module, path, and view name.
  92. *
  93. * @param string $view
  94. * @return array
  95. */
  96. private static function parse($view)
  97. {
  98. $module = (strpos($view, '::') !== false) ? substr($view, 0, strpos($view, ':')) : 'application';
  99. $path = ($module == 'application') ? VIEW_PATH : MODULE_PATH.$module.'/views/';
  100. if ($module != 'application')
  101. {
  102. $view = substr($view, strpos($view, ':') + 2);
  103. }
  104. return array($module, $path, $view);
  105. }
  106. /**
  107. * Call the composer for the view instance.
  108. *
  109. * @return void
  110. */
  111. private function compose()
  112. {
  113. static::load_composers($this->module);
  114. if (isset(static::$composers[$this->module][$this->view]))
  115. {
  116. $composer = static::$composers[$this->module][$this->view];
  117. if ( ! is_null($composer = $this->find_composer_handler($composer)))
  118. {
  119. call_user_func($composer, $this);
  120. }
  121. }
  122. }
  123. /**
  124. * Find the composer handler / function in a composer definition.
  125. *
  126. * If the composer value itself is callable, it will be returned, otherwise the
  127. * first callable value in the composer array will be returned.
  128. *
  129. * @param mixed $composer
  130. * @return Closure
  131. */
  132. private function find_composer_handler($composer)
  133. {
  134. if (is_string($composer)) return;
  135. if (is_callable($composer)) return $composer;
  136. foreach ($composer as $value)
  137. {
  138. if (is_callable($value)) return $value;
  139. }
  140. }
  141. /**
  142. * Load the view composers for a given module.
  143. *
  144. * @param string $module
  145. * @return void
  146. */
  147. private static function load_composers($module)
  148. {
  149. if (isset(static::$composers[$module])) return;
  150. $composers = ($module == 'application') ? APP_PATH.'composers'.EXT : MODULE_PATH.$module.'/composers'.EXT;
  151. static::$composers[$module] = (file_exists($composers)) ? require $composers : array();
  152. }
  153. /**
  154. * Get the parsed content of the view.
  155. *
  156. * @return string
  157. */
  158. public function get()
  159. {
  160. $view = str_replace('.', '/', $this->view);
  161. if ( ! file_exists($this->path.$view.EXT))
  162. {
  163. throw new \Exception("View [$view] does not exist.");
  164. }
  165. $this->get_sub_views();
  166. extract($this->data, EXTR_SKIP);
  167. ob_start();
  168. try { include $this->path.$view.EXT; } catch (\Exception $e) { Error::handle($e); }
  169. return ob_get_clean();
  170. }
  171. /**
  172. * Evaluate all of the view and response instances that are bound to the view.
  173. *
  174. * @return void
  175. */
  176. private function get_sub_views()
  177. {
  178. foreach ($this->data as &$data)
  179. {
  180. if ($data instanceof View or $data instanceof Response)
  181. {
  182. $data = (string) $data;
  183. }
  184. }
  185. }
  186. /**
  187. * Add a view instance to the view data.
  188. *
  189. * @param string $key
  190. * @param string $view
  191. * @param array $data
  192. * @return View
  193. */
  194. public function partial($key, $view, $data = array())
  195. {
  196. return $this->bind($key, new static($view, $data));
  197. }
  198. /**
  199. * Add a key / value pair to the view data.
  200. *
  201. * @param string $key
  202. * @param mixed $value
  203. * @return View
  204. */
  205. public function bind($key, $value)
  206. {
  207. $this->data[$key] = $value;
  208. return $this;
  209. }
  210. /**
  211. * Magic Method for handling the dynamic creation of named views.
  212. */
  213. public static function __callStatic($method, $parameters)
  214. {
  215. if (strpos($method, 'of_') === 0)
  216. {
  217. return static::of(substr($method, 3), Arr::get($parameters, 0, array()));
  218. }
  219. }
  220. /**
  221. * Magic Method for getting items from the view data.
  222. */
  223. public function __get($key)
  224. {
  225. return $this->data[$key];
  226. }
  227. /**
  228. * Magic Method for setting items in the view data.
  229. */
  230. public function __set($key, $value)
  231. {
  232. $this->bind($key, $value);
  233. }
  234. /**
  235. * Magic Method for determining if an item is in the view data.
  236. */
  237. public function __isset($key)
  238. {
  239. return array_key_exists($key, $this->data);
  240. }
  241. /**
  242. * Magic Method for removing an item from the view data.
  243. */
  244. public function __unset($key)
  245. {
  246. unset($this->data[$key]);
  247. }
  248. /**
  249. * Get the parsed content of the View.
  250. */
  251. public function __toString()
  252. {
  253. return $this->get();
  254. }
  255. }