You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
think-library/src/service/baidu/BosService.php

98 lines
2.7 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
// +----------------------------------------------------------------------
// | ThinkLibrary 6.0 for ThinkPhP 6.0
// +----------------------------------------------------------------------
// | 版权所有 2017~2020 [ https://www.dtapp.net ]
// +----------------------------------------------------------------------
// | 官方网站: https://gitee.com/liguangchun/ThinkLibrary
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | gitee 仓库地址 https://gitee.com/liguangchun/ThinkLibrary
// | github 仓库地址 https://github.com/GC0202/ThinkLibrary
// | Packagist 地址 https://packagist.org/packages/liguangchun/think-library
// +----------------------------------------------------------------------
namespace DtApp\ThinkLibrary\service\baidu;
use BaiduBce\Services\Bos\BosClient;
use DtApp\ThinkLibrary\Service;
use Exception;
/**
* 百度云对象存储
* https://cloud.baidu.com/product/bos.html
* Class BosService
* @package DtApp\ThinkLibrary\service\baidu
*/
class BosService extends Service
{
/**
* @var
*/
private $accessKeyId, $secretAccessKey, $endpoint, $bucket;
/**
* @param string $accessKeyId
* @return $this
*/
public function accessKeyId(string $accessKeyId)
{
$this->accessKeyId = $accessKeyId;
return $this;
}
/**
* @param string $secretAccessKey
* @return $this
*/
public function secretAccessKey(string $secretAccessKey)
{
$this->secretAccessKey = $secretAccessKey;
return $this;
}
/**
* @param string $endpoint
* @return $this
*/
public function endpoint(string $endpoint)
{
$this->endpoint = $endpoint;
return $this;
}
/**
* @param string $bucket
* @return $this
*/
public function bucket(string $bucket)
{
$this->bucket = $bucket;
return $this;
}
/**
* @param string $object
* @param string $filePath
* @return bool
* @throws Exception
*/
public function upload(string $object, string $filePath): bool
{
// 设置BosClient的Access Key ID、Secret Access Key和ENDPOINT
$BOS_TEST_CONFIG = array(
'credentials' => array(
'accessKeyId' => $this->accessKeyId,
'secretAccessKey' => $this->secretAccessKey,
),
'endpoint' => $this->endpoint,
);
$client = new BosClient($BOS_TEST_CONFIG);
// 从文件中直接上传Object
$client->putObjectFromFile($this->bucket, $object, $filePath);
return true;
}
}