koel/app/Application.php

69 lines
1.9 KiB
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
namespace App;
use Illuminate\Foundation\Application as IlluminateApplication;
use InvalidArgumentException;
/**
* Extends \Illuminate\Foundation\Application to override some defaults.
*/
class Application extends IlluminateApplication
{
2015-12-28 01:47:32 +00:00
/**
* Current Koel version. Must start with a v, and is synced with git tags/releases.
*
* @link https://github.com/phanan/koel/releases
*/
public const KOEL_VERSION = 'v3.8.0';
2015-12-27 14:06:10 +00:00
/**
* We have merged public path and base path.
*
* @return string
*/
public function publicPath()
{
return $this->basePath;
}
2015-12-13 04:42:28 +00:00
/**
* Loads a revision'ed asset file, making use of gulp-rev
* This is a copycat of L5's Elixir, but catered to our directory structure.
*
2018-08-24 15:27:19 +00:00
* @throws InvalidArgumentException
2015-12-13 04:42:28 +00:00
*/
2018-08-24 15:27:19 +00:00
public function rev(string $file, string $manifestFile = null): string
2015-12-13 04:42:28 +00:00
{
static $manifest = null;
2017-02-14 06:53:02 +00:00
$manifestFile = $manifestFile ?: public_path('public/mix-manifest.json');
2016-08-16 15:12:11 +00:00
if ($manifest === null) {
$manifest = json_decode(file_get_contents($manifestFile), true);
2015-12-13 04:42:28 +00:00
}
if (isset($manifest[$file])) {
2017-02-14 06:53:02 +00:00
return file_exists(public_path('public/hot'))
? "http://localhost:8080{$manifest[$file]}"
: $this->staticUrl("public{$manifest[$file]}");
2015-12-13 04:42:28 +00:00
}
throw new InvalidArgumentException("File {$file} not defined in asset manifest.");
}
2015-12-27 14:06:10 +00:00
/**
2016-02-09 00:33:21 +00:00
* Get a URL for static file requests.
* If this installation of Koel has a CDN_URL configured, use it as the base.
2016-03-14 02:36:03 +00:00
* Otherwise, just use a full URL to the asset.
*
2016-02-03 15:39:15 +00:00
* @param string $name The additional resource name/path.
*/
2018-08-24 15:27:19 +00:00
public function staticUrl(?string $name = null): string
{
2016-08-21 15:19:03 +00:00
$cdnUrl = trim(config('koel.cdn.url'), '/ ');
2016-03-14 02:36:03 +00:00
return $cdnUrl ? $cdnUrl.'/'.trim(ltrim($name, '/')) : trim(asset($name));
}
2015-12-13 04:42:28 +00:00
}