1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
<?php
namespace MediaWiki\Settings\Config;
abstract class ConfigBuilderBase implements ConfigBuilder {
abstract protected function has( string $key ): bool;
abstract protected function update( string $key, $value );
/**
* @inheritDoc
*/
public function set(
string $key,
$newValue,
?MergeStrategy $mergeStrategy = null
): ConfigBuilder {
if ( $mergeStrategy && $this->has( $key ) && is_array( $newValue ) ) {
$oldValue = $this->get( $key );
if ( $oldValue && is_array( $oldValue ) ) {
$newValue = $mergeStrategy->merge( $oldValue, $newValue );
}
}
$this->update( $key, $newValue );
return $this;
}
/**
* @inheritDoc
*/
public function setMulti( array $values, array $mergeStrategies = [] ): ConfigBuilder {
foreach ( $values as $key => $value ) {
$this->set( $key, $value, $mergeStrategies[$key] ?? null );
}
return $this;
}
/**
* @inheritDoc
*/
public function setDefault(
string $key,
$defaultValue,
?MergeStrategy $mergeStrategy = null
): ConfigBuilder {
if ( $this->has( $key ) ) {
if ( $mergeStrategy && $defaultValue && is_array( $defaultValue ) ) {
$customValue = $this->get( $key );
if ( is_array( $customValue ) ) {
$newValue = $mergeStrategy->merge( $defaultValue, $customValue );
$this->update( $key, $newValue );
}
}
} else {
$this->update( $key, $defaultValue );
}
return $this;
}
/**
* @inheritDoc
*/
public function setMultiDefault( array $defaults, array $mergeStrategies ): ConfigBuilder {
foreach ( $defaults as $key => $defaultValue ) {
$this->setDefault( $key, $defaultValue, $mergeStrategies[$key] ?? null );
}
return $this;
}
}
|