3 * Copyright © 2012 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 namespace MediaWiki\Api
;
26 use InvalidArgumentException
;
27 use MediaWiki\Context\ContextSource
;
28 use MediaWiki\MediaWikiServices
;
29 use UnexpectedValueException
;
30 use Wikimedia\ObjectFactory\ObjectFactory
;
33 * This class holds a list of modules and handles instantiation
38 class ApiModuleManager
extends ContextSource
{
47 private $mInstances = [];
51 private $mGroups = [];
55 private $mModules = [];
59 private $objectFactory;
62 * Construct new module manager
64 * @param ApiBase $parentModule Parent module instance will be used during instantiation
65 * @param ObjectFactory|null $objectFactory Object factory to use when instantiating modules
67 public function __construct( ApiBase
$parentModule, ?ObjectFactory
$objectFactory = null ) {
68 $this->mParent
= $parentModule;
69 $this->objectFactory
= $objectFactory ?? MediaWikiServices
::getInstance()->getObjectFactory();
73 * Add a list of modules to the manager. Each module is described
74 * by an ObjectFactory spec.
76 * This simply calls `addModule()` for each module in `$modules`.
78 * @see ApiModuleManager::addModule()
79 * @param array $modules A map of ModuleName => ModuleSpec
80 * @param string $group Which group modules belong to (action,format,...)
82 public function addModules( array $modules, $group ) {
83 foreach ( $modules as $name => $moduleSpec ) {
84 $this->addModule( $name, $group, $moduleSpec );
89 * Add or overwrite a module in this ApiMain instance. Intended for use by extending
90 * classes who wish to add their own modules to their lexicon or override the
91 * behavior of inherent ones.
93 * ObjectFactory is used to instantiate the module when needed. The parent module
94 * (`$parentModule` from `__construct()`) and the `$name` are passed as extraArgs.
96 * @since 1.34, accepts an ObjectFactory spec as the third parameter. The old calling convention,
97 * passing a class name as parameter #3 and an optional factory callable as parameter #4, is
99 * @param string $name The identifier for this module.
100 * @param string $group Name of the module group
101 * @param string|array $spec The ObjectFactory spec for instantiating the module,
102 * or a class name to instantiate.
103 * @param callable|null $factory Callback for instantiating the module (deprecated).
105 public function addModule( string $name, string $group, $spec, $factory = null ) {
106 if ( is_string( $spec ) ) {
111 if ( is_callable( $factory ) ) {
112 wfDeprecated( __METHOD__
. ' with $class and $factory', '1.34' );
113 $spec['factory'] = $factory;
115 } elseif ( !is_array( $spec ) ) {
116 throw new InvalidArgumentException( '$spec must be a string or an array' );
117 } elseif ( !isset( $spec['class'] ) ) {
118 throw new InvalidArgumentException( '$spec must define a class name' );
121 $this->mGroups
[$group] = null;
122 $this->mModules
[$name] = [ $group, $spec ];
126 * Get module instance by name, or instantiate it if it does not exist
128 * @param string $moduleName
129 * @param string|null $group Optionally validate that the module is in a specific group
130 * @param bool $ignoreCache If true, force-creates a new instance and does not cache it
132 * @return ApiBase|null The new module instance, or null if failed
134 public function getModule( $moduleName, $group = null, $ignoreCache = false ) {
135 if ( !isset( $this->mModules
[$moduleName] ) ) {
139 [ $moduleGroup, $spec ] = $this->mModules
[$moduleName];
141 if ( $group !== null && $moduleGroup !== $group ) {
145 if ( !$ignoreCache && isset( $this->mInstances
[$moduleName] ) ) {
147 return $this->mInstances
[$moduleName];
150 $instance = $this->instantiateModule( $moduleName, $spec );
152 if ( !$ignoreCache ) {
153 // cache this instance in case it is needed later
154 $this->mInstances
[$moduleName] = $instance;
162 * Instantiate the module using the given class or factory function.
164 * @param string $name The identifier for this module.
165 * @param array $spec The ObjectFactory spec for instantiating the module.
167 * @throws UnexpectedValueException
170 private function instantiateModule( $name, $spec ) {
171 return $this->objectFactory
->createObject(
178 'assertClass' => $spec['class']
184 * Get an array of modules in a specific group or all if no group is set.
185 * @param string|null $group Optional group filter
186 * @return string[] List of module names
188 public function getNames( $group = null ) {
189 if ( $group === null ) {
190 return array_keys( $this->mModules
);
193 foreach ( $this->mModules
as $name => $groupAndSpec ) {
194 if ( $groupAndSpec[0] === $group ) {
203 * Create an array of (moduleName => moduleClass) for a specific group or for all.
204 * @param string|null $group Name of the group to get or null for all
205 * @return array Name=>class map
207 public function getNamesWithClasses( $group = null ) {
209 foreach ( $this->mModules
as $name => $groupAndSpec ) {
210 if ( $group === null ||
$groupAndSpec[0] === $group ) {
211 $result[$name] = $groupAndSpec[1]['class'];
219 * Returns the class name of the given module
221 * @param string $module Module name
222 * @return string|false class name or false if the module does not exist
225 public function getClassName( $module ) {
226 if ( isset( $this->mModules
[$module] ) ) {
227 return $this->mModules
[$module][1]['class'];
234 * Returns true if the specific module is defined at all or in a specific group.
235 * @param string $moduleName
236 * @param string|null $group Group name to check against, or null to check all groups,
237 * @return bool True if defined
239 public function isDefined( $moduleName, $group = null ) {
240 if ( isset( $this->mModules
[$moduleName] ) ) {
241 return $group === null ||
$this->mModules
[$moduleName][0] === $group;
248 * Returns the group name for the given module
249 * @param string $moduleName
250 * @return string|null Group name or null if missing
252 public function getModuleGroup( $moduleName ) {
253 if ( isset( $this->mModules
[$moduleName] ) ) {
254 return $this->mModules
[$moduleName][0];
261 * Get a list of groups this manager contains.
264 public function getGroups() {
265 return array_keys( $this->mGroups
);
269 /** @deprecated class alias since 1.43 */
270 class_alias( ApiModuleManager
::class, 'ApiModuleManager' );