for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Upyun\Api;
use Upyun\Signature;
use Upyun\Util;
use GuzzleHttp\Client;
class Form extends Rest
{
public function upload($path, $stream, $params)
$params['save-key'] = $path;
$params['service'] = $this->config->serviceName;
if (!isset($params['expiration'])) {
$params['expiration'] = time() + 30 * 60 * 60; // 30 分钟
}
$policy = Util::base64Json($params);
$method = 'POST';
$signature = Signature::getBodySignature($this->config, $method, '/' . $params['service'], null, $policy);
$client = new Client([
'timeout' => $this->config->timeout,
]);
$response = $client->request($method, $this->endpoint, array(
'multipart' => array(
array(
'name' => 'policy',
'contents' => $policy,
),
'name' => 'authorization',
'contents' => $signature,
'name' => 'file',
'contents' => $stream,
)
));
return $response->getStatusCode() === 200;