MediaWiki REL1_33
HttpRequestFactory.php
Go to the documentation of this file.
1<?php
21
23use DomainException;
24use Http;
30
35
45 public function create( $url, array $options = [], $caller = __METHOD__ ) {
46 if ( !Http::$httpEngine ) {
47 Http::$httpEngine = 'guzzle';
48 } elseif ( Http::$httpEngine == 'curl' && !function_exists( 'curl_init' ) ) {
49 throw new DomainException( __METHOD__ . ': curl (https://secure.php.net/curl) is not ' .
50 'installed, but Http::$httpEngine is set to "curl"' );
51 }
52
53 if ( !isset( $options['logger'] ) ) {
54 $options['logger'] = LoggerFactory::getInstance( 'http' );
55 }
56
57 switch ( Http::$httpEngine ) {
58 case 'guzzle':
59 return new GuzzleHttpRequest( $url, $options, $caller, Profiler::instance() );
60 case 'curl':
61 return new CurlHttpRequest( $url, $options, $caller, Profiler::instance() );
62 case 'php':
63 if ( !wfIniGetBool( 'allow_url_fopen' ) ) {
64 throw new DomainException( __METHOD__ . ': allow_url_fopen ' .
65 'needs to be enabled for pure PHP http requests to ' .
66 'work. If possible, curl should be used instead. See ' .
67 'https://secure.php.net/curl.'
68 );
69 }
70 return new PhpHttpRequest( $url, $options, $caller, Profiler::instance() );
71 default:
72 throw new DomainException( __METHOD__ . ': The setting of Http::$httpEngine is not valid.' );
73 }
74 }
75
81 public function canMakeRequests() {
82 return function_exists( 'curl_init' ) || wfIniGetBool( 'allow_url_fopen' );
83 }
84
85}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfIniGetBool( $setting)
Safety wrapper around ini_get() for boolean settings.
MWHttpRequest implemented using internal curl compiled into PHP.
MWHttpRequest implemented using the Guzzle library.
Various HTTP related functions.
Definition Http.php:27
static $httpEngine
Definition Http.php:28
This wrapper class will call out to curl (if available) or fallback to regular PHP if necessary for h...
Factory creating MWHttpRequest objects.
create( $url, array $options=[], $caller=__METHOD__)
Generate a new MWHttpRequest object.
canMakeRequests()
Simple function to test if we can make any sort of requests at all, using cURL or fopen()
PSR-3 logger instance factory.
Profiler base class that defines the interface and some trivial functionality.
Definition Profiler.php:33
static instance()
Singleton.
Definition Profiler.php:62
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:1999
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))