MediaWiki REL1_30
Pingback.php
Go to the documentation of this file.
1<?php
23use Psr\Log\LoggerInterface;
25
31class Pingback {
32
38 const SCHEMA_REV = 15781718;
39
41 protected $logger;
42
44 protected $config;
45
47 protected $key;
48
50 protected $id;
51
56 public function __construct( Config $config = null, LoggerInterface $logger = null ) {
57 $this->config = $config ?: RequestContext::getMain()->getConfig();
58 $this->logger = $logger ?: LoggerFactory::getInstance( __CLASS__ );
59 $this->key = 'Pingback-' . $this->config->get( 'Version' );
60 }
61
66 private function shouldSend() {
67 return $this->config->get( 'Pingback' ) && !$this->checkIfSent();
68 }
69
74 private function checkIfSent() {
76 $sent = $dbr->selectField(
77 'updatelog', '1', [ 'ul_key' => $this->key ], __METHOD__ );
78 return $sent !== false;
79 }
80
85 private function markSent() {
86 $dbw = wfGetDB( DB_MASTER );
87 return $dbw->insert(
88 'updatelog', [ 'ul_key' => $this->key ], __METHOD__, 'IGNORE' );
89 }
90
99 private function acquireLock() {
100 $cache = ObjectCache::getLocalClusterInstance();
101 if ( !$cache->add( $this->key, 1, 60 * 60 ) ) {
102 return false; // throttled
103 }
104
105 $dbw = wfGetDB( DB_MASTER );
106 if ( !$dbw->lock( $this->key, __METHOD__, 0 ) ) {
107 return false; // already in progress
108 }
109
110 return true;
111 }
112
125 public function getSystemInfo() {
126 $event = [
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' ),
133 ];
134
135 if ( isset( $_SERVER['SERVER_SOFTWARE'] ) ) {
136 $event['serverSoftware'] = $_SERVER['SERVER_SOFTWARE'];
137 }
138
139 $limit = ini_get( 'memory_limit' );
140 if ( $limit && $limit != -1 ) {
141 $event['memoryLimit'] = $limit;
142 }
143
144 return $event;
145 }
146
152 private function getData() {
153 return [
154 'schema' => 'MediaWikiPingback',
155 'revision' => self::SCHEMA_REV,
156 'wiki' => $this->getOrCreatePingbackId(),
157 'event' => $this->getSystemInfo(),
158 ];
159 }
160
169 private function getOrCreatePingbackId() {
170 if ( !$this->id ) {
171 $id = wfGetDB( DB_REPLICA )->selectField(
172 'updatelog', 'ul_value', [ 'ul_key' => 'PingBack' ] );
173
174 if ( $id == false ) {
176 $dbw = wfGetDB( DB_MASTER );
177 $dbw->insert(
178 'updatelog',
179 [ 'ul_key' => 'PingBack', 'ul_value' => $id ],
180 __METHOD__,
181 'IGNORE'
182 );
183
184 if ( !$dbw->affectedRows() ) {
185 $id = $dbw->selectField(
186 'updatelog', 'ul_value', [ 'ul_key' => 'PingBack' ] );
187 }
188 }
189
190 $this->id = $id;
191 }
192
193 return $this->id;
194 }
195
211 private function postPingback( array $data ) {
212 $json = FormatJson::encode( $data );
213 $queryString = rawurlencode( str_replace( ' ', '\u0020', $json ) ) . ';';
214 $url = 'https://www.mediawiki.org/beacon/event?' . $queryString;
215 return Http::post( $url ) !== false;
216 }
217
233 public function sendPingback() {
234 if ( !$this->acquireLock() ) {
235 $this->logger->debug( __METHOD__ . ": couldn't acquire lock" );
236 return false;
237 }
238
239 $data = $this->getData();
240 if ( !$this->postPingback( $data ) ) {
241 $this->logger->warning( __METHOD__ . ": failed to send pingback; check 'http' log" );
242 return false;
243 }
244
245 $this->markSent();
246 $this->logger->debug( __METHOD__ . ": pingback sent OK ({$this->key})" );
247 return true;
248 }
249
254 public static function schedulePingback() {
255 DeferredUpdates::addCallableUpdate( function () {
256 $instance = new Pingback;
257 if ( $instance->shouldSend() ) {
258 $instance->sendPingback();
259 }
260 } );
261 }
262}
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
static generateHex( $chars, $forceStrong=false)
Generate a run of (ideally) cryptographically random data and return it in hexadecimal string format.
PSR-3 logger instance factory.
Send information about this MediaWiki instance to MediaWiki.org.
Definition Pingback.php:31
acquireLock()
Acquire lock for sending a pingback.
Definition Pingback.php:99
getOrCreatePingbackId()
Get a unique, stable identifier for this wiki.
Definition Pingback.php:169
sendPingback()
Send information about this MediaWiki instance to MediaWiki.org.
Definition Pingback.php:233
LoggerInterface $logger
Definition Pingback.php:41
shouldSend()
Should a pingback be sent?
Definition Pingback.php:66
getData()
Get the EventLogging packet to be sent to the server.
Definition Pingback.php:152
postPingback(array $data)
Serialize pingback data and send it to MediaWiki.org via a POST to its event beacon endpoint.
Definition Pingback.php:211
string $id
Randomly-generated identifier for this wiki.
Definition Pingback.php:50
Config $config
Definition Pingback.php:44
string $key
updatelog key (also used as cache/db lock key)
Definition Pingback.php:47
markSent()
Record the fact that we have sent a pingback for this MediaWiki version, to ensure we don't submit da...
Definition Pingback.php:85
__construct(Config $config=null, LoggerInterface $logger=null)
Definition Pingback.php:56
static schedulePingback()
Schedule a deferred callable that will check if a pingback should be sent and (if so) proceed to send...
Definition Pingback.php:254
checkIfSent()
Has a pingback already been sent for this MediaWiki version?
Definition Pingback.php:74
getSystemInfo()
Collect basic data about this MediaWiki installation and return it as an associative array conforming...
Definition Pingback.php:125
static getMain()
Static methods.
if(! $regexes) $dbr
Definition cleanup.php:94
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
Definition design.txt:26
$cache
Definition mcc.php:33
const DB_REPLICA
Definition defines.php:25
const DB_MASTER
Definition defines.php:26