controller.php 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. <?php namespace Laravel\Routing;
  2. use Laravel\IoC;
  3. use Laravel\Str;
  4. use Laravel\View;
  5. use Laravel\Bundle;
  6. use Laravel\Request;
  7. use Laravel\Redirect;
  8. use Laravel\Response;
  9. abstract class Controller {
  10. /**
  11. * The layout being used by the controller.
  12. *
  13. * @var string
  14. */
  15. public $layout;
  16. /**
  17. * Indicates if the controller uses RESTful routing.
  18. *
  19. * @var bool
  20. */
  21. public $restful = false;
  22. /**
  23. * The filters assigned to the controller.
  24. *
  25. * @var array
  26. */
  27. protected $filters = array();
  28. /**
  29. * Call an action method on a controller.
  30. *
  31. * <code>
  32. * // Call the "show" method on the "user" controller
  33. * $response = Controller::call('user@show');
  34. *
  35. * // Call the "profile" method on the "user/admin" controller and pass parameters
  36. * $response = Controller::call('user.admin@profile', array($username));
  37. * </code>
  38. *
  39. * @param string $destination
  40. * @param array $parameters
  41. * @return Response
  42. */
  43. public static function call($destination, $parameters = array())
  44. {
  45. list($bundle, $destination) = Bundle::parse($destination);
  46. // We will always start the bundle, just in case the developer is pointing
  47. // a route to another bundle. This allows us to lazy load the bundle and
  48. // improve performance since the bundle is not loaded on every request.
  49. Bundle::start($bundle);
  50. list($controller, $method) = explode('@', $destination);
  51. list($method, $parameters) = static::backreference($method, $parameters);
  52. $controller = static::resolve($bundle, $controller);
  53. // If the controller could not be resolved, we're out of options and
  54. // will return the 404 error response. If we found the controller,
  55. // we can execute the requested method on the instance.
  56. if (is_null($controller)) return Response::error('404');
  57. return $controller->execute($method, $parameters);
  58. }
  59. /**
  60. * Replace all back-references on the given method.
  61. *
  62. * @param string $method
  63. * @param array $parameters
  64. * @return array
  65. */
  66. protected static function backreference($method, $parameters)
  67. {
  68. // Controller delegates may use back-references to the action parameters,
  69. // which allows the developer to setup more flexible rouets to their
  70. // controllers with less code. We will replace the back-references
  71. // with their corresponding parameter value.
  72. foreach ($parameters as $key => $value)
  73. {
  74. $method = str_replace('(:'.($key + 1).')', $value, $method, $count);
  75. if ($count > 0) unset($parameters[$key]);
  76. }
  77. return array(str_replace('(:1)', 'index', $method), $parameters);
  78. }
  79. /**
  80. * Resolve a bundle and controller name to a controller instance.
  81. *
  82. * @param string $bundle
  83. * @param string $controller
  84. * @return Controller
  85. */
  86. public static function resolve($bundle, $controller)
  87. {
  88. if ( ! static::load($bundle, $controller)) return;
  89. // If the controller is registered in the IoC container, we will resolve
  90. // it out of the container. Using constructor injection on controllers
  91. // via the container allows more flexible and testable applications.
  92. $resolver = 'controller: '.Bundle::identifier($bundle, $controller);
  93. if (IoC::registered($resolver))
  94. {
  95. return IoC::resolve($resolver);
  96. }
  97. $controller = static::format($bundle, $controller);
  98. $controller = new $controller;
  99. // If the controller has specified a layout to be used when rendering
  100. // views, we will instantiate the layout instance and set it to the
  101. // layout property, replacing the string layout name.
  102. if ( ! is_null($controller->layout))
  103. {
  104. $controller->layout = $controller->layout();
  105. }
  106. return $controller;
  107. }
  108. /**
  109. * Load the file for a given controller.
  110. *
  111. * @param string $bundle
  112. * @param string $controller
  113. * @return bool
  114. */
  115. protected static function load($bundle, $controller)
  116. {
  117. $controller = strtolower(str_replace('.', '/', $controller));
  118. if (file_exists($path = Bundle::path($bundle).'controllers/'.$controller.EXT))
  119. {
  120. require_once $path;
  121. return true;
  122. }
  123. return false;
  124. }
  125. /**
  126. * Format a bundle and controller identifier into the controller's class name.
  127. *
  128. * @param string $bundle
  129. * @param string $controller
  130. * @return string
  131. */
  132. protected static function format($bundle, $controller)
  133. {
  134. // If the controller's bundle is not the application bundle, we will
  135. // prepend the bundle to the identifier so the bundle is prefixed to
  136. // the class name when it is formatted. Bundle controllers are
  137. // always prefixed with the bundle name.
  138. if ($bundle !== DEFAULT_BUNDLE) $controller = $bundle.'.'.$controller;
  139. return Str::classify($controller).'_Controller';
  140. }
  141. /**
  142. * Execute a controller method with the given parameters.
  143. *
  144. * @param string $method
  145. * @param array $parameters
  146. * @return Response
  147. */
  148. public function execute($method, $parameters = array())
  149. {
  150. // Again, as was the case with route closures, if the controller "before"
  151. // filters return a response, it will be considered the response to the
  152. // request and the controller method will not be used to handle the
  153. // request to the application.
  154. $response = Filter::run($this->filters('before', $method), array(), true);
  155. if (is_null($response))
  156. {
  157. $this->before();
  158. $response = $this->response($method, $parameters);
  159. }
  160. $response = Response::prepare($response);
  161. // The "after" function on the controller is simply a convenient hook
  162. // so the developer can work on the response before it's returned to
  163. // the browser. This is useful for setting partials on the layout.
  164. $this->after($response);
  165. Filter::run($this->filters('after', $method), array($response));
  166. return $response;
  167. }
  168. /**
  169. * Execute a controller action and return the response.
  170. *
  171. * Unlike the "execute" method, no filters will be run and the response
  172. * from the controller action will not be changed in any way before it
  173. * is returned to the consumer.
  174. *
  175. * @param string $method
  176. * @param array $parameters
  177. * @return mixed
  178. */
  179. public function response($method, $parameters = array())
  180. {
  181. // The developer may mark the controller as being "RESTful" which
  182. // indicates that the controller actions are prefixed with the
  183. // HTTP verb they respond to rather than the word "action".
  184. if ($this->restful)
  185. {
  186. $action = strtolower(Request::method()).'_'.$method;
  187. }
  188. else
  189. {
  190. $action = "action_{$method}";
  191. }
  192. $response = call_user_func_array(array($this, $action), $parameters);
  193. // If the controller has specified a layout view. The response
  194. // returned by the controller method will be bound to that
  195. // view and the layout will be considered the response.
  196. if (is_null($response) and ! is_null($this->layout))
  197. {
  198. $response = $this->layout;
  199. }
  200. return $response;
  201. }
  202. /**
  203. * Register filters on the controller's methods.
  204. *
  205. * <code>
  206. * // Set a "foo" after filter on the controller
  207. * $this->filter('before', 'foo');
  208. *
  209. * // Set several filters on an explicit group of methods
  210. * $this->filter('after', 'foo|bar')->only(array('user', 'profile'));
  211. * </code>
  212. *
  213. * @param string $event
  214. * @param string|array $filters
  215. * @param mixed $parameters
  216. * @return Filter_Collection
  217. */
  218. protected function filter($event, $filters, $parameters = null)
  219. {
  220. $this->filters[$event][] = new Filter_Collection($filters, $parameters);
  221. return $this->filters[$event][count($this->filters[$event]) - 1];
  222. }
  223. /**
  224. * Get an array of filter names defined for the destination.
  225. *
  226. * @param string $event
  227. * @param string $method
  228. * @return array
  229. */
  230. protected function filters($event, $method)
  231. {
  232. if ( ! isset($this->filters[$event])) return array();
  233. $filters = array();
  234. foreach ($this->filters[$event] as $collection)
  235. {
  236. if ($collection->applies($method))
  237. {
  238. $filters[] = $collection;
  239. }
  240. }
  241. return $filters;
  242. }
  243. /**
  244. * Create the layout that is assigned to the controller.
  245. *
  246. * @return View
  247. */
  248. public function layout()
  249. {
  250. if (starts_with($this->layout, 'name: '))
  251. {
  252. return View::of(substr($this->layout, 6));
  253. }
  254. return View::make($this->layout);
  255. }
  256. /**
  257. * This function is called before the action is executed.
  258. *
  259. * @return void
  260. */
  261. public function before() {}
  262. /**
  263. * This function is called after the action is executed.
  264. *
  265. * @param Response $response
  266. * @return void
  267. */
  268. public function after($response) {}
  269. /**
  270. * Magic Method to handle calls to undefined controller functions.
  271. */
  272. public function __call($method, $parameters)
  273. {
  274. return Response::error('404');
  275. }
  276. /**
  277. * Dynamically resolve items from the application IoC container.
  278. *
  279. * <code>
  280. * // Retrieve an object registered in the container as "mailer"
  281. * $mailer = $this->mailer;
  282. *
  283. * // Equivalent call using the IoC container instance
  284. * $mailer = IoC::resolve('mailer');
  285. * </code>
  286. */
  287. public function __get($key)
  288. {
  289. if (IoC::registered($key)) return IoC::resolve($key);
  290. throw new \Exception("Accessing undefined property [$key] on controller.");
  291. }
  292. }