asset.php 7.9 KB

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