Created
May 10, 2023 00:05
-
-
Save renzocastillo/2167541322678057e12aca62080a64c0 to your computer and use it in GitHub Desktop.
Convert Laravel language files from PHP to JSON
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Console\Commands; | |
use Illuminate\Console\Command; | |
class LangFilesToJson extends Command | |
{ | |
/** | |
* The name and signature of the console command. | |
* | |
* @var string | |
*/ | |
protected $signature = 'lang:json'; | |
/** | |
* The console command description. | |
* | |
* @var string | |
*/ | |
protected $description = 'Convert Laravel language files from PHP to JSON'; | |
/** | |
* Create a new command instance. | |
* | |
* @return void | |
*/ | |
public function __construct() | |
{ | |
parent::__construct(); | |
} | |
public function convert( $data ) { | |
$result = []; | |
foreach ( $data as $key => $value ) { | |
if ( is_array( $value ) ) { | |
$result[ $key ] = $this->convert( $value ); | |
} else { | |
if ( strpos( $value, ':' ) !== false ) { | |
$value = preg_replace( '/:(\w+)/', '{$1}', $value ); | |
} | |
$result[ $key ] = $value; | |
} | |
} | |
return $result; | |
} | |
/** | |
* Execute the console command. | |
* | |
*/ | |
public function handle() | |
{ | |
$sourceDir = resource_path('lang/'); | |
$targetDir = resource_path('lang/'); | |
$languages = array_diff( scandir( $sourceDir ), [ '.', '..' ] ); | |
foreach ( $languages as $language ) { | |
$languageDir = $sourceDir . $language . '/'; | |
$files = array_diff( scandir( $languageDir ), [ '.', '..' ] ); | |
$translations = []; | |
foreach ( $files as $file ) { | |
$filePath = $languageDir . $file; | |
$translation = require $filePath; | |
$translation = $this->convert( $translation ); | |
$translations[ str_replace( '.php', '', $file ) ] = $translation; | |
} | |
$targetPath = $targetDir . $language . '.json'; | |
file_put_contents( $targetPath, json_encode( $translations, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE ) ); | |
} | |
$this->info('Language files compiled to JSON successfully!'); | |
} | |
} |
I have also written a command so that I can run the PHP files recursively and the old synthax remains in the json file.
<?php
declare(strict_types=1);
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Facades\Lang;
class LangFilesToJsonCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'lang:json';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Convert Laravel language files from PHP to JSON';
/**
* Execute the console command.
*
*/
public function handle(): void
{
$directories = File::directories(lang_path());
$result = [];
foreach($directories as $directory) {
$files = File::files($directory);
$locale = basename($directory);
$jsonPath = implode('/', [resource_path(), 'js', $locale]) . '.json';
$langPath = implode('/', [lang_path(), $locale]) . '.json';
foreach ($files as $file) {
$fileName = $file->getFilenameWithoutExtension();
$content = Lang::get(key: $fileName, locale: $locale);
foreach ((array)$content as $key => $value) {
$response = $this->extract($fileName . '.'.$key, $value);
$result = array_merge($result, $response);
}
}
File::put($jsonPath, json_encode($result, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE));
File::put($langPath, json_encode($result, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE));
}
$this->info('Language files compiled to JSON successfully!');
}
private function extract(string $identifier, array|string $content): array
{
$list = [];
if (is_array( $content )) {
foreach ($content as $key => $value) {
$list = array_merge($list, $this->extract($identifier . '.' . $key, $value));
}
} else {
$list[ $identifier ] = $content;
}
return $list;
}
}
I have also written a command so that I can run the PHP files recursively and the old synthax remains in the json file.
<?php
declare(strict_types=1);
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Facades\Lang;
class LangFilesToJsonCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'lang:json';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Convert Laravel language files from PHP to JSON';
/**
* Execute the console command.
*
*/
public function handle(): void
{
$directories = File::directories(lang_path());
$result = [];
foreach($directories as $directory) {
$files = File::files($directory);
$locale = basename($directory);
$jsonPath = implode('/', [resource_path(), 'js', $locale]) . '.json';
$langPath = implode('/', [lang_path(), $locale]) . '.json';
foreach ($files as $file) {
$fileName = $file->getFilenameWithoutExtension();
$content = Lang::get(key: $fileName, locale: $locale);
foreach ((array)$content as $key => $value) {
$response = $this->extract($fileName . '.'.$key, $value);
$result = array_merge($result, $response);
}
}
File::put($jsonPath, json_encode($result, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE));
File::put($langPath, json_encode($result, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE));
}
$this->info('Language files compiled to JSON successfully!');
}
private function extract(string $identifier, array|string $content): array
{
$list = [];
if (is_array( $content )) {
foreach ($content as $key => $value) {
$list = array_merge($list, $this->extract($identifier . '.' . $key, $value));
}
} else {
$list[ $identifier ] = $content;
}
return $list;
}
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just create a new artisan command with
php artisan make:command LangFilesToJson
and replace the content of the new empty class generated atapp/Console/Commands
with this one. Then you can use it by simply running at your terminalphp artisan lang:json