截流自动化的商城平台
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.

Driver.php 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <?php
  2. namespace app\common\server\storage;
  3. use think\Exception;
  4. /**
  5. * 存储模块驱动
  6. * Class driver
  7. * @package app\common\library\storage
  8. */
  9. class Driver
  10. {
  11. private $config; // upload 配置
  12. private $engine; // 当前存储引擎类
  13. /**
  14. * 构造方法
  15. * Driver constructor.
  16. * @param $config
  17. * @param null|string $storage 指定存储方式,如不指定则为系统默认
  18. * @throws Exception
  19. */
  20. public function __construct($config, $storage = null)
  21. {
  22. $this->config = $config;
  23. $this->engine = $this->getEngineClass($storage);
  24. }
  25. /**
  26. * 设置上传的文件信息
  27. * @param string $name
  28. * @return mixed
  29. */
  30. public function setUploadFile($name = 'iFile')
  31. {
  32. return $this->engine->setUploadFile($name);
  33. }
  34. /**
  35. * 设置上传的文件信息
  36. * @param string $filePath
  37. * @return mixed
  38. */
  39. public function setUploadFileByReal($filePath)
  40. {
  41. return $this->engine->setUploadFileByReal($filePath);
  42. }
  43. /**
  44. * 执行文件上传
  45. * @param $save_dir (保存路径)
  46. * @return mixed
  47. */
  48. public function upload($save_dir)
  49. {
  50. return $this->engine->upload($save_dir);
  51. }
  52. /**
  53. * Notes: 抓取网络资源
  54. * @param $url
  55. * @param $key
  56. * @author 张无忌(2021/3/2 14:16)
  57. * @return mixed
  58. */
  59. public function fetch($url, $key) {
  60. return $this->engine->fetch($url, $key);
  61. }
  62. /**
  63. * 执行文件删除
  64. * @param $fileName
  65. * @return mixed
  66. */
  67. public function delete($fileName)
  68. {
  69. return $this->engine->delete($fileName);
  70. }
  71. /**
  72. * 获取错误信息
  73. * @return mixed
  74. */
  75. public function getError()
  76. {
  77. return $this->engine->getError();
  78. }
  79. /**
  80. * 获取文件路径
  81. * @return mixed
  82. */
  83. public function getFileName()
  84. {
  85. return $this->engine->getFileName();
  86. }
  87. /**
  88. * 返回文件信息
  89. * @return mixed
  90. */
  91. public function getFileInfo()
  92. {
  93. return $this->engine->getFileInfo();
  94. }
  95. /**
  96. * 获取当前的存储引擎
  97. * @param null|string $storage 指定存储方式,如不指定则为系统默认
  98. * @return mixed
  99. * @throws Exception
  100. */
  101. private function getEngineClass($storage = null)
  102. {
  103. $engineName = is_null($storage) ? $this->config['default'] : $storage;
  104. $classSpace = __NAMESPACE__ . '\\engine\\' . ucfirst($engineName);
  105. if (!class_exists($classSpace)) {
  106. throw new Exception('未找到存储引擎类: ' . $engineName);
  107. }
  108. if($engineName == 'local') {
  109. return new $classSpace();
  110. }
  111. return new $classSpace($this->config['engine'][$engineName]);
  112. }
  113. }