潘志宝
3 天以前 e14de70a3c4b393498d3e95717b19240c4426c22
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package com.iailab.module.infra.framework.file.core.client;
 
import com.iailab.module.infra.framework.file.core.client.s3.FilePresignedUrlRespDTO;
 
/**
 * 文件客户端
 *
 * @author iailab
 */
public interface FileClient {
 
    /**
     * 获得客户端编号
     *
     * @return 客户端编号
     */
    Long getId();
 
    /**
     * 上传文件
     *
     * @param content 文件流
     * @param path    相对路径
     * @return 完整路径,即 HTTP 访问地址
     * @throws Exception 上传文件时,抛出 Exception 异常
     */
    String upload(byte[] content, String path, String type) throws Exception;
 
    /**
     * 删除文件
     *
     * @param path 相对路径
     * @throws Exception 删除文件时,抛出 Exception 异常
     */
    void delete(String path) throws Exception;
 
    /**
     * 获得文件的内容
     *
     * @param path 相对路径
     * @return 文件的内容
     */
    byte[] getContent(String path) throws Exception;
 
    /**
     * 获得文件预签名地址
     *
     * @param path 相对路径
     * @return 文件预签名地址
     */
    default FilePresignedUrlRespDTO getPresignedObjectUrl(String path) throws Exception {
        throw new UnsupportedOperationException("不支持的操作");
    }
 
}