asset.php 8.2 KB

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