asset.php 7.29 KB
Newer Older
Taylor Otwell committed
1
<?php namespace Laravel;
2 3 4 5

class Asset {

	/**
6 7
	 * All of the instantiated asset containers.
	 *
8 9
	 * @var array
	 */
10
	protected static $containers = array();
11 12 13 14

	/**
	 * Get an asset container instance.
	 *
15 16 17 18 19 20 21 22
	 * <code>
	 *		// Get the default asset container
	 *		$container = Asset::container();
	 *
	 *		// Get a named asset container
	 *		$container = Asset::container('footer');
	 * </code>
	 *
23 24
	 * @param  string            $container
	 * @return Asset_Container
25
	 */
26
	public static function container($container = 'default')
27
	{
28
		if ( ! isset(static::$containers[$container]))
29
		{
30
			static::$containers[$container] = new Asset_Container($container);
31 32
		}

33
		return static::$containers[$container];
34 35 36 37
	}

	/**
	 * Magic Method for calling methods on the default Asset container.
38 39 40 41 42 43 44 45
	 *
	 * <code>
	 *		// Call the "styles" method on the default container
	 *		echo Asset::styles();
	 *
	 *		// Call the "add" method on the default container
	 *		Asset::add('jquery', 'js/jquery.js');
	 * </code>
46
	 */
47
	public static function __callStatic($method, $parameters)
48
	{
49
		return call_user_func_array(array(static::container(), $method), $parameters);
50 51
	}

52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
}

class Asset_Container {

	/**
	 * The asset container name.
	 *
	 * @var string
	 */
	public $name;

	/**
	 * All of the registered assets.
	 *
	 * @var array
	 */
	public $assets = array();

	/**
	 * Create a new asset container instance.
	 *
	 * @param  string  $name
Taylor Otwell committed
74
	 * @param  HTML    $html
75 76
	 * @return void
	 */
77
	public function __construct($name)
78 79 80 81 82 83 84
	{
		$this->name = $name;
	}

	/**
	 * Add an asset to the container.
	 *
85 86 87 88
	 * The extension of the asset source will be used to determine the type of
	 * asset being registered (CSS or JavaScript). If you are using a non-standard
	 * extension, you may use the style or script methods to register assets.
	 *
89 90 91 92 93 94 95 96 97 98 99
	 * <code>
	 *		// Add an asset to the container
	 *		Asset::container()->add('jquery', 'js/jquery.js');
	 *
	 *		// Add an asset that has dependencies on other assets
	 *		Asset::add('jquery', 'js/jquery.js', 'jquery-ui');
	 *
	 *		// Add an asset that should have attributes applied to its tags
	 *		Asset::add('jquery', 'js/jquery.js', null, array('defer'));
	 * </code>
	 *
100 101 102 103 104 105 106 107
	 * @param  string  $name
	 * @param  string  $source
	 * @param  array   $dependencies
	 * @param  array   $attributes
	 * @return void
	 */
	public function add($name, $source, $dependencies = array(), $attributes = array())
	{
108
		$type = (pathinfo($source, PATHINFO_EXTENSION) == 'css') ? 'style' : 'script';
109 110

		return call_user_func(array($this, $type), $name, $source, $dependencies, $attributes);
111 112 113
	}

	/**
114
	 * Add a CSS file to the registered assets.
115
	 *
116 117 118 119 120
	 * @param  string           $name
	 * @param  string           $source
	 * @param  array            $dependencies
	 * @param  array            $attributes
	 * @return Asset_Container
121 122 123 124 125 126 127 128 129
	 */
	public function style($name, $source, $dependencies = array(), $attributes = array())
	{
		if ( ! array_key_exists('media', $attributes))
		{
			$attributes['media'] = 'all';
		}

		$this->register('style', $name, $source, $dependencies, $attributes);
130 131

		return $this;
132 133 134
	}

	/**
135
	 * Add a JavaScript file to the registered assets.
136
	 *
137 138 139 140 141
	 * @param  string           $name
	 * @param  string           $source
	 * @param  array            $dependencies
	 * @param  array            $attributes
	 * @return Asset_Container
142 143 144 145
	 */
	public function script($name, $source, $dependencies = array(), $attributes = array())
	{
		$this->register('script', $name, $source, $dependencies, $attributes);
146 147

		return $this;
148 149 150
	}

