MediaWiki  1.23.15
Http Class Reference

Various HTTP related functions. More...

Static Public Member Functions

static get ( $url, $timeout='default', $options=array())
 Simple wrapper for Http::request( 'GET' ) More...
 
static isLocalURL ( $url)
 Check if the URL can be served by localhost. More...
 
static isValidURI ( $uri)
 Checks that the given URI is a valid one. More...
 
static post ( $url, $options=array())
 Simple wrapper for Http::request( 'POST' ) More...
 
static request ( $method, $url, $options=array())
 Perform an HTTP request. More...
 
static userAgent ()
 A standard user-agent we can use for external requests. More...
 

Static Public Attributes

static $httpEngine = false
 

Detailed Description

Various HTTP related functions.

Definition at line 34 of file HttpFunctions.php.

Member Function Documentation

◆ get()

◆ isLocalURL()

static Http::isLocalURL (   $url)
static

Check if the URL can be served by localhost.

Parameters
string$urlfull url to check
Returns
Boolean

Definition at line 121 of file HttpFunctions.php.

References $matches, $wgCommandLineMode, array(), and global.

Referenced by MWHttpRequest\proxySetup().

◆ isValidURI()

static Http::isValidURI (   $uri)
static

Checks that the given URI is a valid one.

Hardcoding the protocols, because we only want protocols that both cURL and php support.

file:// should not be allowed here for security purpose (r67684)

Todo:
FIXME this is wildly inaccurate and fails to actually check most stuff
Parameters
$uriMixed: URI to check for validity
Returns
Boolean

Definition at line 177 of file HttpFunctions.php.

Referenced by MWHttpRequest\__construct(), PhpHttpRequest\execute(), UploadFromUrl\fetchFile(), SideBarTest\initMessagesHref(), UploadFromUrl\isValidRequest(), and HttpTest\testIsValidUri().

◆ post()

static Http::post (   $url,
  $options = array() 
)
static

Simple wrapper for Http::request( 'POST' )

See also
Http::request()
Parameters
$url
$optionsarray
Returns
string

Definition at line 111 of file HttpFunctions.php.

References $options, and request().

◆ request()

static Http::request (   $method,
  $url,
  $options = array() 
)
static

Perform an HTTP request.

Parameters
string$methodHTTP method. Usually GET/POST
string$urlfull URL to act on. If protocol-relative, will be expanded to an http:// URL
array$optionsoptions to pass to MWHttpRequest object. Possible keys for the array:
  • timeout Timeout length in seconds
  • connectTimeout Timeout for connection, in seconds (curl only)
  • postData An array of key-value pairs or a url-encoded form data
  • proxy The proxy to use. Otherwise it will use $wgHTTPProxy (if set)
  • noProxy Don't use any proxy at all. Takes precedence over proxy value(s).
  • sslVerifyHost Verify hostname against certificate
  • sslVerifyCert Verify SSL certificate
  • caInfo Provide CA information
  • maxRedirects Maximum number of redirects to follow (defaults to 5)
  • followRedirects Whether to follow redirects (defaults to false). Note: this should only be used when the target URL is trusted, to avoid attacks on intranet services accessible by HTTP.
  • userAgent A user agent, if you want to override the default MediaWiki/$wgVersion
Returns
Mixed: (bool)false on failure or a string on success

Definition at line 61 of file HttpFunctions.php.

References $options, array(), MWHttpRequest\factory(), wfDebug(), wfProfileIn(), and wfProfileOut().

Referenced by FileBackendTest\doTestGetFileHttpUrl(), get(), ImportStreamSource\newFromURL(), and post().

◆ userAgent()

static Http::userAgent ( )
static

A standard user-agent we can use for external requests.

Returns
String

Definition at line 160 of file HttpFunctions.php.

References global.

Referenced by MWHttpRequest\execute(), ForeignAPIRepo\getUserAgent(), and SquidPurgeClient\queuePurge().

Member Data Documentation

◆ $httpEngine

Http::$httpEngine = false
static

Definition at line 35 of file HttpFunctions.php.

Referenced by MWHttpRequestTester\factory(), and MWHttpRequest\factory().


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