freescout-support/app/Console/Commands/GenerateVars.php

86 lines
2.3 KiB
PHP

<?php
/**
* Comman generates vars.js file with variables and translated strings.
*/
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Filesystem\Filesystem;
class GenerateVars extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'freescout:generate-vars';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Generates vars.js file with variables and translated string';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
try {
$params = [
'locales' => \Helper::getAllLocales(),
];
//$filesystem = new Filesystem();
//$file_path = public_path('js/vars.js');
$file_path = storage_path('app/public/js/vars.js');
$content = view('js/vars', $params)->render();
// Escape quotes in json values.
// https://github.com/freescout-help-desk/freescout/issues/4369
$content = preg_replace_callback(
"#(:[ ]*\")(.*)(\"[,\r\n])#",
function($v) {
return $v[1].str_replace('"', '\"', $v[2]).$v[3];
},
$content
);
// Save vars only if content has changed.
try {
if (\Storage::exists('js/vars.js')) {
$old_content = \Storage::get('js/vars.js');
if ($content != $old_content) {
\Storage::put('js/vars.js', $content);
}
} else {
\Storage::put('js/vars.js', $content);
}
$this->info("Created: ".substr($file_path, strlen(base_path())+1));
} catch (\Exception $e) {
$msg = "Error occurred saving /storage/app/public/js/vars.js. ".\Helper::formatException($e);
\Log::error($msg);
$this->error($msg);
}
} catch (\Exception $e) {
$this->error($e->getMessage());
}
}
}