asset.php 8.1 KB

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