MediaWiki REL1_33
MonologSpi.php
Go to the documentation of this file.
1<?php
21namespace MediaWiki\Logger;
22
26use Wikimedia\ObjectFactory;
27
116class MonologSpi implements Spi {
117
121 protected $singletons;
122
127 protected $config;
128
132 public function __construct( array $config ) {
133 $this->config = [];
134 $this->mergeConfig( $config );
135 }
136
143 public function mergeConfig( array $config ) {
144 foreach ( $config as $key => $value ) {
145 if ( isset( $this->config[$key] ) ) {
146 $this->config[$key] = array_merge( $this->config[$key], $value );
147 } else {
148 $this->config[$key] = $value;
149 }
150 }
151 if ( !isset( $this->config['loggers']['@default'] ) ) {
152 $this->config['loggers']['@default'] = [
153 'handlers' => [ '@default' ],
154 ];
155 if ( !isset( $this->config['handlers']['@default'] ) ) {
156 $this->config['handlers']['@default'] = [
157 'class' => StreamHandler::class,
158 'args' => [ 'php://stderr', Logger::ERROR ],
159 ];
160 }
161 }
162 $this->reset();
163 }
164
171 public function reset() {
172 $this->singletons = [
173 'loggers' => [],
174 'handlers' => [],
175 'formatters' => [],
176 'processors' => [],
177 ];
178 }
179
190 public function getLogger( $channel ) {
191 if ( !isset( $this->singletons['loggers'][$channel] ) ) {
192 // Fallback to using the '@default' configuration if an explict
193 // configuration for the requested channel isn't found.
194 $spec = $this->config['loggers'][$channel] ?? $this->config['loggers']['@default'];
195
196 $monolog = $this->createLogger( $channel, $spec );
197 $this->singletons['loggers'][$channel] = $monolog;
198 }
199
200 return $this->singletons['loggers'][$channel];
201 }
202
209 protected function createLogger( $channel, $spec ) {
210 $obj = new Logger( $channel );
211
212 if ( isset( $spec['calls'] ) ) {
213 foreach ( $spec['calls'] as $method => $margs ) {
214 $obj->$method( ...$margs );
215 }
216 }
217
218 if ( isset( $spec['processors'] ) ) {
219 foreach ( $spec['processors'] as $processor ) {
220 $obj->pushProcessor( $this->getProcessor( $processor ) );
221 }
222 }
223
224 if ( isset( $spec['handlers'] ) ) {
225 foreach ( $spec['handlers'] as $handler ) {
226 $obj->pushHandler( $this->getHandler( $handler ) );
227 }
228 }
229 return $obj;
230 }
231
237 public function getProcessor( $name ) {
238 if ( !isset( $this->singletons['processors'][$name] ) ) {
239 $spec = $this->config['processors'][$name];
240 $processor = ObjectFactory::getObjectFromSpec( $spec );
241 $this->singletons['processors'][$name] = $processor;
242 }
243 return $this->singletons['processors'][$name];
244 }
245
251 public function getHandler( $name ) {
252 if ( !isset( $this->singletons['handlers'][$name] ) ) {
253 $spec = $this->config['handlers'][$name];
254 $handler = ObjectFactory::getObjectFromSpec( $spec );
255 if ( isset( $spec['formatter'] ) ) {
256 $handler->setFormatter(
257 $this->getFormatter( $spec['formatter'] )
258 );
259 }
260 if ( isset( $spec['buffer'] ) && $spec['buffer'] ) {
262 }
263 $this->singletons['handlers'][$name] = $handler;
264 }
265 return $this->singletons['handlers'][$name];
266 }
267
273 public function getFormatter( $name ) {
274 if ( !isset( $this->singletons['formatters'][$name] ) ) {
275 $spec = $this->config['formatters'][$name];
276 $formatter = ObjectFactory::getObjectFromSpec( $spec );
277 $this->singletons['formatters'][$name] = $formatter;
278 }
279 return $this->singletons['formatters'][$name];
280 }
281}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
LoggerFactory service provider that creates loggers implemented by Monolog.
getHandler( $name)
Create or return cached handler.
getProcessor( $name)
Create or return cached processor.
mergeConfig(array $config)
Merge additional configuration data into the configuration.
reset()
Reset internal caches.
getLogger( $channel)
Get a logger instance.
createLogger( $channel, $spec)
Create a logger.
$config
Configuration for creating new loggers.
getFormatter( $name)
Create or return cached formatter.
Updates \Monolog\Handler\BufferHandler to use DeferredUpdates rather than register_shutdown_function.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
Definition hooks.txt:894
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:271
Service provider interface for \Psr\Log\LoggerInterface implementation libraries.
Definition Spi.php:36
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))