123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395 |
- <?php
- /**
- * 七牛云存储 适配器类
- */
- namespace App\Services\FileSystem;
- use Illuminate\Contracts\Filesystem\FileNotFoundException;
- use League\Flysystem\Adapter\AbstractAdapter;
- use League\Flysystem\Config;
- use Qiniu\Auth;
- use Qiniu\Cdn\CdnManager;
- use Qiniu\Storage\BucketManager;
- use Qiniu\Storage\UploadManager;
- use Symfony\Component\HttpFoundation\File\Exception\UploadException;
- class QiniuAdapter extends AbstractAdapter
- {
- private $accessKey;
- private $accessSecret;
- // images.learnku.net
- protected $uploadManager;
- protected $bucketManager;
- protected $cdnManager;
- private $bucketName;
- private $domainName;
- private $token;
- public function __construct($qiniu='qiniu', $prefix = '')
- {
- $this->accessKey = \config('filesystems.disks.'. $qiniu .'.access_key');
- $this->accessSecret = \config('filesystems.disks.'. $qiniu .'.secret_key');
- // 上传文件句柄
- $this->uploadManager = new UploadManager();
- $this->bucketName = \config('filesystems.disks.'. $qiniu .'.bucket');
- $this->domainName = \config('filesystems.disks.'. $qiniu .'.domain');
- $auth = new \Qiniu\Auth($this->accessKey, $this->accessSecret);
- // 管理文件句柄
- $this->bucketManager = new BucketManager($auth);
- $this->cdnManager = new CdnManager($auth);
- $this->token = $auth->uploadToken($this->bucketName);
- $this->setPathPrefix($prefix);
- }
- /**
- * 写一个新文件。
- * Write a new file.
- *
- * @param string $path
- * @param string $contents
- * @param Config $config Config object
- *
- * @return array|false false on failure file meta data on success
- * @throws \Exception
- */
- public function write($path, $contents, Config $config)
- {
- return $this->upload($path, $contents);
- }
- /**
- * 使用流写一个新文件。
- * Write a new file using a stream.
- *
- * @param string $path
- * @param resource $resource
- * @param Config $config Config object
- *
- * @return array|false false on failure file meta data on success
- * @throws \Exception
- */
- public function writeStream($path, $resource, Config $config)
- {
- return $this->upload($path, $resource, true);
- }
- /**
- * 更新文件。
- * Update a file.
- *
- * @param string $path
- * @param string $contents
- * @param Config $config Config object
- *
- * @return array|false false on failure file meta data on success
- * @throws \Exception
- */
- public function update($path, $contents, Config $config)
- {
- // 先删除
- $error = $this->bucketManager->delete($this->bucketName, $path);
- if ($error == null) {
- $urls = array(
- assert_images($path)
- );
- // 再上传
- $result = $this->upload($path, $contents);
- // 后刷新
- $this->cdnManager->refreshUrls($urls);
- return $result;
- }
- }
- /**
- * 使用流更新文件。
- * Update a file using a stream.
- *
- * @param string $path
- * @param resource $resource
- * @param Config $config Config object
- *
- * @return array|false false on failure file meta data on success
- * @throws \Exception
- */
- public function updateStream($path, $resource, Config $config)
- {
- return $this->upload($path, $resource, true);
- }
- /**
- * 重命名文件。
- * Rename a file.
- *
- * @param string $path
- * @param string $newpath
- *
- * @return bool
- */
- public function rename($path, $newpath)
- {
- $path = $this->addPrefix($path);
- $newpath = $this->addPrefix($newpath);
- $error = $this->bucketManager->rename($this->bucketName, $path, $newpath);
- return $error == null ? true : false;
- }
- /**
- * 复制文件。
- * Copy a file.
- *
- * @param string $path
- * @param string $newpath
- *
- * @return bool
- */
- public function copy($path, $newpath)
- {
- $path = $this->addPrefix($path);
- $newpath = $this->addPrefix($newpath);
- $error = $this->bucketManager->copy($this->bucketName, $path, $this->bucketName, $newpath);
- return $error == null ? true : false;
- }
- /**
- * 删除文件。
- * Delete a file.
- *
- * @param string $path
- *
- * @return bool
- */
- public function delete($path)
- {
- $this->addPrefix($path);
- $error = $this->bucketManager->delete($this->bucketName, $path);
- return $error == null ? true : false;
- }
- /**
- * 删除目录。
- * Delete a directory.
- *
- * @param string $dirname
- *
- * @return void
- */
- public function deleteDir($dirname)
- {
- throw new \BadFunctionCallException('暂不支持该操作');
- }
- /**
- * 创建一个目录。
- * Create a directory.
- *
- * @param string $dirname directory name
- * @param Config $config
- *
- * @return void
- */
- public function createDir($dirname, Config $config)
- {
- throw new \BadFunctionCallException('暂不支持该操作');
- }
- /**
- * 刷新预取
- * @param $urls
- */
- public function refresh($urls)
- {
- $this->cdnManager->refreshUrls($urls);
- }
- /**
- * 设置文件的可见性。
- * Set the visibility for a file.
- *
- * @param string $path
- * @param string $visibility
- *
- * @return void file meta data
- */
- public function setVisibility($path, $visibility)
- {
- throw new \BadFunctionCallException('暂不支持该操作');
- }
- /**
- * 检查文件是否存在。
- * Check whether a file exists.
- *
- * @param string $path
- *
- * @return array|bool|null
- */
- public function has($path)
- {
- $path = $this->addPrefix($path);
- $stat = $this->bucketManager->stat($this->bucketName, $path);
- if ($stat[0] == null) {
- return false;
- } else {
- return true;
- }
- }
- /**
- * 读一个文件。
- * Read a file.
- *
- * @param string $path
- *
- * @return array|false
- * @throws FileNotFoundException
- */
- public function read($path)
- {
- $path = $this->addPrefix($path);
- list($fileInfo, $error) = $this->bucketManager->stat($this->bucketName, $path);
- if ($fileInfo) {
- return $fileInfo;
- } else {
- throw new FileNotFoundException('对应文件不存在');
- }
- }
- /**
- * 将文件作为流读取。
- * Read a file as a stream.
- *
- * @param string $path
- *
- * @return void
- */
- public function readStream($path)
- {
- throw new \BadFunctionCallException('暂不支持该操作');
- }
- /**
- * 列出目录的内容。
- * List contents of a directory.
- *
- * @param string $directory
- * @param bool $recursive
- *
- * @return array
- */
- public function listContents($directory = '', $recursive = '')
- {
- list($ret, $err) = $this->bucketManager->listFiles($this->bucketName, $recursive);
- return $ret;
- // return $this->bucketManager->listFiles($this->bucketName, $recursive);
- }
- /**
- * 获取文件或目录的所有元数据。
- * Get all the meta data of a file or directory.
- *
- * @param string $path
- *
- * @return array|false
- * @throws FileNotFoundException
- */
- public function getMetadata($path)
- {
- return $this->read($path);
- }
- /**
- * 获取文件的大小。
- * Get the size of a file.
- *
- * @param string $path
- *
- * @return array|false
- * @throws FileNotFoundException
- */
- public function getSize($path)
- {
- $fileInfo = $this->read($path);
- return $fileInfo['fsize'];
- }
- /**
- * 获取文件的mimetype。
- * Get the mimetype of a file.
- *
- * @param string $path
- *
- * @return array|false
- * @throws FileNotFoundException
- */
- public function getMimetype($path)
- {
- $fileInfo = $this->read($path);
- return $fileInfo['fileType'];// TODO: Implement getMimetype() method.
- }
- /**
- * 获取文件的上次修改时间作为时间戳。
- * Get the last modified time of a file as a timestamp.
- *
- * @param string $path
- *
- * @return array|false
- * @throws FileNotFoundException
- */
- public function getTimestamp($path)
- {
- $fileInfo = $this->read($path);
- return $fileInfo['putTime'];
- }
- /**
- * 获取文件的可见性。
- * Get the visibility of a file.
- *
- * @param string $path
- *
- * @return void
- */
- public function getVisibility($path)
- {
- throw new \BadFunctionCallException('暂不支持该操作');
- }
- /**
- * @param string $path
- * @param $contents
- * @param bool $stream
- * @return mixed
- * @throws \Exception
- */
- protected function upload(string $path, $contents, $stream = false)
- {
- $path = $this->addPrefix($path);
- try {
- if ($stream) {
- $response = $this->uploadManager->put($this->token, $path, $contents);
- } else {
- $response = $this->uploadManager->putFile($this->token, $path, $contents);
- }
- } catch (\Exception $ex) {
- throw $ex;
- }
- list($uploadResult, $error) = $response;
- if ($uploadResult) {
- return $uploadResult;
- } else {
- throw new UploadException('上传文件到七牛失败:' . $error->message());
- }
- }
- protected function addPrefix($path)
- {
- return $this->applyPathPrefix($path);
- // return ltrim($path, '\\/');
- }
- }
|