| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /**
- * Copyright (c) 2018 人人开源 All rights reserved.
- *
- * https://www.renren.io
- *
- * 版权所有,侵权必究!
- */
-
- package io.renren.cloud;
-
- import java.io.ByteArrayInputStream;
- import java.io.InputStream;
-
- import com.aliyun.oss.OSSClient;
-
- import io.renren.common.exception.ErrorCode;
- import io.renren.common.exception.RenException;
-
- /**
- * 阿里云存储
- *
- * @author Mark sunlightcs@gmail.com
- */
- public class AliyunCloudStorageService extends AbstractCloudStorageService {
-
- public AliyunCloudStorageService(CloudStorageConfig config){
- this.config = config;
- }
-
- @Override
- public String upload(byte[] data, String path) {
- return upload(new ByteArrayInputStream(data), path);
- }
-
- @Override
- public String upload(InputStream inputStream, String path) {
- OSSClient client = new OSSClient(config.getAliyunEndPoint(), config.getAliyunAccessKeyId(),
- config.getAliyunAccessKeySecret());
- try {
- client.putObject(config.getAliyunBucketName(), path, inputStream);
- client.shutdown();
- } catch (Exception e){
- throw new RenException(ErrorCode.OSS_UPLOAD_FILE_ERROR, e, "");
- }
-
- return config.getAliyunDomain() + "/" + path;
- }
-
- @Override
- public String uploadSuffix(byte[] data, String suffix) {
- return upload(data, getPath(config.getAliyunPrefix(), suffix));
- }
-
- @Override
- public String uploadSuffix(InputStream inputStream, String suffix) {
- return upload(inputStream, getPath(config.getAliyunPrefix(), suffix));
- }
- }
|