2020-06-09 20:29:48 +08:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @notice Please DO NOT run this script manually, when you trying to submit a Pull Request of Documentation.
|
|
|
|
* @notice Install https://github.com/nauxliu/opencc4php extension before use this script.
|
2020-09-18 09:20:00 +08:00
|
|
|
* Run this PHP script to generate the zh-tw and zh-hk documentations via zh-cn.
|
2020-06-09 20:29:48 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
! defined('BASE_PATH') && define('BASE_PATH', dirname(__DIR__, 1));
|
|
|
|
|
|
|
|
require BASE_PATH . '/vendor/autoload.php';
|
|
|
|
|
|
|
|
use Symfony\Component\Finder\Finder;
|
|
|
|
|
|
|
|
$config = [
|
|
|
|
'zh-tw' => [
|
2020-06-10 00:20:28 +08:00
|
|
|
'targetDir' => BASE_PATH . '/docs/zh-tw/',
|
2020-06-09 20:29:48 +08:00
|
|
|
'rule' => 's2twp.json',
|
|
|
|
],
|
|
|
|
'zh-hk' => [
|
2020-06-10 00:20:28 +08:00
|
|
|
'targetDir' => BASE_PATH . '/docs/zh-hk/',
|
2020-06-09 20:29:48 +08:00
|
|
|
'rule' => 's2hk.json',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
2020-06-10 00:20:28 +08:00
|
|
|
$finder = new Finder();
|
|
|
|
$finder->files()->in(BASE_PATH . '/docs/zh-cn');
|
|
|
|
|
|
|
|
foreach ($config as $key => $item) {
|
|
|
|
$od = opencc_open($item['rule']);
|
|
|
|
foreach ($finder as $fileInfo) {
|
|
|
|
$targetDir = $item['targetDir'];
|
|
|
|
$targetPath = $targetDir . $fileInfo->getRelativePath();
|
|
|
|
$isCreateDir = false;
|
|
|
|
if (! is_dir($targetPath)) {
|
|
|
|
mkdir($targetPath, 0777, true);
|
|
|
|
chmod($targetPath, 0777);
|
|
|
|
$isCreateDir = true;
|
|
|
|
}
|
|
|
|
if (! is_writable($targetPath)) {
|
|
|
|
echo sprintf('Target path %s is not writable.' . PHP_EOL, $targetPath);
|
|
|
|
}
|
|
|
|
if ($fileInfo->getExtension() === 'md') {
|
|
|
|
$translated = opencc_convert($fileInfo->getContents(), $od);
|
|
|
|
$translated = str_replace('](zh-cn/', '](' . $key . '/', $translated);
|
2021-09-09 09:29:08 +08:00
|
|
|
$translated = str_replace('](/zh-cn/', '](/' . $key . '/', $translated);
|
2020-06-22 11:20:16 +08:00
|
|
|
$translated = str_replace('](./zh-cn/', '](./' . $key . '/', $translated);
|
2020-06-10 00:20:28 +08:00
|
|
|
$targetTranslatedPath = $targetDir . $fileInfo->getRelativePathname();
|
|
|
|
@file_put_contents($targetTranslatedPath, $translated);
|
|
|
|
} else {
|
|
|
|
$targetTranslatedPath = $targetDir . $fileInfo->getRelativePathname();
|
|
|
|
@copy($fileInfo->getRealPath(), $targetTranslatedPath);
|
2020-06-09 20:29:48 +08:00
|
|
|
}
|
|
|
|
}
|
2020-06-10 00:20:28 +08:00
|
|
|
opencc_close($od);
|
|
|
|
}
|