| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\View\Helper;
- use Cake\Core\Configure;
- use Cake\Core\Plugin;
- use Cake\Routing\Router;
- use Cake\Utility\Inflector;
- use Cake\View\Helper;
- /**
- * UrlHelper class for generating URLs.
- */
- class UrlHelper extends Helper
- {
- /**
- * Returns a URL based on provided parameters.
- *
- * ### Options:
- *
- * - `escape`: If false, the URL will be returned unescaped, do only use if it is manually
- * escaped afterwards before being displayed.
- * - `fullBase`: If true, the full base URL will be prepended to the result
- *
- * @param string|array|null $url Either a relative string URL like `/products/view/23` or
- * an array of URL parameters. Using an array for URLs will allow you to leverage
- * the reverse routing features of CakePHP.
- * @param array|bool $options Array of options; bool `full` for BC reasons.
- * @return string Full translated URL with base path.
- */
- public function build($url = null, $options = false)
- {
- $defaults = [
- 'fullBase' => false,
- 'escape' => true,
- ];
- if (!is_array($options)) {
- $options = ['fullBase' => $options];
- }
- $options += $defaults;
- /** @var string $url */
- $url = Router::url($url, $options['fullBase']);
- if ($options['escape']) {
- /** @var string $url */
- $url = h($url);
- }
- return $url;
- }
- /**
- * Generates URL for given image file.
- *
- * Depending on options passed provides full URL with domain name. Also calls
- * `Helper::assetTimestamp()` to add timestamp to local files.
- *
- * @param string|array $path Path string or URL array
- * @param array $options Options array. Possible keys:
- * `fullBase` Return full URL with domain name
- * `pathPrefix` Path prefix for relative URLs
- * `plugin` False value will prevent parsing path as a plugin
- * `timestamp` Overrides the value of `Asset.timestamp` in Configure.
- * Set to false to skip timestamp generation.
- * Set to true to apply timestamps when debug is true. Set to 'force' to always
- * enable timestamping regardless of debug value.
- * @return string Generated URL
- */
- public function image($path, array $options = [])
- {
- $pathPrefix = Configure::read('App.imageBaseUrl');
- return $this->assetUrl($path, $options + compact('pathPrefix'));
- }
- /**
- * Generates URL for given CSS file.
- *
- * Depending on options passed provides full URL with domain name. Also calls
- * `Helper::assetTimestamp()` to add timestamp to local files.
- *
- * @param string|array $path Path string or URL array
- * @param array $options Options array. Possible keys:
- * `fullBase` Return full URL with domain name
- * `pathPrefix` Path prefix for relative URLs
- * `ext` Asset extension to append
- * `plugin` False value will prevent parsing path as a plugin
- * `timestamp` Overrides the value of `Asset.timestamp` in Configure.
- * Set to false to skip timestamp generation.
- * Set to true to apply timestamps when debug is true. Set to 'force' to always
- * enable timestamping regardless of debug value.
- * @return string Generated URL
- */
- public function css($path, array $options = [])
- {
- $pathPrefix = Configure::read('App.cssBaseUrl');
- $ext = '.css';
- return $this->assetUrl($path, $options + compact('pathPrefix', 'ext'));
- }
- /**
- * Generates URL for given javascript file.
- *
- * Depending on options passed provides full URL with domain name. Also calls
- * `Helper::assetTimestamp()` to add timestamp to local files.
- *
- * @param string|array $path Path string or URL array
- * @param array $options Options array. Possible keys:
- * `fullBase` Return full URL with domain name
- * `pathPrefix` Path prefix for relative URLs
- * `ext` Asset extension to append
- * `plugin` False value will prevent parsing path as a plugin
- * `timestamp` Overrides the value of `Asset.timestamp` in Configure.
- * Set to false to skip timestamp generation.
- * Set to true to apply timestamps when debug is true. Set to 'force' to always
- * enable timestamping regardless of debug value.
- * @return string Generated URL
- */
- public function script($path, array $options = [])
- {
- $pathPrefix = Configure::read('App.jsBaseUrl');
- $ext = '.js';
- return $this->assetUrl($path, $options + compact('pathPrefix', 'ext'));
- }
- /**
- * Generates URL for given asset file.
- *
- * Depending on options passed provides full URL with domain name. Also calls
- * `Helper::assetTimestamp()` to add timestamp to local files.
- *
- * @param string|array $path Path string or URL array
- * @param array $options Options array. Possible keys:
- * `fullBase` Return full URL with domain name
- * `pathPrefix` Path prefix for relative URLs
- * `ext` Asset extension to append
- * `plugin` False value will prevent parsing path as a plugin
- * `timestamp` Overrides the value of `Asset.timestamp` in Configure.
- * Set to false to skip timestamp generation.
- * Set to true to apply timestamps when debug is true. Set to 'force' to always
- * enable timestamping regardless of debug value.
- * @return string Generated URL
- */
- public function assetUrl($path, array $options = [])
- {
- if (is_array($path)) {
- return $this->build($path, !empty($options['fullBase']));
- }
- // data URIs only require HTML escaping
- if (preg_match('/^data:[a-z]+\/[a-z]+;/', $path)) {
- return h($path);
- }
- if (strpos($path, '://') !== false || preg_match('/^[a-z]+:/i', $path)) {
- return ltrim($this->build($path), '/');
- }
- if (!array_key_exists('plugin', $options) || $options['plugin'] !== false) {
- list($plugin, $path) = $this->_View->pluginSplit($path, false);
- }
- if (!empty($options['pathPrefix']) && $path[0] !== '/') {
- $path = $options['pathPrefix'] . $path;
- }
- if (!empty($options['ext']) &&
- strpos($path, '?') === false &&
- substr($path, -strlen($options['ext'])) !== $options['ext']
- ) {
- $path .= $options['ext'];
- }
- if (preg_match('|^([a-z0-9]+:)?//|', $path)) {
- return $this->build($path);
- }
- if (isset($plugin)) {
- $path = Inflector::underscore($plugin) . '/' . $path;
- }
- $optionTimestamp = null;
- if (array_key_exists('timestamp', $options)) {
- $optionTimestamp = $options['timestamp'];
- }
- $webPath = $this->assetTimestamp($this->webroot($path), $optionTimestamp);
- $path = $this->_encodeUrl($webPath);
- if (!empty($options['fullBase'])) {
- $path = rtrim(Router::fullBaseUrl(), '/') . '/' . ltrim($path, '/');
- }
- return $path;
- }
- /**
- * Encodes a URL for use in HTML attributes.
- *
- * @param string $url The URL to encode.
- * @return string The URL encoded for both URL & HTML contexts.
- */
- protected function _encodeUrl($url)
- {
- $path = parse_url($url, PHP_URL_PATH);
- $parts = array_map('rawurldecode', explode('/', $path));
- $parts = array_map('rawurlencode', $parts);
- $encoded = implode('/', $parts);
- /** @var string $url */
- $url = h(str_replace($path, $encoded, $url));
- return $url;
- }
- /**
- * Adds a timestamp to a file based resource based on the value of `Asset.timestamp` in
- * Configure. If Asset.timestamp is true and debug is true, or Asset.timestamp === 'force'
- * a timestamp will be added.
- *
- * @param string $path The file path to timestamp, the path must be inside WWW_ROOT
- * @param bool|string $timestamp If set will overrule the value of `Asset.timestamp` in Configure.
- * @return string Path with a timestamp added, or not.
- */
- public function assetTimestamp($path, $timestamp = null)
- {
- if ($timestamp === null) {
- $timestamp = Configure::read('Asset.timestamp');
- }
- $timestampEnabled = $timestamp === 'force' || ($timestamp === true && Configure::read('debug'));
- if ($timestampEnabled && strpos($path, '?') === false) {
- $filepath = preg_replace(
- '/^' . preg_quote($this->_View->getRequest()->getAttribute('webroot'), '/') . '/',
- '',
- urldecode($path)
- );
- $webrootPath = WWW_ROOT . str_replace('/', DIRECTORY_SEPARATOR, $filepath);
- if (file_exists($webrootPath)) {
- return $path . '?' . filemtime($webrootPath);
- }
- $segments = explode('/', ltrim($filepath, '/'));
- $plugin = Inflector::camelize($segments[0]);
- if (Plugin::isLoaded($plugin)) {
- unset($segments[0]);
- $pluginPath = Plugin::path($plugin) . 'webroot' . DIRECTORY_SEPARATOR . implode(DIRECTORY_SEPARATOR, $segments);
- if (file_exists($pluginPath)) {
- return $path . '?' . filemtime($pluginPath);
- }
- }
- }
- return $path;
- }
- /**
- * Checks if a file exists when theme is used, if no file is found default location is returned
- *
- * @param string $file The file to create a webroot path to.
- * @return string Web accessible path to file.
- */
- public function webroot($file)
- {
- $request = $this->_View->getRequest();
- $asset = explode('?', $file);
- $asset[1] = isset($asset[1]) ? '?' . $asset[1] : null;
- $webPath = $request->getAttribute('webroot') . $asset[0];
- $file = $asset[0];
- if (!empty($this->_View->getTheme())) {
- $file = trim($file, '/');
- $theme = $this->_inflectThemeName($this->_View->getTheme()) . '/';
- if (DIRECTORY_SEPARATOR === '\\') {
- $file = str_replace('/', '\\', $file);
- }
- if (file_exists(Configure::read('App.wwwRoot') . $theme . $file)) {
- $webPath = $request->getAttribute('webroot') . $theme . $asset[0];
- } else {
- $themePath = Plugin::path($this->_View->getTheme());
- $path = $themePath . 'webroot/' . $file;
- if (file_exists($path)) {
- $webPath = $request->getAttribute('webroot') . $theme . $asset[0];
- }
- }
- }
- if (strpos($webPath, '//') !== false) {
- return str_replace('//', '/', $webPath . $asset[1]);
- }
- return $webPath . $asset[1];
- }
- /**
- * Inflect the theme name to its underscored version.
- *
- * @param string $name Name of the theme which should be inflected.
- * @return string Inflected name of the theme
- */
- protected function _inflectThemeName($name)
- {
- return Inflector::underscore($name);
- }
- /**
- * Event listeners.
- *
- * @return array
- */
- public function implementedEvents()
- {
- return [];
- }
- }
|