2019-09-07 17:18:58 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Services\Translations;
|
|
|
|
|
|
|
|
use Illuminate\Cache\Repository;
|
|
|
|
use Illuminate\Filesystem\Filesystem;
|
|
|
|
|
|
|
|
class JavaScript
|
|
|
|
{
|
|
|
|
/** @var Filesystem */
|
|
|
|
protected $filesystem;
|
|
|
|
|
|
|
|
/** @var Repository */
|
|
|
|
protected $cache;
|
|
|
|
|
|
|
|
protected $prefix = 'front-end-trans-';
|
|
|
|
|
2019-09-07 21:23:38 +08:00
|
|
|
public function __construct(Filesystem $filesystem, Repository $cache)
|
2019-09-07 17:18:58 +08:00
|
|
|
{
|
|
|
|
$this->filesystem = $filesystem;
|
|
|
|
$this->cache = $cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function generate(string $locale): string
|
|
|
|
{
|
|
|
|
$source = resource_path("lang/$locale/front-end.yml");
|
|
|
|
$compiled = public_path("lang/$locale.js");
|
|
|
|
$sourceModified = $this->filesystem->lastModified($source);
|
|
|
|
$compiledModified = intval($this->cache->get($this->prefix.$locale, 0));
|
|
|
|
|
|
|
|
if ($sourceModified > $compiledModified || ! $this->filesystem->exists($compiled)) {
|
2019-09-07 21:23:38 +08:00
|
|
|
$content = 'blessing.i18n = '.json_encode(trans('front-end'), JSON_UNESCAPED_UNICODE);
|
2019-09-07 17:18:58 +08:00
|
|
|
$this->filesystem->put($compiled, $content);
|
|
|
|
$this->cache->put($this->prefix.$locale, $sourceModified);
|
|
|
|
|
|
|
|
return url("lang/$locale.js?t=$sourceModified");
|
|
|
|
}
|
|
|
|
|
|
|
|
return url("lang/$locale.js?t=$compiledModified");
|
|
|
|
}
|
2019-09-07 23:20:16 +08:00
|
|
|
|
|
|
|
public function plugin(string $locale): string
|
|
|
|
{
|
|
|
|
$path = public_path("lang/${locale}_plugin.js");
|
|
|
|
if ($this->filesystem->exists($path)) {
|
|
|
|
return url("lang/${locale}_plugin.js?t=".$this->filesystem->lastModified($path));
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
2019-09-07 17:18:58 +08:00
|
|
|
}
|