instance)) { $this->instance = new Client([ 'region' => $this->config['region'], 'schema' => 'https', 'credentials' => [ 'secretId' => $this->config['secretId'], 'secretKey' => $this->config['secretKey'], ], ]); } return $this->instance; } /** * @desc: 方法描述 * * @author Tinywan(ShaoBo Wan) */ public function uploadFile(array $options = []): array { try { $result = []; foreach ($this->files as $key => $file) { $uniqueId = hash_file($this->algo, $file->getPathname()); $saveName = $uniqueId.'.'.$file->getUploadExtension(); $object = $this->config['dirname'].$this->dirSeparator.$saveName; $temp = [ 'key' => $key, 'origin_name' => $file->getUploadName(), 'save_name' => $saveName, 'save_path' => $object, 'url' => $this->config['domain'].$this->dirSeparator.$object, 'unique_id' => $uniqueId, 'size' => $file->getSize(), 'mime_type' => $file->getUploadMineType(), 'extension' => $file->getUploadExtension(), ]; $this->getInstance()->putObject([ 'Bucket' => $this->config['bucket'], 'Key' => $object, 'Body' => fopen($file->getPathname(), 'rb'), ]); array_push($result, $temp); } } catch (Throwable|CosException $exception) { throw new StorageException($exception->getMessage()); } return $result; } /** * @desc: 上传服务端文件 * * @author Tinywan(ShaoBo Wan) */ public function uploadServerFile(string $file_path): array { $file = new \SplFileInfo($file_path); if (!$file->isFile()) { throw new StorageException('不是一个有效的文件'); } $uniqueId = hash_file($this->algo, $file->getPathname()); $object = $this->config['dirname'].$this->dirSeparator.$uniqueId.'.'.$file->getExtension(); $result = [ 'origin_name' => $file->getRealPath(), 'save_path' => $object, 'url' => $this->config['domain'].$this->dirSeparator.$object, 'unique_id' => $uniqueId, 'size' => $file->getSize(), 'extension' => $file->getExtension(), ]; $this->getInstance()->putObject([ 'Bucket' => $this->config['bucket'], 'Key' => $object, 'Body' => fopen($file->getPathname(), 'rb'), ]); return $result; } /** * @desc: 上传Base64 * * @return array * * @author Tinywan(ShaoBo Wan) */ public function uploadBase64(string $base64, string $extension = 'png') { $base64 = explode(',', $base64); $uniqueId = date('YmdHis').uniqid(); $object = $this->config['dirname'].$this->dirSeparator.$uniqueId.'.'.$extension; $this->getInstance()->putObject([ 'Bucket' => $this->config['bucket'], 'Key' => $object, 'Body' => base64_decode($base64[1]), ]); $imgLen = strlen($base64['1']); $fileSize = $imgLen - ($imgLen / 8) * 2; return [ 'save_path' => $object, 'url' => $this->config['domain'].$this->dirSeparator.$object, 'unique_id' => $uniqueId, 'size' => $fileSize, 'extension' => $extension, ]; } }