asset.php 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. <?php namespace Laravel;
  2. class Asset {
  3. /**
  4. * All of the instantiated asset containers.
  5. *
  6. * @var array
  7. */
  8. protected static $containers = array();
  9. /**
  10. * Get an asset container instance.
  11. *
  12. * <code>
  13. * // Get the default asset container
  14. * $container = Asset::container();
  15. *
  16. * // Get a named asset container
  17. * $container = Asset::container('footer');
  18. * </code>
  19. *
  20. * @param string $container
  21. * @return Asset_Container
  22. */
  23. public static function container($container = 'default')
  24. {
  25. if ( ! isset(static::$containers[$container]))
  26. {
  27. static::$containers[$container] = new Asset_Container($container);
  28. }
  29. return static::$containers[$container];
  30. }
  31. /**
  32. * Magic Method for calling methods on the default Asset container.
  33. *
  34. * <code>
  35. * // Call the "styles" method on the default container
  36. * echo Asset::styles();
  37. *
  38. * // Call the "add" method on the default container
  39. * Asset::add('jquery', 'js/jquery.js');
  40. * </code>
  41. */
  42. public static function __callStatic($method, $parameters)
  43. {
  44. return call_user_func_array(array(static::container(), $method), $parameters);
  45. }
  46. }
  47. class Asset_Container {
  48. /**
  49. * The asset container name.
  50. *
  51. * @var string
  52. */
  53. public $name;
  54. /**
  55. * All of the registered assets.
  56. *
  57. * @var array
  58. */
  59. public $assets = array();
  60. /**
  61. * Create a new asset container instance.
  62. *
  63. * @param string $name
  64. * @param HTML $html
  65. * @return void
  66. */
  67. public function __construct($name)
  68. {
  69. $this->name = $name;
  70. }
  71. /**
  72. * Add an asset to the container.
  73. *
  74. * The extension of the asset source will be used to determine the type of
  75. * asset being registered (CSS or JavaScript). If you are using a non-standard
  76. * extension, you may use the style or script methods to register assets.
  77. *
  78. * <code>
  79. * // Add an asset to the container
  80. * Asset::container()->add('jquery', 'js/jquery.js');
  81. *
  82. * // Add an asset that has dependencies on other assets
  83. * Asset::add('jquery', 'js/jquery.js', 'jquery-ui');
  84. *
  85. * // Add an asset that should have attributes applied to its tags
  86. * Asset::add('jquery', 'js/jquery.js', null, array('defer'));
  87. * </code>
  88. *
  89. * @param string $name
  90. * @param string $source
  91. * @param array $dependencies
  92. * @param array $attributes
  93. * @return void
  94. */
  95. public function add($name, $source, $dependencies = array(), $attributes = array())
  96. {
  97. $type = (pathinfo($source, PATHINFO_EXTENSION) == 'css') ? 'style' : 'script';
  98. return call_user_func(array($this, $type), $name, $source, $dependencies, $attributes);
  99. }
  100. /**
  101. * Add a CSS file to the registered assets.
  102. *
  103. * @param string $name
  104. * @param string $source
  105. * @param array $dependencies
  106. * @param array $attributes
  107. * @return Asset_Container
  108. */
  109. public function style($name, $source, $dependencies = array(), $attributes = array())
  110. {
  111. if ( ! array_key_exists('media', $attributes))
  112. {
  113. $attributes['media'] = 'all';
  114. }
  115. $this->register('style', $name, $source, $dependencies, $attributes);
  116. return $this;
  117. }
  118. /**
  119. * Add a JavaScript file to the registered assets.
  120. *
  121. * @param string $name
  122. * @param string $source
  123. * @param array $dependencies
  124. * @param array $attributes
  125. * @return Asset_Container
  126. */
  127. public function script($name, $source, $dependencies = array(), $attributes = array())
  128. {
  129. $this->register('script', $name, $source, $dependencies, $attributes);
  130. return $this;
  131. }
  132. /**
  133. * Add an asset to the array of registered assets.
  134. *
  135. * @param string $type
  136. * @param string $name
  137. * @param string $source
  138. * @param array $dependencies
  139. * @param array $attributes
  140. * @return void
  141. */
  142. protected function register($type, $name, $source, $dependencies, $attributes)
  143. {
  144. $dependencies = (array) $dependencies;
  145. $attributes = (array) $attributes;
  146. $this->assets[$type][$name] = compact('source', 'dependencies', 'attributes');
  147. }
  148. /**
  149. * Get the links to all of the registered CSS assets.
  150. *
  151. * @return string
  152. */
  153. public function styles()
  154. {
  155. return $this->group('style');
  156. }
  157. /**
  158. * Get the links to all of the registered JavaScript assets.
  159. *
  160. * @return string
  161. */
  162. public function scripts()
  163. {
  164. return $this->group('script');
  165. }
  166. /**
  167. * Get all of the registered assets for a given type / group.
  168. *
  169. * @param string $group
  170. * @return string
  171. */
  172. protected function group($group)
  173. {
  174. if ( ! isset($this->assets[$group]) or count($this->assets[$group]) == 0) return '';
  175. $assets = '';
  176. foreach ($this->arrange($this->assets[$group]) as $name => $data)
  177. {
  178. $assets .= $this->asset($group, $name);
  179. }
  180. return $assets;
  181. }
  182. /**
  183. * Get the HTML link to a registered asset.
  184. *
  185. * @param string $group
  186. * @param string $name
  187. * @return string
  188. */
  189. protected function asset($group, $name)
  190. {
  191. if ( ! isset($this->assets[$group][$name])) return '';
  192. $asset = $this->assets[$group][$name];
  193. return HTML::$group($asset['source'], $asset['attributes']);
  194. }
  195. /**
  196. * Sort and retrieve assets based on their dependencies
  197. *
  198. * @param array $assets
  199. * @return array
  200. */
  201. protected function arrange($assets)
  202. {
  203. list($original, $sorted) = array($assets, array());
  204. while (count($assets) > 0)
  205. {
  206. foreach ($assets as $asset => $value)
  207. {
  208. $this->evaluate_asset($asset, $value, $original, $sorted, $assets);
  209. }
  210. }
  211. return $sorted;
  212. }
  213. /**
  214. * Evaluate an asset and its dependencies.
  215. *
  216. * @param string $asset
  217. * @param string $value
  218. * @param array $original
  219. * @param array $sorted
  220. * @param array $assets
  221. * @return void
  222. */
  223. protected function evaluate_asset($asset, $value, $original, &$sorted, &$assets)
  224. {
  225. // If the asset has no more dependencies, we can add it to the sorted list
  226. // and remove it from the array of assets. Otherwise, we will not verify
  227. // the asset's dependencies and determine if they have already been sorted.
  228. if (count($assets[$asset]['dependencies']) == 0)
  229. {
  230. $sorted[$asset] = $value;
  231. unset($assets[$asset]);
  232. }
  233. else
  234. {
  235. foreach ($assets[$asset]['dependencies'] as $key => $dependency)
  236. {
  237. if ( ! $this->dependency_is_valid($asset, $dependency, $original, $assets))
  238. {
  239. unset($assets[$asset]['dependencies'][$key]);
  240. continue;
  241. }
  242. // If the dependency has not yet been added to the sorted list, we can not
  243. // remove it from this asset's array of dependencies. We'll try again on
  244. // the next trip through the loop.
  245. if ( ! isset($sorted[$dependency])) continue;
  246. unset($assets[$asset]['dependencies'][$key]);
  247. }
  248. }
  249. }
  250. /**
  251. * Verify that an asset's dependency is valid.
  252. *
  253. * A dependency is considered valid if it exists, is not a circular reference, and is
  254. * not a reference to the owning asset itself.
  255. *
  256. * @param string $asset
  257. * @param string $dependency
  258. * @param array $original
  259. * @param array $assets
  260. * @return bool
  261. */
  262. protected function dependency_is_valid($asset, $dependency, $original, $assets)
  263. {
  264. if ( ! isset($original[$dependency])) return false;
  265. if ($dependency === $asset)
  266. {
  267. throw new \Exception("Asset [$asset] is dependent on itself.");
  268. }
  269. elseif (isset($assets[$dependency]) and in_array($asset, $assets[$dependency]['dependencies']))
  270. {
  271. throw new \Exception("Assets [$asset] and [$dependency] have a circular dependency.");
  272. }
  273. }
  274. }