container.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?php namespace Laravel;
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Laravel Routing Components
  6. |--------------------------------------------------------------------------
  7. |
  8. | The following components are used by the Laravel routing system.
  9. |
  10. | The router is used to map a given method and URI to a route intance.
  11. |
  12. | The route loader is responsible for loading the appropriates routes file
  13. | for a given request URI, as well as loading all routes when the framework
  14. | needs to find a named route wtihin the application.
  15. |
  16. | The route caller is responsible for receiving a route and taking the
  17. | appropriate action to execute that route. Some routes delegate execution
  18. | to a controller, so this class will also resolve controllers out of the
  19. | container and call the appropriate methods on those controllers.
  20. |
  21. */
  22. 'laravel.routing.router' => array('singleton' => true, 'resolver' => function($c)
  23. {
  24. return new Routing\Router($c->core('routing.loader'), CONTROLLER_PATH);
  25. }),
  26. 'laravel.routing.loader' => array('singleton' => true, 'resolver' => function($c)
  27. {
  28. return new Routing\Loader(APP_PATH, ROUTE_PATH);
  29. }),
  30. 'laravel.routing.caller' => array('resolver' => function($c)
  31. {
  32. return new Routing\Caller($c, require APP_PATH.'filters'.EXT, CONTROLLER_PATH);
  33. }),
  34. /*
  35. |--------------------------------------------------------------------------
  36. | Laravel Caching Components
  37. |--------------------------------------------------------------------------
  38. |
  39. | The following components are used by the wonderfully, simple Laravel
  40. | caching system. Each driver is resolved through the container.
  41. |
  42. | New cache drivers may be added to the framework by simply registering
  43. | them into the container.
  44. |
  45. */
  46. 'laravel.cache.apc' => array('resolver' => function($c)
  47. {
  48. return new Cache\Drivers\APC(Config::get('cache.key'));
  49. }),
  50. 'laravel.cache.file' => array('resolver' => function($c)
  51. {
  52. return new Cache\Drivers\File(CACHE_PATH);
  53. }),
  54. 'laravel.cache.memcached' => array('resolver' => function($c)
  55. {
  56. return new Cache\Drivers\Memcached($c->core('cache.memcache.connection'), Config::get('cache.key'));
  57. }),
  58. 'laravel.cache.memcache.connection' => array('singleton' => true, 'resolver' => function($c)
  59. {
  60. $memcache = new \Memcache;
  61. foreach (Config::get('cache.servers') as $server)
  62. {
  63. $memcache->addServer($server['host'], $server['port'], true, $server['weight']);
  64. }
  65. if ($memcache->getVersion() === false)
  66. {
  67. throw new \Exception('Could not establish memcached connection. Please verify your memcached configuration.');
  68. }
  69. return $memcache;
  70. }),
  71. /*
  72. |--------------------------------------------------------------------------
  73. | Laravel Session Components
  74. |--------------------------------------------------------------------------
  75. |
  76. | The following components are used by the Laravel session system.
  77. |
  78. | The framework allows the session ID to be transported via a variety
  79. | of different mechanisms by resolve the ID itself and the session
  80. | transporter instance out of the container. This allows sessions
  81. | to be used by clients who cannot receive cookies.
  82. |
  83. | The session manager is responsible for loading the session payload
  84. | from the session driver, as well as examining the payload validitiy
  85. | and things like the CSRF token.
  86. |
  87. | Like the caching components, each session driver is resolved via the
  88. | container and new drivers may be added by registering them into the
  89. | container. Several session drivers are "driven" by the cache drivers.
  90. |
  91. */
  92. 'laravel.session.transporter' => array('resolver' => function($c)
  93. {
  94. return new Session\Transporters\Cookie;
  95. }),
  96. 'laravel.session.apc' => array('resolver' => function($c)
  97. {
  98. return new Session\Drivers\APC($c->core('cache.apc'));
  99. }),
  100. 'laravel.session.cookie' => array('resolver' => function($c)
  101. {
  102. return new Session\Drivers\Cookie;
  103. }),
  104. 'laravel.session.database' => array('resolver' => function($c)
  105. {
  106. return new Session\Drivers\Database(Database\Manager::connection());
  107. }),
  108. 'laravel.session.file' => array('resolver' => function($c)
  109. {
  110. return new Session\Drivers\File(SESSION_PATH);
  111. }),
  112. 'laravel.session.memcached' => array('resolver' => function($c)
  113. {
  114. return new Session\Drivers\Memcached($c->core('cache.memcached'));
  115. }),
  116. );