asset.php 8.1 KB

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