/var/www/cobraambalaj/vendor/league/glide/src
Edit: /var/www/cobraambalaj/vendor/league/glide/src/Server.php (14378B)
setSource($source);
$this->setCache($cache);
$this->setApi($api);
}
/**
* Set source file system.
* @param FilesystemInterface $source Source file system.
*/
public function setSource(FilesystemInterface $source)
{
$this->source = $source;
}
/**
* Get source file system.
* @return FilesystemInterface Source file system.
*/
public function getSource()
{
return $this->source;
}
/**
* Set source path prefix.
* @param string $sourcePathPrefix Source path prefix.
*/
public function setSourcePathPrefix($sourcePathPrefix)
{
$this->sourcePathPrefix = trim($sourcePathPrefix, '/');
}
/**
* Get source path prefix.
* @return string Source path prefix.
*/
public function getSourcePathPrefix()
{
return $this->sourcePathPrefix;
}
/**
* Get source path.
* @param string $path Image path.
* @return string The source path.
* @throws FileNotFoundException
*/
public function getSourcePath($path)
{
$path = trim($path, '/');
$baseUrl = $this->baseUrl.'/';
if (substr($path, 0, strlen($baseUrl)) === $baseUrl) {
$path = trim(substr($path, strlen($baseUrl)), '/');
}
if ($path === '') {
throw new FileNotFoundException('Image path missing.');
}
if ($this->sourcePathPrefix) {
$path = $this->sourcePathPrefix.'/'.$path;
}
return rawurldecode($path);
}
/**
* Check if a source file exists.
* @param string $path Image path.
* @return bool Whether the source file exists.
*/
public function sourceFileExists($path)
{
return $this->source->has($this->getSourcePath($path));
}
/**
* Set base URL.
* @param string $baseUrl Base URL.
*/
public function setBaseUrl($baseUrl)
{
$this->baseUrl = trim($baseUrl, '/');
}
/**
* Get base URL.
* @return string Base URL.
*/
public function getBaseUrl()
{
return $this->baseUrl;
}
/**
* Set cache file system.
* @param FilesystemInterface $cache Cache file system.
*/
public function setCache(FilesystemInterface $cache)
{
$this->cache = $cache;
}
/**
* Get cache file system.
* @return FilesystemInterface Cache file system.
*/
public function getCache()
{
return $this->cache;
}
/**
* Set cache path prefix.
* @param string $cachePathPrefix Cache path prefix.
*/
public function setCachePathPrefix($cachePathPrefix)
{
$this->cachePathPrefix = trim($cachePathPrefix, '/');
}
/**
* Get cache path prefix.
* @return string Cache path prefix.
*/
public function getCachePathPrefix()
{
return $this->cachePathPrefix;
}
/**
* Set the group cache in folders setting.
* @param bool $groupCacheInFolders Whether to group cache in folders.
*/
public function setGroupCacheInFolders($groupCacheInFolders)
{
$this->groupCacheInFolders = $groupCacheInFolders;
}
/**
* Get the group cache in folders setting.
* @return bool Whether to group cache in folders.
*/
public function getGroupCacheInFolders()
{
return $this->groupCacheInFolders;
}
/**
* Set the cache with file extensions setting.
* @param bool $cacheWithFileExtensions Whether to cache with file extensions.
*/
public function setCacheWithFileExtensions($cacheWithFileExtensions)
{
$this->cacheWithFileExtensions = $cacheWithFileExtensions;
}
/**
* Get the cache with file extensions setting.
* @return bool Whether to cache with file extensions.
*/
public function getCacheWithFileExtensions()
{
return $this->cacheWithFileExtensions;
}
/**
* Get cache path.
* @param string $path Image path.
* @param array $params Image manipulation params.
* @return string Cache path.
*/
public function getCachePath($path, array $params = [])
{
$sourcePath = $this->getSourcePath($path);
if ($this->sourcePathPrefix) {
$sourcePath = substr($sourcePath, strlen($this->sourcePathPrefix) + 1);
}
$params = $this->getAllParams($params);
unset($params['s'], $params['p']);
ksort($params);
$md5 = md5($sourcePath.'?'.http_build_query($params));
$cachedPath = $this->groupCacheInFolders ? $sourcePath.'/'.$md5 : $md5;
if ($this->cachePathPrefix) {
$cachedPath = $this->cachePathPrefix.'/'.$cachedPath;
}
if ($this->cacheWithFileExtensions) {
$ext = (isset($params['fm']) ? $params['fm'] : pathinfo($path)['extension']);
$ext = ($ext === 'pjpg') ? 'jpg' : $ext;
$cachedPath .= '.'.$ext;
}
return $cachedPath;
}
/**
* Check if a cache file exists.
* @param string $path Image path.
* @param array $params Image manipulation params.
* @return bool Whether the cache file exists.
*/
public function cacheFileExists($path, array $params)
{
return $this->cache->has(
$this->getCachePath($path, $params)
);
}
/**
* Delete cached manipulations for an image.
* @param string $path Image path.
* @return bool Whether the delete succeeded.
*/
public function deleteCache($path)
{
if (!$this->groupCacheInFolders) {
throw new InvalidArgumentException(
'Deleting cached image manipulations is not possible when grouping cache into folders is disabled.'
);
}
return $this->cache->deleteDir(
dirname($this->getCachePath($path))
);
}
/**
* Set image manipulation API.
* @param ApiInterface $api Image manipulation API.
*/
public function setApi(ApiInterface $api)
{
$this->api = $api;
}
/**
* Get image manipulation API.
* @return ApiInterface Image manipulation API.
*/
public function getApi()
{
return $this->api;
}
/**
* Set default image manipulations.
* @param array $defaults Default image manipulations.
*/
public function setDefaults(array $defaults)
{
$this->defaults = $defaults;
}
/**
* Get default image manipulations.
* @return array Default image manipulations.
*/
public function getDefaults()
{
return $this->defaults;
}
/**
* Set preset image manipulations.
* @param array $presets Preset image manipulations.
*/
public function setPresets(array $presets)
{
$this->presets = $presets;
}
/**
* Get preset image manipulations.
* @return array Preset image manipulations.
*/
public function getPresets()
{
return $this->presets;
}
/**
* Get all image manipulations params, including defaults and presets.
* @param array $params Image manipulation params.
* @return array All image manipulation params.
*/
public function getAllParams(array $params)
{
$all = $this->defaults;
if (isset($params['p'])) {
foreach (explode(',', $params['p']) as $preset) {
if (isset($this->presets[$preset])) {
$all = array_merge($all, $this->presets[$preset]);
}
}
}
return array_merge($all, $params);
}
/**
* Set response factory.
* @param ResponseFactoryInterface|null $responseFactory Response factory.
*/
public function setResponseFactory(ResponseFactoryInterface $responseFactory = null)
{
$this->responseFactory = $responseFactory;
}
/**
* Get response factory.
* @return ResponseFactoryInterface Response factory.
*/
public function getResponseFactory()
{
return $this->responseFactory;
}
/**
* Generate and return image response.
* @param string $path Image path.
* @param array $params Image manipulation params.
* @return mixed Image response.
* @throws InvalidArgumentException
*/
public function getImageResponse($path, array $params)
{
if (is_null($this->responseFactory)) {
throw new InvalidArgumentException(
'Unable to get image response, no response factory defined.'
);
}
$path = $this->makeImage($path, $params);
return $this->responseFactory->create($this->cache, $path);
}
/**
* Generate and return Base64 encoded image.
* @param string $path Image path.
* @param array $params Image manipulation params.
* @return string Base64 encoded image.
* @throws FilesystemException
*/
public function getImageAsBase64($path, array $params)
{
$path = $this->makeImage($path, $params);
$source = $this->cache->read($path);
if ($source === false) {
throw new FilesystemException(
'Could not read the image `'.$path.'`.'
);
}
return 'data:'.$this->cache->getMimetype($path).';base64,'.base64_encode($source);
}
/**
* Generate and output image.
* @param string $path Image path.
* @param array $params Image manipulation params.
* @throws InvalidArgumentException
*/
public function outputImage($path, array $params)
{
$path = $this->makeImage($path, $params);
header('Content-Type:'.$this->cache->getMimetype($path));
header('Content-Length:'.$this->cache->getSize($path));
header('Cache-Control:'.'max-age=31536000, public');
header('Expires:'.date_create('+1 years')->format('D, d M Y H:i:s').' GMT');
$stream = $this->cache->readStream($path);
if (ftell($stream) !== 0) {
rewind($stream);
}
fpassthru($stream);
fclose($stream);
}
/**
* Generate manipulated image.
* @param string $path Image path.
* @param array $params Image manipulation params.
* @return string Cache path.
* @throws FileNotFoundException
* @throws FilesystemException
*/
public function makeImage($path, array $params)
{
$sourcePath = $this->getSourcePath($path);
$cachedPath = $this->getCachePath($path, $params);
if ($this->cacheFileExists($path, $params) === true) {
return $cachedPath;
}
if ($this->sourceFileExists($path) === false) {
throw new FileNotFoundException(
'Could not find the image `'.$sourcePath.'`.'
);
}
$source = $this->source->read(
$sourcePath
);
if ($source === false) {
throw new FilesystemException(
'Could not read the image `'.$sourcePath.'`.'
);
}
// We need to write the image to the local disk before
// doing any manipulations. This is because EXIF data
// can only be read from an actual file.
$tmp = tempnam(sys_get_temp_dir(), 'Glide');
if (file_put_contents($tmp, $source) === false) {
throw new FilesystemException(
'Unable to write temp file for `'.$sourcePath.'`.'
);
}
try {
$write = $this->cache->write(
$cachedPath,
$this->api->run($tmp, $this->getAllParams($params))
);
if ($write === false) {
throw new FilesystemException(
'Could not write the image `'.$cachedPath.'`.'
);
}
} catch (FileExistsException $exception) {
// This edge case occurs when the target already exists
// because it's currently be written to disk in another
// request. It's best to just fail silently.
} finally {
unlink($tmp);
}
return $cachedPath;
}
}