mwstake / mediawiki-component-dynamicconfig
Dynamic config manager
Installs: 1 242
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 0
Open Issues: 1
Requires
- composer/installers: ~1.0|~2
- mwstake/mediawiki-componentloader: ~1
Requires (Dev)
- jakub-onderka/php-console-highlighter: 0.4.0
- jakub-onderka/php-parallel-lint: 1.0.0
- mediawiki/mediawiki-codesniffer: 29.0.0
- mediawiki/minus-x: 1.0.0
- phpunit/phpunit: ^8.5
README
This component is designed to store configuration variables in Database and load (and apply) them from there.
It is primarely meant to replace config
directory in BlueSpiceFoundation and configs stored in actual static PHP files.
It can be used to store any number of configurations, basically everything that goes into LocalSettings.php
, except for
core configs, like DB connection and similar.
Registering configs
- Implement a class that implements
MWStake\MediaWiki\Component\DynamicConfig\IDynamicConfig
interface. - Use
MWStakeDynamicConfigRegisterConfigs
Hook to register your configs.
In case your config sets/reads MW globals ($GLOBALS
), make it implement
MWStake\MediaWiki\Component\DynamicConfig\GlobalsAwareDynamicConfig
interface as well.
Using configs
To store config to DB, use
$manager = \MediaWiki\MediaWikiServices::getInstance()->getService( 'MWStakeDynamicConfigManager' ); $manager->storeConfig( $config, $dataToBePassedToTheConfig );
This will call serialize
method on the IDynamicConfig
object with $dataToBePassedToTheConfig
as an argument.
This method must return a string to be stored to the Database.
If your config's shouldAutoApply
method returns true
, the config will be auto-applied on SetupAfterCache
hook.
Otherwise, you can apply it manually by calling
$manager = \MediaWiki\MediaWikiServices::getInstance()->getService( 'MWStakeDynamicConfigManager' ); $manager->applyConfig( $config );
When applying, method apply
will be called on the IDynamicConfig
object with the data from the Database as an argument.
Config itself is responsible for parsing the data and applying it.
Backups
On every change of a config value, a backup will be made. System will create up to 5 backups, after which it will rotate, deleting the oldest one.
Restoring backups
From code
$manager = \MediaWiki\MediaWikiServices::getInstance()->getService( 'MWStakeDynamicConfigManager' ); $manager->restoreBackup( $config, $dataTime ); // DateTime object matching the timestamp of available backup
From CLI
# List available config types php vendor/mwstake/mediawiki-component-dynamicconfig/maintenance/restoreFromBackup.php --list-types # List avilable backups for a type php vendor/mwstake/mediawiki-component-dynamicconfig/maintenance/restoreFromBackup.php --list-backups --config={key} # Restore a backup (timestamp in YmdHis format) php vendor/mwstake/mediawiki-component-dynamicconfig/maintenance/restoreFromBackup.php --backup-timestamp=20230523104627 --config={key}
Note: This will assume component is installed in the root vendor
directory. If its not, specify path to Maintenance.php
, as the first
argument of the script.
# List available config types
php vendor/mwstake/mediawiki-component-dynamicconfig/maintenance/restoreFromBackup.php some/path/Maintenance.php --list-types