	/**
Taylor Otwell committed
151 152
	 * Add an asset to the array of registered assets.
	 *
153 154 155 156 157 158 159
	 * @param  string  $type
	 * @param  string  $name
	 * @param  string  $source
	 * @param  array   $dependencies
	 * @param  array   $attributes
	 * @return void
	 */
Taylor Otwell committed
160
	protected function register($type, $name, $source, $dependencies, $attributes)
161 162 163
	{
		$dependencies = (array) $dependencies;

164 165
		$attributes = (array) $attributes;

166 167 168 169
		$this->assets[$type][$name] = compact('source', 'dependencies', 'attributes');
	}

	/**
170
	 * Get the links to all of the registered CSS assets.
171 172 173 174 175
	 *
	 * @return  string
	 */
	public function styles()
	{
176
		return $this->group('style');
177 178 179
	}

	/**
180
	 * Get the links to all of the registered JavaScript assets.
181 182 183 184 185
	 *
	 * @return  string
	 */
	public function scripts()
	{
186
		return $this->group('script');
187 188 189
	}

	/**
Taylor Otwell committed
190
	 * Get all of the registered assets for a given type / group.
191 192 193 194
	 *
	 * @param  string  $group
	 * @return string
	 */
195
	protected function group($group)
196 197 198 199 200 201 202
	{
		if ( ! isset($this->assets[$group]) or count($this->assets[$group]) == 0) return '';

		$assets = '';

		foreach ($this->arrange($this->assets[$group]) as $name => $data)
		{
203
			$assets .= $this->asset($group, $name);
204 205 206 207 208 209
		}
		
		return $assets;
	}

	/**
Taylor Otwell committed
210
	 * Get the HTML link to a registered asset.
211 212 213 214 215
	 *
	 * @param  string  $group
	 * @param  string  $name
	 * @return string
	 */
216
	protected function asset($group, $name)
217
	{
Taylor Otwell committed
218
		if ( ! isset($this->assets[$group][$name])) return '';
219 220 221

		$asset = $this->assets[$group][$name];

222
		return HTML::$group($asset['source'], $asset['attributes']);
223 224 225 226 227 228 229 230
	}

	/**
	 * Sort and retrieve assets based on their dependencies
	 *
	 * @param   array  $assets
	 * @return  array
	 */
Taylor Otwell committed
231
	protected function arrange($assets)
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
	{
		list($original, $sorted) = array($assets, array());

		while (count($assets) > 0)
		{
			foreach ($assets as $asset => $value)
			{
				$this->evaluate_asset($asset, $value, $original, $sorted, $assets);
			}
		}
		
		return $sorted;
	}

	/**
	 * Evaluate an asset and its dependencies.
	 *
	 * @param  string  $asset
	 * @param  string  $value
	 * @param  array   $original
	 * @param  array   $sorted
	 * @param  array   $assets
	 * @return void
	 */
Taylor Otwell committed
256
	protected function evaluate_asset($asset, $value, $original, &$sorted, &$assets)
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
	{
		// If the asset has no more dependencies, we can add it to the sorted list
		// and remove it from the array of assets. Otherwise, we will not verify
		// the asset's dependencies and determine if they have already been sorted.
		if (count($assets[$asset]['dependencies']) == 0)
		{
			$sorted[$asset] = $value;
			unset($assets[$asset]);
		}
		else
		{
			foreach ($assets[$asset]['dependencies'] as $key => $dependency)
			{
				if ( ! $this->dependency_is_valid($asset, $dependency, $original, $assets))
				{
					unset($assets[$asset]['dependencies'][$key]);
					continue;
				}

				// If the dependency has not yet been added to the sorted list, we can not
				// remove it from this asset's array of dependencies. We'll try again on
				// the next trip through the loop.
				if ( ! isset($sorted[$dependency])) continue;

				unset($assets[$asset]['dependencies'][$key]);
			}
		}		
	}

	/**
Taylor Otwell committed
287 288 289 290
	 * Verify that an asset's dependency is valid.
	 *
	 * A dependency is considered valid if it exists, is not a circular reference, and is
	 * not a reference to the owning asset itself.
291 292 293 294 295 296 297
	 *
	 * @param  string  $asset
	 * @param  string  $dependency
	 * @param  array   $original
	 * @param  array   $assets
	 * @return bool
	 */
Taylor Otwell committed
298
	protected function dependency_is_valid($asset, $dependency, $original, $assets)
299
	{
Taylor Otwell committed
300 301 302
		if ( ! isset($original[$dependency])) return false;

		if ($dependency === $asset)
303 304 305 306 307 308 309 310 311
		{
			throw new \Exception("Asset [$asset] is dependent on itself.");
		}
		elseif (isset($assets[$dependency]) and in_array($asset, $assets[$dependency]['dependencies']))
		{
			throw new \Exception("Assets [$asset] and [$dependency] have a circular dependency.");
		}
	}

312
}