diff --git a/src/Qiniu/Config.php b/src/Qiniu/Config.php index 659443ef..ca84da49 100644 --- a/src/Qiniu/Config.php +++ b/src/Qiniu/Config.php @@ -26,14 +26,21 @@ final class Config public $useCdnDomains; // Zone Cache private $regionCache; + // Timeout + public $options = array( + 'timeout' => 60 + ); // 构造函数 - public function __construct(Region $z = null) + public function __construct(Region $z = null, $options = array()) { $this->zone = $z; $this->useHTTPS = false; $this->useCdnDomains = false; $this->regionCache = array(); + if (!empty($options)) { + $this->options = array_merge($this->options, $options); + } } public function getUpHost($accessKey, $bucket) diff --git a/src/Qiniu/Http/Client.php b/src/Qiniu/Http/Client.php index 0fe03cee..46a453ab 100644 --- a/src/Qiniu/Http/Client.php +++ b/src/Qiniu/Http/Client.php @@ -7,27 +7,27 @@ final class Client { - public static function get($url, array $headers = array()) + public static function get($url, array $headers = array(), array $options = array()) { - $request = new Request('GET', $url, $headers); + $request = new Request('GET', $url, $headers, $options); return self::sendRequest($request); } - public static function delete($url, array $headers = array()) + public static function delete($url, array $headers = array(), array $options = array()) { - $request = new Request('DELETE', $url, $headers); + $request = new Request('DELETE', $url, $headers, $options); return self::sendRequest($request); } - public static function post($url, $body, array $headers = array()) + public static function post($url, $body, array $headers = array(), array $options = array()) { - $request = new Request('POST', $url, $headers, $body); + $request = new Request('POST', $url, $headers, $body, $options); return self::sendRequest($request); } - public static function PUT($url, $body, array $headers = array()) + public static function PUT($url, $body, array $headers = array(), array $options = array()) { - $request = new Request('PUT', $url, $headers, $body); + $request = new Request('PUT', $url, $headers, $body, $options); return self::sendRequest($request); } @@ -38,7 +38,8 @@ public static function multipartPost( $fileName, $fileBody, $mimeType = null, - array $headers = array() + array $headers = array(), + array $options = array() ) { $data = array(); $mimeBoundary = md5(microtime()); @@ -65,7 +66,7 @@ public static function multipartPost( // var_dump($data);exit; $contentType = 'multipart/form-data; boundary=' . $mimeBoundary; $headers['Content-Type'] = $contentType; - $request = new Request('POST', $url, $headers, $body); + $request = new Request('POST', $url, $headers, $body, $options); return self::sendRequest($request); } @@ -97,6 +98,7 @@ public static function sendRequest($request) CURLOPT_NOBODY => false, CURLOPT_CUSTOMREQUEST => $request->method, CURLOPT_URL => $request->url, + CURLOPT_TIMEOUT => $request->options['timeout'], ); // Handle open_basedir & safe mode if (!ini_get('safe_mode') && !ini_get('open_basedir')) { diff --git a/src/Qiniu/Http/Request.php b/src/Qiniu/Http/Request.php index 43b0bfdb..a5b9282f 100644 --- a/src/Qiniu/Http/Request.php +++ b/src/Qiniu/Http/Request.php @@ -8,11 +8,18 @@ final class Request public $body; public $method; - public function __construct($method, $url, array $headers = array(), $body = null) + public $options = array( + 'timeout' => 60 + ); + + public function __construct($method, $url, array $headers = array(), $body = null, $options = array()) { $this->method = strtoupper($method); $this->url = $url; $this->headers = $headers; $this->body = $body; + if (!empty($options)) { + $this->options = array_merge($this->options, $options); + } } } diff --git a/src/Qiniu/Storage/FormUploader.php b/src/Qiniu/Storage/FormUploader.php index 1267004e..2bf91a83 100644 --- a/src/Qiniu/Storage/FormUploader.php +++ b/src/Qiniu/Storage/FormUploader.php @@ -58,7 +58,7 @@ public static function put( $upHost = $config->getUpHost($accessKey, $bucket); - $response = Client::multipartPost($upHost, $fields, 'file', $fname, $data, $mime); + $response = Client::multipartPost($upHost, $fields, 'file', $fname, $data, $mime, $config->options); if (!$response->ok()) { return array(null, new Error($upHost, $response)); } @@ -114,7 +114,7 @@ public static function putFile( $upHost = $config->getUpHost($accessKey, $bucket); - $response = Client::post($upHost, $fields, $headers); + $response = Client::post($upHost, $fields, $headers, $config->options); if (!$response->ok()) { return array(null, new Error($upHost, $response)); } diff --git a/tests/Qiniu/Tests/FormUpTest.php b/tests/Qiniu/Tests/FormUpTest.php index 4813eed9..b7e6dcc3 100755 --- a/tests/Qiniu/Tests/FormUpTest.php +++ b/tests/Qiniu/Tests/FormUpTest.php @@ -21,6 +21,14 @@ protected function setUp() $this->cfg = new Config(); } + public function testConfig() + { + $this->assertSame($this->cfg->options, array('timeout' => 60)); + + $cfg = new Config(null, array('timeout' => 600)); + $this->assertSame($cfg->options, array('timeout' => 600)); + } + public function testData() { $token = $this->auth->uploadToken($this->bucketName);