38 const SCHEMA_REV = 15781718;
58 $this->logger =
$logger ?: LoggerFactory::getInstance( __CLASS__ );
59 $this->
key =
'Pingback-' . $this->config->get(
'Version' );
67 return $this->config->get(
'Pingback' ) && !$this->
checkIfSent();
76 $sent =
$dbr->selectField(
77 'updatelog',
'1', [
'ul_key' => $this->
key ], __METHOD__ );
78 return $sent !==
false;
88 'updatelog', [
'ul_key' => $this->
key ], __METHOD__,
'IGNORE' );
101 if ( !
$cache->add( $this->key, 1, 60 * 60 ) ) {
106 if ( !$dbw->lock( $this->key, __METHOD__, 0 ) ) {
127 'database' => $this->config->get(
'DBtype' ),
128 'MediaWiki' => $this->config->get(
'Version' ),
129 'PHP' => PHP_VERSION,
130 'OS' => PHP_OS .
' ' . php_uname(
'r' ),
131 'arch' => PHP_INT_SIZE === 8 ? 64 : 32,
132 'machine' => php_uname(
'm' ),
135 if ( isset( $_SERVER[
'SERVER_SOFTWARE'] ) ) {
136 $event[
'serverSoftware'] = $_SERVER[
'SERVER_SOFTWARE'];
139 $limit = ini_get(
'memory_limit' );
141 $event[
'memoryLimit'] =
$limit;
154 'schema' =>
'MediaWikiPingback',
155 'revision' => self::SCHEMA_REV,
172 'updatelog',
'ul_value', [
'ul_key' =>
'PingBack' ] );
174 if (
$id ==
false ) {
179 [
'ul_key' =>
'PingBack',
'ul_value' =>
$id ],
184 if ( !$dbw->affectedRows() ) {
185 $id = $dbw->selectField(
186 'updatelog',
'ul_value', [
'ul_key' =>
'PingBack' ] );
213 $queryString = rawurlencode( str_replace(
' ',
'\u0020', $json ) ) .
';';
214 $url =
'https://www.mediawiki.org/beacon/event?' . $queryString;
234 $this->logger->debug( __METHOD__ .
": couldn't acquire lock" );
240 $this->logger->warning( __METHOD__ .
": failed to send pingback; check 'http' log" );
245 $this->logger->debug( __METHOD__ .
": pingback sent OK ({$this->key})" );
256 if ( $instance->shouldSend() ) {
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
getSystemInfo()
Collect basic data about this MediaWiki installation and return it as an associative array conforming...
the array() calling protocol came about after MediaWiki 1.4rc1.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
acquireLock()
Acquire lock for sending a pingback.
static getLocalClusterInstance()
Get the main cluster-local cache object.
checkIfSent()
Has a pingback already been sent for this MediaWiki version?
string $id
Randomly-generated identifier for this wiki.
static getMain()
Static methods.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database key
sendPingback()
Send information about this MediaWiki instance to MediaWiki.org.
string $key
updatelog key (also used as cache/db lock key)
static schedulePingback()
Schedule a deferred callable that will check if a pingback should be sent and (if so) proceed to send...
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
__construct(Config $config=null, LoggerInterface $logger=null)
getData()
Get the EventLogging packet to be sent to the server.
static generateHex($chars, $forceStrong=false)
Generate a run of (ideally) cryptographically random data and return it in hexadecimal string format...
postPingback(array $data)
Serialize pingback data and send it to MediaWiki.org via a POST to its event beacon endpoint...
static post($url, $options=[], $caller=__METHOD__)
Simple wrapper for Http::request( 'POST' )
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method.MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances.The"Spi"in MediaWiki\Logger\Spi stands for"service provider interface".An SPI is an API intended to be implemented or extended by a third party.This software design pattern is intended to enable framework extension and replaceable components.It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki.The service provider interface allows the backend logging library to be implemented in multiple ways.The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime.This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance.Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
getOrCreatePingbackId()
Get a unique, stable identifier for this wiki.
shouldSend()
Should a pingback be sent?
static addCallableUpdate($callable, $stage=self::POSTSEND, IDatabase $dbw=null)
Add a callable update.
markSent()
Record the fact that we have sent a pingback for this MediaWiki version, to ensure we don't submit da...
Send information about this MediaWiki instance to MediaWiki.org.