mirror of
https://github.com/ufilesdk-dev/ufile-phpsdk.git
synced 2025-04-06 04:00:05 +08:00
新增append接口;对上传key去掉转义;
新增append接口;对上传key去掉转义;
This commit is contained in:
parent
468120b911
commit
48a18a58ef
@ -125,11 +125,17 @@ function UCloud_Client_Do($req)
|
|||||||
CURLOPT_HEADER => true,
|
CURLOPT_HEADER => true,
|
||||||
CURLOPT_NOBODY => false,
|
CURLOPT_NOBODY => false,
|
||||||
CURLOPT_CUSTOMREQUEST => $req->METHOD,
|
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_TIMEOUT => $req->Timeout,
|
||||||
CURLOPT_CONNECTTIMEOUT => $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;
|
$httpHeader = $req->Header;
|
||||||
if (!empty($httpHeader))
|
if (!empty($httpHeader))
|
||||||
{
|
{
|
||||||
|
@ -272,6 +272,39 @@ function UCloud_Delete($bucket, $key)
|
|||||||
return UCloud_Client_Call($client, $req);
|
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------------------------------
|
//------------------------------生成公有文件Url------------------------------
|
||||||
// @results: $url
|
// @results: $url
|
||||||
function UCloud_MakePublicUrl($bucket, $key)
|
function UCloud_MakePublicUrl($bucket, $key)
|
||||||
|
@ -16,6 +16,7 @@ abstract class ActionType
|
|||||||
const DELETE = 6;
|
const DELETE = 6;
|
||||||
const UPLOADHIT = 7;
|
const UPLOADHIT = 7;
|
||||||
const GETFILE = 8;
|
const GETFILE = 8;
|
||||||
|
const APPENDFILE = 9;
|
||||||
}
|
}
|
||||||
|
|
||||||
class UCloud_Error
|
class UCloud_Error
|
||||||
|
Loading…
x
Reference in New Issue
Block a user