asset.php 8.3 KB

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