新增append接口;对上传key去掉转义;

新增append接口;对上传key去掉转义;
This commit is contained in:
delexxie 2019-04-10 19:36:21 +08:00 committed by GitHub
parent 468120b911
commit 48a18a58ef
3 changed files with 41 additions and 1 deletions

View File

@ -125,11 +125,17 @@ function UCloud_Client_Do($req)
CURLOPT_HEADER => true,
CURLOPT_NOBODY => false,
CURLOPT_CUSTOMREQUEST => $req->METHOD,
CURLOPT_URL => $url['host'] . "/" . rawurlencode($url['path']) . "?" . $req->EncodedQuery(),
//CURLOPT_URL => $url['host'] . "/" . rawurlencode($url['path']) . "?" . $req->EncodedQuery(),
CURLOPT_TIMEOUT => $req->Timeout,
CURLOPT_CONNECTTIMEOUT => $req->Timeout
);
if($req->EncodedQuery() !== ""){
$options[CURLOPT_URL] = $url['host'] . "/" . $url['path'] . "?" . $req->EncodedQuery();
}else{
$options[CURLOPT_URL] = $url['host'] . "/" . $url['path'];
}
$httpHeader = $req->Header;
if (!empty($httpHeader))
{

View File

@ -272,6 +272,39 @@ function UCloud_Delete($bucket, $key)
return UCloud_Client_Call($client, $req);
}
//------------------------------追加上传------------------------------
function UCloud_AppendFile($bucket, $key, $file, $position)
{
$action_type = ActionType::APPENDFILE;
$err = CheckConfig(ActionType::APPENDFILE);
if ($err != null) {
return array(null, $err);
}
$f = @fopen($file, "r");
if (!$f) return array(null, new UCloud_Error(-1, -1, "open $file error"));
global $UCLOUD_PROXY_SUFFIX;
$host = $bucket . $UCLOUD_PROXY_SUFFIX;
$key = $key . "?append&position=" . $position;
$path = $key;
$content = @fread($f, filesize($file));
list($mimetype, $err) = GetFileMimeType($file);
if ($err) {
fclose($f);
return array("", $err);
}
$req = new HTTP_Request('PUT', array('host'=>$host, 'path'=>$path), $content, $bucket, $key, $action_type);
$req->Header['Expect'] = '';
$req->Header['Content-Type'] = $mimetype;
$client = new UCloud_AuthHttpClient(null, $mimetype);
list($data, $err) = UCloud_Client_Call($client, $req);
fclose($f);
return array($data, $err);
}
//------------------------------生成公有文件Url------------------------------
// @results: $url
function UCloud_MakePublicUrl($bucket, $key)

View File

@ -16,6 +16,7 @@ abstract class ActionType
const DELETE = 6;
const UPLOADHIT = 7;
const GETFILE = 8;
const APPENDFILE = 9;
}
class UCloud_Error