Files
ntspi-app/app/Containers/VikonIntegration/Actions/UpdateCoreAction.php
T

151 lines
5.3 KiB
PHP

<?php
namespace App\Containers\VikonIntegration\Actions;
use App\Containers\VikonIntegration\Tasks\HttpTask;
use App\Containers\VikonIntegration\Tasks\FilesystemTask;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Facades\Log;
use ZipArchive;
class UpdateCoreAction
{
public function __construct(
private readonly HttpTask $http,
private readonly FilesystemTask $fs,
private readonly array $modulesConfig,
private readonly string $storagePath,
private readonly string $basePath,
) {}
public function run(int $moduleId, string $accessToken): string
{
$config = $this->modulesConfig[$moduleId] ?? throw new \RuntimeException('Неизвестный модуль');
$modulePath = $this->basePath . '/' . $config['path'];
$tempPath = $this->storagePath . '/temp/' . $config['path'];
try {
Log::info('Vikon: downloading module core', ['module' => $moduleId]);
if ($moduleId === 2) {
return $this->initAbiturModule($modulePath, $accessToken);
}
$zipContent = $this->http->downloadWithToken(
'pull_updates/generateEmptyModuleCore/' . $moduleId,
$accessToken
);
if (File::exists($tempPath)) File::deleteDirectory($tempPath);
File::makeDirectory($tempPath, 0755, true, true);
$zipFile = $tempPath . '/module.zip';
file_put_contents($zipFile, $zipContent);
$this->extractZip($zipFile, $tempPath);
$blocked = $this->fs->validateFileTypes($tempPath);
if (!empty($blocked)) {
throw new \RuntimeException(
'Запрещённые файлы: ' . implode(', ', $blocked) . '. Обновление отклонено.'
);
}
$extractedDirs = File::directories($tempPath);
$syncSource = $extractedDirs[0] ?? $tempPath;
File::makeDirectory($modulePath, 0755, true, true);
$this->syncFiles($syncSource, $modulePath);
File::put($modulePath . '/.vikon', date('Y-m-d H:i:s'));
Log::info('Vikon: module updated', ['module' => $config['name']]);
return 'Модуль "' . $config['name'] . '" обновлён.';
} catch (\Throwable $e) {
Log::error('Vikon update failed', ['module' => $moduleId, 'error' => $e->getMessage()]);
File::deleteDirectory($tempPath);
throw new \RuntimeException('Ошибка обновления: ' . $e->getMessage());
}
}
private function extractZip(string $zipPath, string $destination): void
{
$zip = new ZipArchive;
if ($zip->open($zipPath) !== true) {
throw new \RuntimeException('Не удалось открыть ZIP');
}
$realDest = realpath($destination);
$blocked = ['php', 'phtml', 'php5', 'php7', 'php8', 'phar'];
for ($i = 0; $i < $zip->numFiles; $i++) {
$name = $zip->getNameIndex($i);
if (str_contains($name, '..')) {
$zip->close();
throw new \RuntimeException("Zip Slip: {$name}");
}
$ext = strtolower(pathinfo($name, PATHINFO_EXTENSION));
if (in_array($ext, $blocked, true)) {
$zip->close();
throw new \RuntimeException("Blocked executable: {$name}");
}
$full = realpath($realDest . '/' . $name);
if ($full !== false && !str_starts_with($full, $realDest)) {
$zip->close();
throw new \RuntimeException("Path escape: {$name}");
}
}
$zip->extractTo($destination);
$zip->close();
}
private function syncFiles(string $source, string $target): void
{
File::makeDirectory($target, 0755, true, true);
foreach (File::files($source) as $file) {
$name = $file->getFilename();
$targetPath = $target . '/' . $name;
rename($file->getPathname(), $targetPath);
}
foreach (File::directories($source) as $dir) {
$name = basename($dir);
$targetPath = $target . '/' . $name;
if (!File::isDirectory($targetPath)) {
rename($dir, $targetPath);
} else {
$this->syncFiles($dir, $targetPath);
}
}
}
private function initAbiturModule(string $modulePath, string $accessToken): string
{
$response = $this->http->getWithToken(
'pull_updates/generateEmptyModuleCore/2',
$accessToken
);
$body = $response->json();
if (!isset($body['success']) || $body['success'] !== true) {
throw new \RuntimeException('ABITUR init failed: ' . ($body['message'] ?? 'Unknown error'));
}
if (!File::isDirectory($modulePath)) {
File::makeDirectory($modulePath, 0755, true, true);
}
if (!File::isDirectory($modulePath . '/files')) {
File::makeDirectory($modulePath . '/files', 0755, true, true);
}
File::put($modulePath . '/.vikon', date('Y-m-d H:i:s'));
Log::info('Vikon: ABITUR module initialized');
return 'Модуль "Абитуриент" инициализирован.';
}
}