2022-03-07 22:45:54 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace NoccyLabs\FreshDocker\Configuration;
|
|
|
|
|
|
|
|
use Symfony\Component\Yaml\Yaml;
|
|
|
|
|
2022-03-09 00:38:57 +01:00
|
|
|
class ComposeConfiguration
|
2022-03-07 22:45:54 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
private array $checks = [];
|
|
|
|
|
2022-09-03 00:11:52 +02:00
|
|
|
private array $services = [];
|
|
|
|
|
2022-03-07 22:45:54 +01:00
|
|
|
public function __construct(string $configfile)
|
|
|
|
{
|
|
|
|
$this->loadComposeFile($configfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function loadComposeFile($configfile)
|
|
|
|
{
|
|
|
|
$config = Yaml::parseFile($configfile);
|
|
|
|
$services = $config['services']??[];
|
|
|
|
foreach ($services as $name=>$service) {
|
|
|
|
$image = $service['image']??null;
|
|
|
|
if ($image && !in_array($image,$this->checks)) {
|
|
|
|
$this->checks[] = $image;
|
|
|
|
}
|
2022-09-03 00:11:52 +02:00
|
|
|
if (!array_key_exists($image, $this->services)) {
|
|
|
|
$this->services[$image] = [];
|
|
|
|
}
|
|
|
|
$this->services[$image][] = $name;
|
2022-03-07 22:45:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getChecks(): array
|
|
|
|
{
|
|
|
|
return $this->checks;
|
|
|
|
}
|
2022-09-03 00:11:52 +02:00
|
|
|
|
|
|
|
public function getServicesForImages(array $images)
|
|
|
|
{
|
|
|
|
$ret = [];
|
|
|
|
foreach ($images as $ref) {
|
|
|
|
$image = (string)$ref->ref;
|
|
|
|
if (array_key_exists($image, $this->services)) {
|
|
|
|
$ret = array_merge($ret, $this->services[$image]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return array_unique($ret);
|
|
|
|
}
|
2022-03-07 22:45:54 +01:00
|
|
|
}
|