static-php-cli/src/StaticPHP/Config/ArtifactConfig.php

81 lines
2.6 KiB
PHP
Raw Normal View History

2025-11-30 15:35:04 +08:00
<?php
declare(strict_types=1);
namespace StaticPHP\Config;
use StaticPHP\Exception\WrongUsageException;
2025-12-15 17:00:20 +08:00
use StaticPHP\Registry\Registry;
2026-01-22 16:03:01 +08:00
use Symfony\Component\Yaml\Yaml;
2025-11-30 15:35:04 +08:00
class ArtifactConfig
{
private static array $artifact_configs = [];
public static function loadFromDir(string $dir, string $registry_name): array
2025-11-30 15:35:04 +08:00
{
if (!is_dir($dir)) {
throw new WrongUsageException("Directory {$dir} does not exist, cannot load artifact config.");
}
$loaded = [];
2025-11-30 15:35:04 +08:00
$files = glob("{$dir}/artifact.*.json");
if (is_array($files)) {
foreach ($files as $file) {
2025-12-15 17:00:20 +08:00
self::loadFromFile($file, $registry_name);
$loaded[] = $file;
2025-11-30 15:35:04 +08:00
}
}
if (file_exists("{$dir}/artifact.json")) {
2025-12-15 17:00:20 +08:00
self::loadFromFile("{$dir}/artifact.json", $registry_name);
$loaded[] = "{$dir}/artifact.json";
2025-11-30 15:35:04 +08:00
}
return $loaded;
2025-11-30 15:35:04 +08:00
}
/**
* Load artifact configurations from a specified JSON file.
*/
public static function loadFromFile(string $file, string $registry_name): string
2025-11-30 15:35:04 +08:00
{
$content = file_get_contents($file);
if ($content === false) {
throw new WrongUsageException("Failed to read artifact config file: {$file}");
}
2026-01-22 16:03:01 +08:00
$data = match (pathinfo($file, PATHINFO_EXTENSION)) {
'json' => json_decode($content, true),
'yml', 'yaml' => Yaml::parse($content),
default => throw new WrongUsageException("Unsupported artifact config file format: {$file}"),
};
2025-11-30 15:35:04 +08:00
if (!is_array($data)) {
throw new WrongUsageException("Invalid JSON format in artifact config file: {$file}");
}
ConfigValidator::validateAndLintArtifacts(basename($file), $data);
foreach ($data as $artifact_name => $config) {
self::$artifact_configs[$artifact_name] = $config;
2025-12-15 17:00:20 +08:00
Registry::_bindArtifactConfigFile($artifact_name, $registry_name, $file);
2025-11-30 15:35:04 +08:00
}
return $file;
2025-11-30 15:35:04 +08:00
}
/**
* Get all loaded artifact configurations.
*
* @return array<string, array> an associative array of artifact configurations
*/
public static function getAll(): array
{
return self::$artifact_configs;
}
/**
* Get the configuration for a specific artifact by name.
*
* @param string $artifact_name the name of the artifact
* @return null|array the configuration array for the specified artifact, or null if not found
*/
public static function get(string $artifact_name): ?array
{
return self::$artifact_configs[$artifact_name] ?? null;
}
}