asset.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  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. return call_user_func(array($this, (File::extension($source) == 'css') ? 'style' : 'script'), $name, $source, $dependencies, $attributes);
  68. }
  69. /**
  70. * Add CSS to the registered assets.
  71. *
  72. * @param string $name
  73. * @param string $source
  74. * @param array $dependencies
  75. * @param array $attributes
  76. * @return void
  77. */
  78. public function style($name, $source, $dependencies = array(), $attributes = array())
  79. {
  80. if ( ! array_key_exists('media', $attributes))
  81. {
  82. $attributes['media'] = 'all';
  83. }
  84. $this->register('style', $name, $source, $dependencies, $attributes);
  85. }
  86. /**
  87. * Add JavaScript to the registered assets.
  88. *
  89. * @param string $name
  90. * @param string $source
  91. * @param array $dependencies
  92. * @param array $attributes
  93. * @return void
  94. */
  95. public function script($name, $source, $dependencies = array(), $attributes = array())
  96. {
  97. $this->register('script', $name, $source, $dependencies, $attributes);
  98. }
  99. /**
  100. * Add an asset to the registered assets.
  101. *
  102. * @param string $type
  103. * @param string $name
  104. * @param string $source
  105. * @param array $dependencies
  106. * @param array $attributes
  107. * @return void
  108. */
  109. private function register($type, $name, $source, $dependencies, $attributes)
  110. {
  111. $dependencies = (array) $dependencies;
  112. $this->assets[$type][$name] = compact('source', 'dependencies', 'attributes');
  113. }
  114. /**
  115. * Get all of the registered CSS assets.
  116. *
  117. * @return string
  118. */
  119. public function styles()
  120. {
  121. return $this->get_group('style');
  122. }
  123. /**
  124. * Get all of the registered JavaScript assets.
  125. *
  126. * @return string
  127. */
  128. public function scripts()
  129. {
  130. return $this->get_group('script');
  131. }
  132. /**
  133. * Get all of the registered assets for a given group.
  134. *
  135. * @param string $group
  136. * @return string
  137. */
  138. private function get_group($group)
  139. {
  140. if ( ! isset($this->assets[$group]) or count($this->assets[$group]) == 0) return '';
  141. $assets = '';
  142. foreach ($this->arrange($this->assets[$group]) as $name => $data)
  143. {
  144. $assets .= $this->get_asset($group, $name);
  145. }
  146. return $assets;
  147. }
  148. /**
  149. * Get a registered CSS asset.
  150. *
  151. * @param string $name
  152. * @return string
  153. */
  154. public function get_style($name)
  155. {
  156. return $this->get_asset('style', $name);
  157. }
  158. /**
  159. * Get a registered JavaScript asset.
  160. *
  161. * @param string $name
  162. * @return string
  163. */
  164. public function get_script($name)
  165. {
  166. return $this->get_asset('script', $name);
  167. }
  168. /**
  169. * Get a registered asset.
  170. *
  171. * @param string $group
  172. * @param string $name
  173. * @return string
  174. */
  175. private function get_asset($group, $name)
  176. {
  177. if ( ! isset($this->assets[$group][$name]))
  178. {
  179. return '';
  180. }
  181. $asset = $this->assets[$group][$name];
  182. return HTML::$group($asset['source'], $asset['attributes']);
  183. }
  184. /**
  185. * Sort and retrieve assets based on their dependencies
  186. *
  187. * @param array $assets
  188. * @return array
  189. */
  190. private function arrange($assets)
  191. {
  192. list($original, $sorted) = array($assets, array());
  193. while (count($assets) > 0)
  194. {
  195. foreach ($assets as $asset => $value)
  196. {
  197. $this->evaluate_asset($asset, $value, $original, $sorted, $assets);
  198. }
  199. }
  200. return $sorted;
  201. }
  202. /**
  203. * Evaluate an asset and its dependencies.
  204. *
  205. * @param string $asset
  206. * @param string $value
  207. * @param array $original
  208. * @param array $sorted
  209. * @param array $assets
  210. * @return void
  211. */
  212. private function evaluate_asset($asset, $value, $original, &$sorted, &$assets)
  213. {
  214. // If the asset has no more dependencies, we can add it to the sorted list
  215. // and remove it from the array of assets. Otherwise, we will not verify
  216. // the asset's dependencies and determine if they have already been sorted.
  217. if (count($assets[$asset]['dependencies']) == 0)
  218. {
  219. $sorted[$asset] = $value;
  220. unset($assets[$asset]);
  221. }
  222. else
  223. {
  224. foreach ($assets[$asset]['dependencies'] as $key => $dependency)
  225. {
  226. if ( ! $this->dependency_is_valid($asset, $dependency, $original, $assets))
  227. {
  228. unset($assets[$asset]['dependencies'][$key]);
  229. continue;
  230. }
  231. // If the dependency has not yet been added to the sorted list, we can not
  232. // remove it from this asset's array of dependencies. We'll try again on
  233. // the next trip through the loop.
  234. if ( ! isset($sorted[$dependency])) continue;
  235. unset($assets[$asset]['dependencies'][$key]);
  236. }
  237. }
  238. }
  239. /**
  240. * Check that a dependency is valid.
  241. *
  242. * @param string $asset
  243. * @param string $dependency
  244. * @param array $original
  245. * @param array $assets
  246. * @return bool
  247. */
  248. private function dependency_is_valid($asset, $dependency, $original, $assets)
  249. {
  250. if ( ! isset($original[$dependency]))
  251. {
  252. return false;
  253. }
  254. elseif ($dependency === $asset)
  255. {
  256. throw new \Exception("Asset [$asset] is dependent on itself.");
  257. }
  258. elseif (isset($assets[$dependency]) and in_array($asset, $assets[$dependency]['dependencies']))
  259. {
  260. throw new \Exception("Assets [$asset] and [$dependency] have a circular dependency.");
  261. }
  262. }
  263. }