| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- 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;
- }
- }
|