asset.php 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  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. $type = (File::extension($source) == 'css') ? 'style' : 'script';
  114. return call_user_func(array($this, $type), $name, $source, $dependencies, $attributes);
  115. }
  116. /**
  117. * Add CSS to the registered assets.
  118. *
  119. * @param string $name
  120. * @param string $source
  121. * @param array $dependencies
  122. * @param array $attributes
  123. * @return void
  124. * @see add
  125. */
  126. public function style($name, $source, $dependencies = array(), $attributes = array())
  127. {
  128. if ( ! array_key_exists('media', $attributes))
  129. {
  130. $attributes['media'] = 'all';
  131. }
  132. $this->register('style', $name, $source, $dependencies, $attributes);
  133. }
  134. /**
  135. * Add JavaScript to the registered assets.
  136. *
  137. * @param string $name
  138. * @param string $source
  139. * @param array $dependencies
  140. * @param array $attributes
  141. * @return void
  142. * @see add
  143. */
  144. public function script($name, $source, $dependencies = array(), $attributes = array())
  145. {
  146. $this->register('script', $name, $source, $dependencies, $attributes);
  147. }
  148. /**
  149. * Add an asset to the registered assets.
  150. *
  151. * @param string $type
  152. * @param string $name
  153. * @param string $source
  154. * @param array $dependencies
  155. * @param array $attributes
  156. * @return void
  157. */
  158. private function register($type, $name, $source, $dependencies, $attributes)
  159. {
  160. $dependencies = (array) $dependencies;
  161. $this->assets[$type][$name] = compact('source', 'dependencies', 'attributes');
  162. }
  163. /**
  164. * Get the links to all of the registered CSS assets.
  165. *
  166. * @return string
  167. */
  168. public function styles()
  169. {
  170. return $this->get_group('style');
  171. }
  172. /**
  173. * Get the links to all of the registered JavaScript assets.
  174. *
  175. * @return string
  176. */
  177. public function scripts()
  178. {
  179. return $this->get_group('script');
  180. }
  181. /**
  182. * Get all of the registered assets for a given group.
  183. *
  184. * @param string $group
  185. * @return string
  186. */
  187. private function get_group($group)
  188. {
  189. if ( ! isset($this->assets[$group]) or count($this->assets[$group]) == 0) return '';
  190. $assets = '';
  191. foreach ($this->arrange($this->assets[$group]) as $name => $data)
  192. {
  193. $assets .= $this->get_asset($group, $name);
  194. }
  195. return $assets;
  196. }
  197. /**
  198. * Get the link to a single registered CSS asset.
  199. *
  200. * <code>
  201. * echo $container->get_style('common');
  202. * </code>
  203. *
  204. * @param string $name
  205. * @return string
  206. */
  207. public function get_style($name)
  208. {
  209. return $this->get_asset('style', $name);
  210. }
  211. /**
  212. * Get the link to a single registered JavaScript asset.
  213. *
  214. * <code>
  215. * echo $container->get_script('jquery');
  216. * </code>
  217. *
  218. * @param string $name
  219. * @return string
  220. */
  221. public function get_script($name)
  222. {
  223. return $this->get_asset('script', $name);
  224. }
  225. /**
  226. * Get a registered asset.
  227. *
  228. * @param string $group
  229. * @param string $name
  230. * @return string
  231. */
  232. private function get_asset($group, $name)
  233. {
  234. if ( ! isset($this->assets[$group][$name])) return '';
  235. $asset = $this->assets[$group][$name];
  236. return HTML::$group($asset['source'], $asset['attributes']);
  237. }
  238. /**
  239. * Sort and retrieve assets based on their dependencies
  240. *
  241. * @param array $assets
  242. * @return array
  243. */
  244. private function arrange($assets)
  245. {
  246. list($original, $sorted) = array($assets, array());
  247. while (count($assets) > 0)
  248. {
  249. foreach ($assets as $asset => $value)
  250. {
  251. $this->evaluate_asset($asset, $value, $original, $sorted, $assets);
  252. }
  253. }
  254. return $sorted;
  255. }
  256. /**
  257. * Evaluate an asset and its dependencies.
  258. *
  259. * @param string $asset
  260. * @param string $value
  261. * @param array $original
  262. * @param array $sorted
  263. * @param array $assets
  264. * @return void
  265. */
  266. private function evaluate_asset($asset, $value, $original, &$sorted, &$assets)
  267. {
  268. // If the asset has no more dependencies, we can add it to the sorted list
  269. // and remove it from the array of assets. Otherwise, we will not verify
  270. // the asset's dependencies and determine if they have already been sorted.
  271. if (count($assets[$asset]['dependencies']) == 0)
  272. {
  273. $sorted[$asset] = $value;
  274. unset($assets[$asset]);
  275. }
  276. else
  277. {
  278. foreach ($assets[$asset]['dependencies'] as $key => $dependency)
  279. {
  280. if ( ! $this->dependency_is_valid($asset, $dependency, $original, $assets))
  281. {
  282. unset($assets[$asset]['dependencies'][$key]);
  283. continue;
  284. }
  285. // If the dependency has not yet been added to the sorted list, we can not
  286. // remove it from this asset's array of dependencies. We'll try again on
  287. // the next trip through the loop.
  288. if ( ! isset($sorted[$dependency])) continue;
  289. unset($assets[$asset]['dependencies'][$key]);
  290. }
  291. }
  292. }
  293. /**
  294. * Check that a dependency is valid.
  295. *
  296. * @param string $asset
  297. * @param string $dependency
  298. * @param array $original
  299. * @param array $assets
  300. * @return bool
  301. */
  302. private function dependency_is_valid($asset, $dependency, $original, $assets)
  303. {
  304. if ( ! isset($original[$dependency]))
  305. {
  306. return false;
  307. }
  308. elseif ($dependency === $asset)
  309. {
  310. throw new \Exception("Asset [$asset] is dependent on itself.");
  311. }
  312. elseif (isset($assets[$dependency]) and in_array($asset, $assets[$dependency]['dependencies']))
  313. {
  314. throw new \Exception("Assets [$asset] and [$dependency] have a circular dependency.");
  315. }
  316. }
  317. }