2016-10-13 08:14:18 +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 FormatJson;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Database logic
|
|
|
|
*/
|
2016-10-29 01:06:08 +00:00
|
|
|
class Database {
|
2016-10-13 08:14:18 +00:00
|
|
|
/**
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
private $pageId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $pageId
|
|
|
|
*/
|
|
|
|
public function __construct( $pageId ) {
|
|
|
|
$this->pageId = $pageId;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a specific LintError by id
|
|
|
|
*
|
|
|
|
* @param int $id linter_id
|
|
|
|
* @return bool|LintError
|
|
|
|
*/
|
2016-10-29 01:06:08 +00:00
|
|
|
public function getFromId( $id ) {
|
|
|
|
$row = wfGetDB( DB_REPLICA )->selectRow(
|
2016-10-13 08:14:18 +00:00
|
|
|
'linter',
|
|
|
|
[ 'linter_cat', 'linter_params' ],
|
|
|
|
[ 'linter_id' => $id, 'linter_page' => $this->pageId ],
|
2016-10-29 01:06:08 +00:00
|
|
|
__METHOD__
|
2016-10-13 08:14:18 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
if ( $row ) {
|
|
|
|
$row->linter_id = $id;
|
|
|
|
return $this->makeLintError( $row );
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Turn a database row into a LintError object
|
|
|
|
*
|
|
|
|
* @param \stdClass $row
|
|
|
|
* @return LintError
|
|
|
|
*/
|
|
|
|
public static function makeLintError( $row ) {
|
|
|
|
return new LintError(
|
2016-11-22 09:03:02 +00:00
|
|
|
( new CategoryManager() )->getCategoryName( $row->linter_cat ),
|
2016-10-13 08:14:18 +00:00
|
|
|
$row->linter_params,
|
|
|
|
(int)$row->linter_id
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all the lint errors for a page
|
|
|
|
*
|
|
|
|
* @return LintError[]
|
|
|
|
*/
|
2016-10-29 01:06:08 +00:00
|
|
|
public function getForPage() {
|
|
|
|
$rows = wfGetDB( DB_REPLICA )->select(
|
2016-10-13 08:14:18 +00:00
|
|
|
'linter',
|
|
|
|
[ 'linter_id', 'linter_cat', 'linter_params' ],
|
|
|
|
[ 'linter_page' => $this->pageId ],
|
2016-10-29 01:06:08 +00:00
|
|
|
__METHOD__
|
2016-10-13 08:14:18 +00:00
|
|
|
);
|
|
|
|
$result = [];
|
|
|
|
foreach ( $rows as $row ) {
|
|
|
|
$error = $this->makeLintError( $row );
|
|
|
|
$result[$error->id()] = $error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a LintError object into an array for
|
|
|
|
* inserting/querying in the database
|
|
|
|
*
|
|
|
|
* @param LintError $error
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function serializeError( LintError $error ) {
|
2016-10-29 01:06:08 +00:00
|
|
|
return [
|
|
|
|
'linter_page' => $this->pageId,
|
2016-11-22 09:03:02 +00:00
|
|
|
'linter_cat' => ( new CategoryManager() )->getCategoryId( $error->category ),
|
2016-10-29 01:06:08 +00:00
|
|
|
'linter_params' => FormatJson::encode( $error->params, false, FormatJson::ALL_OK ),
|
|
|
|
];
|
2016-10-13 08:14:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save the specified lint errors in the
|
|
|
|
* database
|
|
|
|
*
|
|
|
|
* @param LintError[] $errors
|
|
|
|
* @return array [ 'deleted' => int|bool, 'added' => int ]
|
|
|
|
*/
|
|
|
|
public function setForPage( $errors ) {
|
2016-10-29 01:06:08 +00:00
|
|
|
$previous = $this->getForPage();
|
2016-10-13 08:14:18 +00:00
|
|
|
$dbw = wfGetDB( DB_MASTER );
|
|
|
|
if ( !$previous && !$errors ) {
|
|
|
|
return [ 'deleted' => 0, 'added' => 0 ];
|
|
|
|
} elseif ( !$previous && $errors ) {
|
|
|
|
$toInsert = $errors;
|
|
|
|
$toDelete = [];
|
|
|
|
} elseif ( $previous && !$errors ) {
|
|
|
|
$dbw->delete(
|
|
|
|
'linter',
|
|
|
|
[ 'linter_page' => $this->pageId ],
|
|
|
|
__METHOD__
|
|
|
|
);
|
|
|
|
return [ 'deleted' => true, 'added' => 0 ];
|
|
|
|
} else {
|
|
|
|
$toInsert = [];
|
|
|
|
$toDelete = $previous;
|
|
|
|
// Diff previous and errors
|
|
|
|
foreach ( $errors as $error ) {
|
|
|
|
$uniqueId = $error->id();
|
|
|
|
if ( isset( $previous[$uniqueId] ) ) {
|
|
|
|
unset( $toDelete[$uniqueId] );
|
|
|
|
} else {
|
|
|
|
$toInsert[] = $error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $toDelete ) {
|
|
|
|
$ids = [];
|
|
|
|
foreach ( $toDelete as $lintError ) {
|
|
|
|
if ( $lintError->lintId ) {
|
|
|
|
$ids[] = $lintError->lintId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$dbw->delete(
|
|
|
|
'linter',
|
|
|
|
[ 'linter_id' => $ids ],
|
|
|
|
__METHOD__
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $toInsert ) {
|
|
|
|
$dbw->insert(
|
|
|
|
'linter',
|
|
|
|
array_map( [ $this, 'serializeError' ], $toInsert ),
|
|
|
|
__METHOD__
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return [
|
|
|
|
'deleted' => count( $toDelete ),
|
|
|
|
'added' => count( $toInsert ),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|