asset.php 7.3 KB

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