asset.php 7.1 KB

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