MediaWiki
REL1_22
|
Various HTTP related functions. More...
Static Public Member Functions | |
static | get ($url, $timeout= 'default', $options=array()) |
Simple wrapper for Http::request( 'GET' ) | |
static | isLocalURL ($url) |
Check if the URL can be served by localhost. | |
static | isValidURI ($uri) |
Checks that the given URI is a valid one. | |
static | post ($url, $options=array()) |
Simple wrapper for Http::request( 'POST' ) | |
static | request ($method, $url, $options=array()) |
Perform an HTTP request. | |
static | userAgent () |
A standard user-agent we can use for external requests. | |
Static Public Attributes | |
static | $httpEngine = false |
Various HTTP related functions.
Definition at line 32 of file HttpFunctions.php.
Simple wrapper for Http::request( 'GET' )
$url | |
$timeout | string |
$options | array |
Definition at line 93 of file HttpFunctions.php.
References $options, and request().
Referenced by bench_HTTP_HTTPS\doRequest(), ImportSiteScripts\execute(), ExternalStoreHttp\fetchFromURL(), ImportSiteScripts\fetchScriptList(), File\getDescriptionText(), getFileCommentFromSourceWiki(), getFileUserFromSourceWiki(), FindHooks\getHooksFromOnlineDoc(), and MediaWikiSite\normalizePageName().
static Http::isLocalURL | ( | $ | url | ) | [static] |
Check if the URL can be served by localhost.
string | $url | full url to check |
Definition at line 116 of file HttpFunctions.php.
References $matches, $wgCommandLineMode, array(), and global.
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)
$uri | Mixed: URI to check for validity |
Definition at line 171 of file HttpFunctions.php.
Referenced by PhpHttpRequest\execute(), UploadFromUrl\fetchFile(), UploadFromUrl\isValidRequest(), and HttpTest\testIsValidUri().
static Http::post | ( | $ | url, |
$ | options = array() |
||
) | [static] |
Simple wrapper for Http::request( 'POST' )
$url | |
$options | array |
Definition at line 106 of file HttpFunctions.php.
static Http::request | ( | $ | method, |
$ | url, | ||
$ | options = array() |
||
) | [static] |
Perform an HTTP request.
string | $method | HTTP method. Usually GET/POST |
string | $url | full URL to act on. If protocol-relative, will be expanded to an http:// URL |
array | $options | options to pass to MWHttpRequest object. Possible keys for the array:
|
Definition at line 60 of file HttpFunctions.php.
References $options, MWHttpRequest\factory(), wfDebug(), wfProfileIn(), and wfProfileOut().
static Http::userAgent | ( | ) | [static] |
A standard user-agent we can use for external requests.
Definition at line 154 of file HttpFunctions.php.
References global.
Referenced by ForeignAPIRepo\getUserAgent(), and SquidPurgeClient\queuePurge().
Http::$httpEngine = false [static] |
Definition at line 33 of file HttpFunctions.php.
Referenced by MWHttpRequestTester\factory().