MediaWiki  1.27.2
MWRestrictions Class Reference

A class to check request restrictions expressed as a JSON object. More...

Public Member Functions

 __toString ()
 
 check (WebRequest $request)
 Test against the passed WebRequest. More...
 
 checkIP ($ip)
 Test an IP address. More...
 
 toArray ()
 Return the restrictions as an array. More...
 
 toJson ($pretty=false)
 Return the restrictions as a JSON string. More...
 

Static Public Member Functions

static newDefault ()
 
static newFromArray (array $restrictions)
 
static newFromJson ($json)
 

Protected Member Functions

 __construct (array $restrictions=null)
 

Private Member Functions

 loadFromArray (array $restrictions)
 

Private Attributes

 $ipAddresses = [ '0.0.0.0/0', '::/0' ]
 

Detailed Description

A class to check request restrictions expressed as a JSON object.

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 A class to check request restrictions expressed as a JSON object

Definition at line 24 of file MWRestrictions.php.

Constructor & Destructor Documentation

MWRestrictions::__construct ( array  $restrictions = null)
protected
Parameters
array$restrictions

Definition at line 31 of file MWRestrictions.php.

References loadFromArray().

Member Function Documentation

MWRestrictions::__toString ( )

Definition at line 112 of file MWRestrictions.php.

References toJson().

MWRestrictions::check ( WebRequest  $request)

Test against the passed WebRequest.

Parameters
WebRequest$request
Returns
Status

Definition at line 121 of file MWRestrictions.php.

References $status, checkIP(), WebRequest\getIP(), and Status\newGood().

MWRestrictions::checkIP (   $ip)

Test an IP address.

Parameters
string$ip
Returns
bool

Definition at line 135 of file MWRestrictions.php.

References as, and IP\isInRange().

Referenced by check().

MWRestrictions::loadFromArray ( array  $restrictions)
private

Definition at line 64 of file MWRestrictions.php.

References $keys, as, and IP\isIPAddress().

Referenced by __construct().

static MWRestrictions::newDefault ( )
static
static MWRestrictions::newFromArray ( array  $restrictions)
static
Parameters
array$restrictions
Returns
MWRestrictions

Definition at line 48 of file MWRestrictions.php.

Referenced by MWRestrictionsTest\setUpBeforeClass(), and MWRestrictionsTest\testArray().

static MWRestrictions::newFromJson (   $json)
static
MWRestrictions::toArray ( )

Return the restrictions as an array.

Returns
array

Definition at line 97 of file MWRestrictions.php.

References $ipAddresses.

Referenced by toJson().

MWRestrictions::toJson (   $pretty = false)

Return the restrictions as a JSON string.

Parameters
bool | string$prettyPretty-print the JSON output, see FormatJson::encode
Returns
string

Definition at line 108 of file MWRestrictions.php.

References FormatJson\ALL_OK, FormatJson\encode(), and toArray().

Referenced by __toString().

Member Data Documentation

MWRestrictions::$ipAddresses = [ '0.0.0.0/0', '::/0' ]
private

Definition at line 26 of file MWRestrictions.php.

Referenced by toArray().


The documentation for this class was generated from the following file: