asset.php 6.3 KB

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