asset.php 6.2 KB

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