| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- namespace app\common\library\storage\engine;
- use OSS\OssClient;
- use OSS\Core\OssException;
- /**
- * 阿里云存储引擎 (OSS)
- * Class Qiniu
- * @package app\common\library\storage\engine
- */
- class Aliyun extends Server
- {
- private $config;
- /**
- * 构造方法
- * Aliyun constructor.
- * @param $config
- */
- public function __construct($config)
- {
- parent::__construct();
- $this->config = $config;
- }
- /**
- * 执行上传
- * @return bool|mixed
- */
- public function upload()
- {
- try {
- $ossClient = new OssClient(
- $this->config['access_key_id'],
- $this->config['access_key_secret'],
- $this->config['domain'],
- true
- );
- $result = $ossClient->uploadFile(
- $this->config['bucket'],
- $this->fileName,
- $this->getRealPath()
- );
- } catch (OssException $e) {
- $this->error = $e->getMessage();
- return false;
- }
- return true;
- }
- /**
- * 删除文件
- * @param $fileName
- * @return bool|mixed
- */
- public function delete($fileName)
- {
- try {
- $ossClient = new OssClient(
- $this->config['access_key_id'],
- $this->config['access_key_secret'],
- $this->config['domain'],
- true
- );
- $ossClient->deleteObject($this->config['bucket'], $fileName);
- } catch (OssException $e) {
- $this->error = $e->getMessage();
- return false;
- }
- return true;
- }
- /**
- * 返回文件路径
- * @return mixed
- */
- public function getFileName()
- {
- return $this->fileName;
- }
- }
|