Initial commit: CloudOps infrastructure platform

This commit is contained in:
root
2026-04-09 19:58:57 +02:00
commit 1166a52f26
7762 changed files with 839452 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<?php
namespace Mautic\ConfigBundle\Mapper\Helper;
class ConfigHelper
{
/**
* Map local config values with form fields.
*
* @param mixed $defaults
*/
public static function bindNestedConfigValues(array $configValues, $defaults): array
{
if (!is_array($defaults)) {
// Return all config values
return $configValues;
}
foreach ($defaults as $key => $defaultValue) {
if (isset($configValues[$key]) && is_array($configValues[$key])) {
$configValues[$key] = self::bindNestedConfigValues($configValues[$key], $defaultValue);
continue;
}
$configValues[$key] ??= $defaultValue;
}
return $configValues;
}
}

View File

@@ -0,0 +1,55 @@
<?php
namespace Mautic\ConfigBundle\Mapper\Helper;
class RestrictionHelper
{
/**
* Ensure that the array has string indexes for congruency with a nested array similar to ['db_host', 'monitored_email' => ['EmailBundle_bounces'];.
*/
public static function prepareRestrictions(array $restrictedParameters): array
{
$prepared = [];
foreach ($restrictedParameters as $key => $value) {
$newKey = (is_numeric($key)) ? $value : $key;
$prepared[$newKey] = (is_array($value)) ? self::prepareRestrictions($value) : $value;
}
return $prepared;
}
/**
* Remove fields that are restricted.
*/
public static function applyRestrictions(array $configParameters, array $restrictedParameters, $restrictedParentKey = null): array
{
if ($restrictedParentKey) {
if (!isset($restrictedParameters[$restrictedParentKey])) {
// No restrictions
return $configParameters;
}
$restrictedParameters = $restrictedParameters[$restrictedParentKey];
}
foreach ($configParameters as $key => $value) {
// The entire form type is restricted
if (isset($restrictedParameters[$key]) && !is_array($restrictedParameters[$key])) {
unset($configParameters[$key]);
continue;
}
// A sub type of the form type is restricted
if (is_array($value)) {
$configParameters[$key] = self::applyRestrictions($value, $restrictedParameters, $key);
continue;
}
// Otherwise no restrictions are in place
}
return $configParameters;
}
}