2009-01-23 19:23:19 +00:00
|
|
|
<?php
|
|
|
|
|
2017-07-13 08:19:09 +00:00
|
|
|
use Wikimedia\Rdbms\IDatabase;
|
2016-12-04 15:13:16 +00:00
|
|
|
|
2011-11-16 05:34:24 +00:00
|
|
|
abstract class AbuseFilterView extends ContextSource {
|
2013-10-15 13:22:05 +00:00
|
|
|
public $mFilter, $mHistoryID, $mSubmit;
|
|
|
|
|
2016-12-04 15:13:16 +00:00
|
|
|
/**
|
|
|
|
* @var \MediaWiki\Linker\LinkRenderer
|
|
|
|
*/
|
|
|
|
protected $linkRenderer;
|
|
|
|
|
2011-11-16 05:34:24 +00:00
|
|
|
/**
|
2017-10-06 18:52:31 +00:00
|
|
|
* @param SpecialAbuseFilter $page
|
|
|
|
* @param array $params
|
2011-11-16 05:34:24 +00:00
|
|
|
*/
|
2009-01-23 19:23:19 +00:00
|
|
|
function __construct( $page, $params ) {
|
|
|
|
$this->mPage = $page;
|
|
|
|
$this->mParams = $params;
|
2011-11-16 05:34:24 +00:00
|
|
|
$this->setContext( $this->mPage->getContext() );
|
2017-08-20 12:27:02 +00:00
|
|
|
$this->linkRenderer = $page->getLinkRenderer();
|
2009-01-23 19:23:19 +00:00
|
|
|
}
|
|
|
|
|
2011-02-10 17:32:57 +00:00
|
|
|
/**
|
|
|
|
* @param string $subpage
|
|
|
|
* @return Title
|
|
|
|
*/
|
2009-10-07 13:57:06 +00:00
|
|
|
function getTitle( $subpage = '' ) {
|
2013-12-27 06:36:34 +00:00
|
|
|
return $this->mPage->getPageTitle( $subpage );
|
2009-01-23 19:23:19 +00:00
|
|
|
}
|
2009-10-07 13:57:06 +00:00
|
|
|
|
2009-01-23 19:23:19 +00:00
|
|
|
abstract function show();
|
|
|
|
|
2011-08-24 22:11:52 +00:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
2013-07-09 13:35:06 +00:00
|
|
|
public function canEdit() {
|
2017-04-07 19:23:11 +00:00
|
|
|
return (
|
|
|
|
!$this->getUser()->isBlocked() &&
|
|
|
|
$this->getUser()->isAllowed( 'abusefilter-modify' )
|
|
|
|
);
|
2009-01-23 19:23:19 +00:00
|
|
|
}
|
2009-07-03 14:17:05 +00:00
|
|
|
|
2011-08-24 22:11:52 +00:00
|
|
|
/**
|
|
|
|
* @return bool
|
2012-09-12 15:31:24 +00:00
|
|
|
*/
|
2013-07-09 13:35:06 +00:00
|
|
|
public function canEditGlobal() {
|
|
|
|
return $this->getUser()->isAllowed( 'abusefilter-modify-global' );
|
|
|
|
}
|
2012-09-12 15:31:24 +00:00
|
|
|
|
2013-07-09 13:35:06 +00:00
|
|
|
/**
|
|
|
|
* Whether the user can edit the given filter.
|
|
|
|
*
|
|
|
|
* @param object $row Filter row
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function canEditFilter( $row ) {
|
|
|
|
return (
|
|
|
|
$this->canEdit() &&
|
|
|
|
!( isset( $row->af_global ) && $row->af_global == 1 && !$this->canEditGlobal() )
|
|
|
|
);
|
2012-09-12 15:31:24 +00:00
|
|
|
}
|
|
|
|
|
2017-07-13 08:19:09 +00:00
|
|
|
/**
|
|
|
|
* @param IDatabase $db
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function buildTestConditions( IDatabase $db ) {
|
|
|
|
// If one of these is true, we're abusefilter compatible.
|
|
|
|
return $db->makeList( [
|
|
|
|
'rc_source' => [
|
|
|
|
RecentChange::SRC_EDIT,
|
|
|
|
RecentChange::SRC_NEW,
|
|
|
|
],
|
|
|
|
$db->makeList( [
|
|
|
|
'rc_source' => RecentChange::SRC_LOG,
|
|
|
|
$db->makeList( [
|
|
|
|
$db->makeList( [
|
|
|
|
'rc_log_type' => 'move',
|
|
|
|
'rc_log_action' => 'move'
|
|
|
|
], LIST_AND ),
|
|
|
|
$db->makeList( [
|
|
|
|
'rc_log_type' => 'newusers',
|
|
|
|
'rc_log_action' => 'create'
|
|
|
|
], LIST_AND ),
|
2017-08-20 11:48:20 +00:00
|
|
|
$db->makeList( [
|
|
|
|
'rc_log_type' => 'delete',
|
|
|
|
'rc_log_action' => 'delete'
|
|
|
|
], LIST_AND ),
|
|
|
|
// @todo: add upload
|
2017-07-13 08:19:09 +00:00
|
|
|
], LIST_OR ),
|
|
|
|
], LIST_AND ),
|
|
|
|
], LIST_OR );
|
|
|
|
}
|
|
|
|
|
2011-08-24 22:11:52 +00:00
|
|
|
/**
|
2012-01-03 17:29:10 +00:00
|
|
|
* @static
|
2011-08-24 22:11:52 +00:00
|
|
|
* @return bool
|
|
|
|
*/
|
2012-01-03 17:29:10 +00:00
|
|
|
static function canViewPrivate() {
|
2009-07-03 14:17:05 +00:00
|
|
|
global $wgUser;
|
|
|
|
static $canView = null;
|
|
|
|
|
|
|
|
if ( is_null( $canView ) ) {
|
2013-07-09 13:35:06 +00:00
|
|
|
$canView = $wgUser->isAllowedAny( 'abusefilter-modify', 'abusefilter-view-private' );
|
2009-07-03 14:17:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $canView;
|
|
|
|
}
|
2017-07-13 08:19:09 +00:00
|
|
|
|
2009-01-29 22:44:31 +00:00
|
|
|
}
|