疯狂的狮子li
2021-07-18 f847f67982293993599cd5f32c835adf5c4af55c
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
package com.ruoyi.oss.service.impl;
 
import com.ruoyi.oss.enumd.CloudServiceEnumd;
import com.ruoyi.oss.exception.OssException;
import com.ruoyi.oss.factory.OssFactory;
import com.ruoyi.oss.properties.CloudStorageProperties;
import com.ruoyi.oss.properties.CloudStorageProperties.MinioProperties;
import com.ruoyi.oss.service.abstractd.AbstractCloudStorageService;
import io.minio.MinioClient;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service;
 
import java.io.InputStream;
 
/**
 * minio存储
 *
 * @author Lion Li
 */
@Lazy
@Service
public class MinioCloudStorageServiceImpl extends AbstractCloudStorageService implements InitializingBean {
 
    private final MinioClient minioClient;
    private final MinioProperties properties;
 
    @Autowired
    public MinioCloudStorageServiceImpl(CloudStorageProperties properties) {
        this.properties = properties.getMinio();
        minioClient = MinioClient.builder()
            .endpoint(this.properties.getEndpoint())
            .credentials(this.properties.getAccessKey(), this.properties.getSecretKey())
            .build();
    }
 
    @Override
    public String getServiceType() {
        return CloudServiceEnumd.MINIO.getValue();
    }
 
    @Override
    public String upload(byte[] data, String path) {
        try {
 
        } catch (Exception e) {
            throw new OssException("上传文件失败,请核对Minio配置信息");
        }
        return this.properties.getEndpoint() + "/" + path;
    }
 
    @Override
    public void delete(String path) {
        try {
 
        } catch (Exception e) {
            throw new OssException(e.getMessage());
        }
    }
 
    @Override
    public String uploadSuffix(byte[] data, String suffix) {
        return upload(data, getPath(this.properties.getPrefix(), suffix));
    }
 
    @Override
    public String uploadSuffix(InputStream inputStream, String suffix) {
        return upload(inputStream, getPath(this.properties.getPrefix(), suffix));
    }
 
    @Override
    public void afterPropertiesSet() throws Exception {
        OssFactory.register(getServiceType(),this);
    }
}