2016-11-15 19:31:45 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace MediaWiki\Linter;
|
|
|
|
|
|
|
|
use Job;
|
|
|
|
use Title;
|
|
|
|
|
|
|
|
class RecordLintJob extends Job {
|
|
|
|
/**
|
|
|
|
* RecordLintJob constructor.
|
|
|
|
* @param Title $title
|
|
|
|
* @param array $params
|
|
|
|
*/
|
|
|
|
public function __construct( Title $title, array $params ) {
|
|
|
|
parent::__construct( 'RecordLintJob', $title, $params );
|
|
|
|
}
|
|
|
|
|
|
|
|
public function run() {
|
2022-01-10 21:22:30 +00:00
|
|
|
if ( $this->title->getLatestRevID() != $this->params['revision'] ) {
|
2016-11-15 19:31:45 +00:00
|
|
|
// Outdated now, let a later job handle it
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-18 03:36:06 +00:00
|
|
|
// [ 'id' => LintError ]
|
2016-11-15 19:31:45 +00:00
|
|
|
$errors = [];
|
2016-11-24 03:47:04 +00:00
|
|
|
foreach ( $this->params['errors'] as $errorInfo ) {
|
|
|
|
$error = new LintError(
|
|
|
|
$errorInfo['type'],
|
2016-12-01 02:47:05 +00:00
|
|
|
$errorInfo['location'],
|
2017-12-07 22:30:14 +00:00
|
|
|
$errorInfo['params'],
|
|
|
|
$errorInfo['dbid']
|
2016-11-15 19:31:45 +00:00
|
|
|
);
|
2016-11-24 03:47:04 +00:00
|
|
|
// Use unique id as key to get rid of exact dupes
|
|
|
|
// (e.g. same category of error in same template)
|
2018-08-18 03:36:06 +00:00
|
|
|
$errors[$error->id()] = $error;
|
2016-11-15 19:31:45 +00:00
|
|
|
}
|
2022-01-10 21:22:30 +00:00
|
|
|
|
2016-11-15 19:31:45 +00:00
|
|
|
$lintDb = new Database( $this->title->getArticleID() );
|
2022-01-10 21:22:30 +00:00
|
|
|
$lintDb->updateStats( $lintDb->setForPage( $errors ) );
|
2016-12-09 00:05:45 +00:00
|
|
|
|
2016-11-15 19:31:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|