Browse Source

添加文件系统工具类,支持将文件上传/下载/删除 到文件服务器

NorthLan 6 years ago
parent
commit
d2c5c72a10

+ 114 - 0
zen-api/src/main/kotlin/com/gxzc/zen/api/util/FileSystemUtil.kt

@@ -0,0 +1,114 @@
+package com.gxzc.zen.api.util
+
+import com.github.tobato.fastdfs.domain.FileInfo
+import com.github.tobato.fastdfs.domain.StorePath
+import com.github.tobato.fastdfs.exception.FdfsServerException
+import com.github.tobato.fastdfs.service.AppendFileStorageClient
+import com.github.tobato.fastdfs.service.FastFileStorageClient
+import com.gxzc.zen.api.sys.model.SysUploadInfo
+import com.gxzc.zen.common.util.FileUtil
+import com.gxzc.zen.common.util.SpringContextHolder
+import com.gxzc.zen.common.util.upload.FdfsFile
+import com.gxzc.zen.rpc.api.sys.RUploadService
+import org.apache.commons.io.FilenameUtils
+import org.slf4j.LoggerFactory
+import java.io.File
+
+/**
+ * FastDFS 工具类 <br>
+ * 后端上传文件到 分布式文件服务器
+ * @author NorthLan
+ * @date 2018/9/1
+ * @url https://noahlan.com
+ */
+object FileSystemUtil {
+    private val logger = LoggerFactory.getLogger(FileSystemUtil::class.java)
+
+    private val appendFileStorageClient: AppendFileStorageClient by lazy { SpringContextHolder.getBean(AppendFileStorageClient::class.java)!! }
+    private val fastFileStorageClient: FastFileStorageClient by lazy { SpringContextHolder.getBean(FastFileStorageClient::class.java)!! }
+    private val rUploadService: RUploadService by lazy { SpringContextHolder.getBean(RUploadService::class.java)!! }
+
+    /**
+     * 上传文件 <br>
+     * 若文件已存在则不会再次上传,且返回新的路径(软链接)
+     * @param path 文件路径
+     * @param groupName 上传到指定组,默认自动分配
+     */
+    fun uploadFile(path: String, groupName: String? = null): StorePath {
+        return uploadFile(File(path), groupName)
+    }
+
+    /**
+     * 上传文件 <br>
+     * 若文件已存在则不会再次上传,且返回新的路径(软链接)
+     * @param path 文件路径
+     * @param groupName 上传到指定组,默认自动分配
+     */
+    fun uploadFile(file: File, groupName: String? = null): StorePath {
+        file.inputStream().use {
+            return appendFileStorageClient.uploadAppenderFile(groupName, it, file.length(), FilenameUtils.getExtension(file.name))
+        }
+    }
+
+    /**
+     * 上传文件并入库 <br>
+     * 若文件已存在则不会再次上传,且返回原有信息
+     * @param path 文件路径
+     * @param groupName 上传到指定组,默认自动分配
+     * @return 数据信息
+     */
+    fun uploadFileDB(path: String, groupName: String? = null): SysUploadInfo? {
+        return uploadFileDB(File(path), groupName)
+    }
+
+    /**
+     * 上传文件并入库 <br>
+     * 若文件已存在则不会再次上传,且返回原有信息
+     * @param path 文件路径
+     * @param groupName 上传到指定组,默认自动分配
+     * @return 数据信息
+     */
+    fun uploadFileDB(file: File, groupName: String? = null): SysUploadInfo? {
+        val md5 = FileUtil.md5HeadTail(file)
+        val fileInfo = rUploadService.getUploadInfoByMd5(md5)
+        if (fileInfo != null) {
+            return fileInfo
+        }
+        val storePath = uploadFile(file, groupName)
+        return rUploadService.addFileInfo(file.name, md5, file.length(), file.lastModified(), file.path, FdfsFile(storePath.group, storePath.path))
+    }
+
+    /**
+     * 查询文件信息
+     * @param groupName 组名
+     * @param path 名
+     * @return 若文件服务器上无此文件,则返回null
+     */
+    fun queryFileInfo(groupName: String, path: String): FileInfo? {
+        return try {
+            fastFileStorageClient.queryFileInfo(groupName, path)
+        } catch (e: FdfsServerException) {
+            null
+        }
+    }
+
+    /**
+     * 下载并保存到指定位置
+     * @param groupName 组名
+     * @param path path
+     * @param outputPath 指定位置(包括文件名,建议使用绝对路径)
+     */
+    fun downloadFile(groupName: String, path: String, outputPath: String): File {
+        return fastFileStorageClient.downloadFile(groupName, path) {
+            FileUtil.writeFile(it, outputPath)
+        }
+    }
+
+    /**
+     * 删除文件
+     * 删除失败抛出异常
+     */
+    fun deleteFile(groupName: String, path: String) {
+        fastFileStorageClient.deleteFile(groupName, path)
+    }
+}

+ 54 - 0
zen-web/src/test/kotlin/com/gxzc/zen/FileSystemUtilTest.kt

@@ -0,0 +1,54 @@
+package com.gxzc.zen
+
+import com.github.tobato.fastdfs.exception.FdfsServerException
+import com.gxzc.zen.api.util.FileSystemUtil
+import org.junit.Assert
+import org.junit.Test
+import org.junit.runner.RunWith
+import org.springframework.boot.test.context.SpringBootTest
+import org.springframework.test.context.junit4.SpringRunner
+
+/**
+ *
+ * @author NorthLan
+ * @date 2018/9/1
+ * @url https://noahlan.com
+ */
+@RunWith(SpringRunner::class)
+@SpringBootTest(classes = [MainApplication::class])
+class FileSystemUtilTest {
+
+    @Test
+    fun testFileUpload() {
+        println("测试上传文件: D:\\settings.jar")
+        val storePath = try {
+            FileSystemUtil.uploadFile("D:\\settings.jar")
+        } catch (e: FdfsServerException) {
+            null
+        }
+        Assert.assertTrue("上传失败!", storePath != null)
+        println("上传成功: ${storePath!!.group}/${storePath.path}")
+
+        println("测试删除文件: ${storePath.group}/${storePath.path}")
+        val success = try {
+            FileSystemUtil.deleteFile(storePath.group, storePath.path)
+            true
+        } catch (e: Throwable) {
+            false
+        }
+        Assert.assertTrue("删除失败!", success)
+        println("删除成功!")
+    }
+
+    @Test
+    fun testFileDownload() {
+        println("测试下载文件: group1/M00/00/20/wKhvBFuJV2qEBn45AAAAADwYXv4544.pdf -> D:\\test.pdf")
+        val file = try {
+            FileSystemUtil.downloadFile("group1", "M00/00/20/wKhvBFuJV2qEBn45AAAAADwYXv4544.pdf", "D:\\test.pdf")
+        } catch (e: FdfsServerException) {
+            null
+        }
+        Assert.assertTrue("下载失败!", file != null)
+        println("下载成功")
+    }
+}