bundle.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. <?php namespace Laravel; defined('DS') or die('No direct script access.');
  2. use Laravel\Routing\Router;
  3. use FilesystemIterator as fIterator;
  4. class Bundle {
  5. /**
  6. * All of the application's bundles.
  7. *
  8. * @var array
  9. */
  10. public static $bundles = array();
  11. /**
  12. * A cache of the parsed bundle elements.
  13. *
  14. * @var array
  15. */
  16. public static $elements = array();
  17. /**
  18. * All of the bundles that have been started.
  19. *
  20. * @var array
  21. */
  22. public static $started = array();
  23. /**
  24. * All of the bundles that have their routes files loaded.
  25. *
  26. * @var array
  27. */
  28. public static $routed = array();
  29. /**
  30. * Register the bundle for the application.
  31. *
  32. * @param string $bundle
  33. * @param array $config
  34. * @return void
  35. */
  36. public static function register($bundle, $config = array())
  37. {
  38. $defaults = array('handles' => null, 'auto' => false);
  39. // If the given configuration is actually a string, we will assume it is a
  40. // location and set the bundle name to match it. This is common for most
  41. // bundles who simply live in the root bundle directory.
  42. if (is_string($config))
  43. {
  44. $bundle = $config;
  45. $config = array('location' => $bundle);
  46. }
  47. // IF no location is set, we will set the location to match the name of
  48. // the bundle. This is for bundles who are installed to the root of
  49. // the bundle directory so a location was not set.
  50. if ( ! isset($config['location']))
  51. {
  52. $config['location'] = $bundle;
  53. }
  54. static::$bundles[$bundle] = array_merge($defaults, $config);
  55. static::autoloading($bundle, $config);
  56. }
  57. /**
  58. * Load a bundle by running it's start-up script.
  59. *
  60. * If the bundle has already been started, no action will be taken.
  61. *
  62. * @param string $bundle
  63. * @return void
  64. */
  65. public static function start($bundle)
  66. {
  67. if (static::started($bundle)) return;
  68. if ( ! static::exists($bundle))
  69. {
  70. throw new \Exception("Bundle [$bundle] has not been installed.");
  71. }
  72. // Each bundle may have a start script which is responsible for preparing
  73. // the bundle for use by the application. The start script may register
  74. // any classes the bundle uses with the auto-loader, etc.
  75. if (file_exists($path = static::path($bundle).'start'.EXT))
  76. {
  77. require $path;
  78. }
  79. // Each bundle may also have a "routes" file which is responsible for
  80. // registering the bundle's routes. This is kept separate from the
  81. // start script for reverse routing efficiency purposes.
  82. static::routes($bundle);
  83. Event::fire("laravel.started: {$bundle}");
  84. static::$started[] = strtolower($bundle);
  85. }
  86. /**
  87. * Load the "routes" file for a given bundle.
  88. *
  89. * @param string $bundle
  90. * @return void
  91. */
  92. public static function routes($bundle)
  93. {
  94. if (static::routed($bundle)) return;
  95. $path = static::path($bundle).'routes'.EXT;
  96. // By setting the bundle property on the router the router knows what
  97. // value to replace the (:bundle) place-holder with when the bundle
  98. // routes are added, keeping the routes flexible.
  99. Router::$bundle = static::option($bundle, 'handles');
  100. if ( ! static::routed($bundle) and file_exists($path))
  101. {
  102. static::$routed[] = $bundle;
  103. require $path;
  104. }
  105. }
  106. /**
  107. * Register the auto-loading configuration for a bundle.
  108. *
  109. * @param string $bundle
  110. * @param array $config
  111. * @return void
  112. */
  113. protected static function autoloading($bundle, $config)
  114. {
  115. $path = trim(Bundle::path($bundle), DS);
  116. foreach ((array) $config['autoloads'] as $type => $mappings)
  117. {
  118. // When registering each type of mapping we'll replace the (:bundle)
  119. // place-holder with the path to the bundle's root directory, so
  120. // the developer may dryly register the mappings.
  121. $mappings = array_map(function($mapping) use ($path)
  122. {
  123. return str_replace('(:bundle)', $path, $mapping);
  124. }, $mappings);
  125. // Once the mappings are formatted, we will call the Autoloader
  126. // function matching the mapping type and pass in the array of
  127. // mappings so they can be registered and used.
  128. Autoloader::$type($mappings);
  129. }
  130. }
  131. /**
  132. * Disable a bundle for the current request.
  133. *
  134. * @param string $bundle
  135. * @return void
  136. */
  137. public static function disable($bundle)
  138. {
  139. unset(static::$bundles[$bundle]);
  140. }
  141. /**
  142. * Determine which bundle handles the given URI.
  143. *
  144. * If no bundle is assigned to handle the URI, the default bundle is returned.
  145. *
  146. * @param string $uri
  147. * @return string
  148. */
  149. public static function handles($uri)
  150. {
  151. $uri = rtrim($uri, '/').'/';
  152. foreach (static::$bundles as $key => $value)
  153. {
  154. if (isset($value['handles']) and starts_with($uri, $value['handles'].'/'))
  155. {
  156. return $key;
  157. }
  158. }
  159. return DEFAULT_BUNDLE;
  160. }
  161. /**
  162. * Deteremine if a bundle exists within the bundles directory.
  163. *
  164. * @param string $bundle
  165. * @return bool
  166. */
  167. public static function exists($bundle)
  168. {
  169. return $bundle == DEFAULT_BUNDLE or in_array(strtolower($bundle), static::names());
  170. }
  171. /**
  172. * Determine if a given bundle has been started for the request.
  173. *
  174. * @param string $bundle
  175. * @return void
  176. */
  177. public static function started($bundle)
  178. {
  179. return in_array(strtolower($bundle), static::$started);
  180. }
  181. /**
  182. * Determine if a given bundle has its routes file loaded.
  183. *
  184. * @param string $bundle
  185. * @return void
  186. */
  187. public static function routed($bundle)
  188. {
  189. return in_array(strtolower($bundle), static::$routed);
  190. }
  191. /**
  192. * Get the identifier prefix for the bundle.
  193. *
  194. * @param string $bundle
  195. * @return string
  196. */
  197. public static function prefix($bundle)
  198. {
  199. return ($bundle !== DEFAULT_BUNDLE) ? "{$bundle}::" : '';
  200. }
  201. /**
  202. * Get the class prefix for a given bundle.
  203. *
  204. * @param string $bundle
  205. * @return string
  206. */
  207. public static function class_prefix($bundle)
  208. {
  209. return ($bundle !== DEFAULT_BUNDLE) ? Str::classify($bundle).'_' : '';
  210. }
  211. /**
  212. * Return the root bundle path for a given bundle.
  213. *
  214. * <code>
  215. * // Returns the bundle path for the "admin" bundle
  216. * $path = Bundle::path('admin');
  217. *
  218. * // Returns the path('app') constant as the default bundle
  219. * $path = Bundle::path('application');
  220. * </code>
  221. *
  222. * @param string $bundle
  223. * @return string
  224. */
  225. public static function path($bundle)
  226. {
  227. if (is_null($bundle) or $bundle === DEFAULT_BUNDLE)
  228. {
  229. return path('app');
  230. }
  231. else if ($location = array_get(static::$bundles, $bundle.'.location'))
  232. {
  233. return str_finish(path('bundle').$location, DS);
  234. }
  235. }
  236. /**
  237. * Return the root asset path for the given bundle.
  238. *
  239. * @param string $bundle
  240. * @return string
  241. */
  242. public static function assets($bundle)
  243. {
  244. if (is_null($bundle)) return static::assets(DEFAULT_BUNDLE);
  245. return ($bundle != DEFAULT_BUNDLE) ? URL::base()."/bundles/{$bundle}/" : URL::base().'/';
  246. }
  247. /**
  248. * Get the bundle name from a given identifier.
  249. *
  250. * <code>
  251. * // Returns "admin" as the bundle name for the identifier
  252. * $bundle = Bundle::name('admin::home.index');
  253. * </code>
  254. *
  255. * @param string $identifier
  256. * @return string
  257. */
  258. public static function name($identifier)
  259. {
  260. list($bundle, $element) = static::parse($identifier);
  261. return $bundle;
  262. }
  263. /**
  264. * Get the element name from a given identifier.
  265. *
  266. * <code>
  267. * // Returns "home.index" as the element name for the identifier
  268. * $bundle = Bundle::bundle('admin::home.index');
  269. * </code>
  270. *
  271. * @param string $identifier
  272. * @return string
  273. */
  274. public static function element($identifier)
  275. {
  276. list($bundle, $element) = static::parse($identifier);
  277. return $element;
  278. }
  279. /**
  280. * Reconstruct an identifier from a given bundle and element.
  281. *
  282. * <code>
  283. * // Returns "admin::home.index"
  284. * $identifier = Bundle::identifier('admin', 'home.index');
  285. *
  286. * // Returns "home.index"
  287. * $identifier = Bundle::identifier('application', 'home.index');
  288. * </code>
  289. *
  290. * @param string $bundle
  291. * @param string $element
  292. * @return string
  293. */
  294. public static function identifier($bundle, $element)
  295. {
  296. return (is_null($bundle) or $bundle == DEFAULT_BUNDLE) ? $element : $bundle.'::'.$element;
  297. }
  298. /**
  299. * Return the bundle name if it exists, else return the default bundle.
  300. *
  301. * @param string $bundle
  302. * @return string
  303. */
  304. public static function resolve($bundle)
  305. {
  306. return (static::exists($bundle)) ? $bundle : DEFAULT_BUNDLE;
  307. }
  308. /**
  309. * Parse a element identifier and return the bundle name and element.
  310. *
  311. * <code>
  312. * // Returns array(null, 'admin.user')
  313. * $element = Bundle::parse('admin.user');
  314. *
  315. * // Parses "admin::user" and returns array('admin', 'user')
  316. * $element = Bundle::parse('admin::user');
  317. * </code>
  318. *
  319. * @param string $identifier
  320. * @return array
  321. */
  322. public static function parse($identifier)
  323. {
  324. // The parsed elements are cached so we don't have to reparse them on each
  325. // subsequent request for the parsed element. So, if we've already parsed
  326. // the given element, we'll just return the cached copy.
  327. if (isset(static::$elements[$identifier]))
  328. {
  329. return static::$elements[$identifier];
  330. }
  331. if (strpos($identifier, '::') !== false)
  332. {
  333. $element = explode('::', strtolower($identifier));
  334. }
  335. // If no bundle is in the identifier, we will insert the default bundle
  336. // since classes like Config and Lang organize their items by bundle.
  337. // The "application" folder essentially behaves as a bundle.
  338. else
  339. {
  340. $element = array(DEFAULT_BUNDLE, strtolower($identifier));
  341. }
  342. return static::$elements[$identifier] = $element;
  343. }
  344. /**
  345. * Get the information for a given bundle.
  346. *
  347. * @param string $bundle
  348. * @return object
  349. */
  350. public static function get($bundle)
  351. {
  352. return array_get(static::$bundles, $bundle);
  353. }
  354. /**
  355. * Get an option for a given bundle.
  356. *
  357. * @param string $bundle
  358. * @param string $option
  359. * @return mixed
  360. */
  361. public static function option($bundle, $option)
  362. {
  363. $bundle = static::get($bundle);
  364. if ( ! is_null($bundle)) return array_get($bundle, $option);
  365. }
  366. /**
  367. * Get all of the installed bundles for the application.
  368. *
  369. * @return array
  370. */
  371. public static function all()
  372. {
  373. return static::$bundles;
  374. }
  375. /**
  376. * Get all of the installed bundle names.
  377. *
  378. * @return array
  379. */
  380. public static function names()
  381. {
  382. return array_keys(static::$bundles);
  383. }
  384. }