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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package com.iailab.module.infra.service.file;
 
import com.iailab.framework.common.pojo.PageResult;
import com.iailab.module.infra.controller.admin.file.vo.config.FileConfigPageReqVO;
import com.iailab.module.infra.controller.admin.file.vo.config.FileConfigSaveReqVO;
import com.iailab.module.infra.dal.dataobject.file.FileConfigDO;
 
import com.iailab.module.infra.framework.file.core.client.FileClient;
 
import javax.validation.Valid;
 
/**
 * 文件配置 Service 接口
 *
 * @author iailab
 */
public interface FileConfigService {
 
    /**
     * 创建文件配置
     *
     * @param createReqVO 创建信息
     * @return 编号
     */
    Long createFileConfig(@Valid FileConfigSaveReqVO createReqVO);
 
    /**
     * 更新文件配置
     *
     * @param updateReqVO 更新信息
     */
    void updateFileConfig(@Valid FileConfigSaveReqVO updateReqVO);
 
    /**
     * 更新文件配置为 Master
     *
     * @param id 编号
     */
    void updateFileConfigMaster(Long id);
 
    /**
     * 删除文件配置
     *
     * @param id 编号
     */
    void deleteFileConfig(Long id);
 
    /**
     * 获得文件配置
     *
     * @param id 编号
     * @return 文件配置
     */
    FileConfigDO getFileConfig(Long id);
 
    /**
     * 获得文件配置分页
     *
     * @param pageReqVO 分页查询
     * @return 文件配置分页
     */
    PageResult<FileConfigDO> getFileConfigPage(FileConfigPageReqVO pageReqVO);
 
    /**
     * 测试文件配置是否正确,通过上传文件
     *
     * @param id 编号
     * @return 文件 URL
     */
    String testFileConfig(Long id) throws Exception;
 
    /**
     * 获得指定编号的文件客户端
     *
     * @param id 配置编号
     * @return 文件客户端
     */
    FileClient getFileClient(Long id);
 
    /**
     * 获得 Master 文件客户端
     *
     * @return 文件客户端
     */
    FileClient getMasterFileClient();
 
}