| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- package com.java110.common.smo.impl;
- import com.java110.common.dao.IFileServiceDao;
- import com.java110.config.properties.code.Java110Properties;
- import com.java110.core.base.smo.BaseServiceSMO;
- import com.java110.core.client.CosUploadTemplate;
- import com.java110.core.client.FtpUploadTemplate;
- import com.java110.core.client.JSchFtpUploadTemplate;
- import com.java110.core.client.OssUploadTemplate;
- import com.java110.dto.file.FileDto;
- import com.java110.intf.common.IFileInnerServiceSMO;
- import com.java110.utils.cache.MappingCache;
- import com.java110.utils.util.COSUtil;
- import com.java110.utils.util.OSSUtil;
- import com.java110.utils.util.StringUtil;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.RequestBody;
- import org.springframework.web.bind.annotation.RestController;
- import java.util.ArrayList;
- import java.util.List;
- @RestController
- public class FileInnerServiceSMOImpl extends BaseServiceSMO implements IFileInnerServiceSMO {
- @Autowired
- private IFileServiceDao fileServiceDaoImpl;
- @Autowired
- private Java110Properties java110Properties;
- @Autowired
- private FtpUploadTemplate ftpUploadTemplate;
- @Autowired
- private JSchFtpUploadTemplate jSchFtpUploadTemplate;
- @Autowired
- private OssUploadTemplate ossUploadTemplate;
- @Autowired
- private CosUploadTemplate cosUploadTemplate;
- @Override
- public String saveFile(@RequestBody FileDto fileDto) {
- //int saveFileFlag = fileServiceDaoImpl.saveFile(BeanConvertUtil.beanCovertMap(fileDto));
- String fileName = "";
- String ossSwitch = MappingCache.getValue(OSSUtil.DOMAIN, OSSUtil.OSS_SWITCH);
- if ( OSSUtil.OSS_SWITCH_OSS.equals(ossSwitch)) {
- fileName = ossUploadTemplate.upload(fileDto.getContext(), java110Properties.getFtpServer(),
- java110Properties.getFtpPort(), java110Properties.getFtpUserName(),
- java110Properties.getFtpUserPassword(), java110Properties.getFtpPath());
- } else if (COSUtil.COS_SWITCH_COS.equals(ossSwitch)) {
- fileName = cosUploadTemplate.upload(fileDto.getContext(), java110Properties.getFtpServer(),
- java110Properties.getFtpPort(), java110Properties.getFtpUserName(),
- java110Properties.getFtpUserPassword(), java110Properties.getFtpPath());
- } else {
- String ftpServer = MappingCache.getValue(FtpUploadTemplate.FTP_DOMAIN, FtpUploadTemplate.FTP_SERVER);
- int ftpPort = Integer.parseInt(MappingCache.getValue(FtpUploadTemplate.FTP_DOMAIN, FtpUploadTemplate.FTP_PORT));
- String ftpUserName = MappingCache.getValue(FtpUploadTemplate.FTP_DOMAIN, FtpUploadTemplate.FTP_USERNAME);
- String ftpUserPassword = MappingCache.getValue(FtpUploadTemplate.FTP_DOMAIN, FtpUploadTemplate.FTP_USERPASSWORD);
- String ftpPath = java110Properties.getFtpPath();
- fileName = ftpUploadTemplate.upload(fileDto.getContext(), ftpServer,
- ftpPort, ftpUserName,
- ftpUserPassword, ftpPath);
- }
- return fileName;
- }
- @Override
- public List<FileDto> queryFiles(@RequestBody FileDto fileDto) {
- //return BeanConvertUtil.covertBeanList(fileServiceDaoImpl.getFiles(BeanConvertUtil.beanCovertMap(fileDto)), FileDto.class);
- List<FileDto> fileDtos = new ArrayList<>();
- String fileName = fileDto.getFileSaveName();
- String ftpPath = java110Properties.getFtpPath();
- String suffix = fileName.substring(fileName.lastIndexOf(".") + 1);
- if (fileName.contains("/")) {
- ftpPath += fileName.substring(0, fileName.lastIndexOf("/") + 1);
- fileName = fileName.substring(fileName.lastIndexOf("/") + 1, fileName.length());
- }
- String context = "";
- String ossSwitch = MappingCache.getValue(OSSUtil.DOMAIN, OSSUtil.OSS_SWITCH);
- if (OSSUtil.OSS_SWITCH_OSS.equals(ossSwitch)) {
- context = ossUploadTemplate.download(ftpPath, fileName, java110Properties.getFtpServer(),
- java110Properties.getFtpPort(), java110Properties.getFtpUserName(),
- java110Properties.getFtpUserPassword());
- }else if (COSUtil.COS_SWITCH_COS.equals(ossSwitch)) {
- context = cosUploadTemplate.download(ftpPath, fileName, java110Properties.getFtpServer(),
- java110Properties.getFtpPort(), java110Properties.getFtpUserName(),
- java110Properties.getFtpUserPassword());
- } else {
- String ftpServer = MappingCache.getValue(FtpUploadTemplate.FTP_DOMAIN, FtpUploadTemplate.FTP_SERVER);
- int ftpPort = Integer.parseInt(MappingCache.getValue(FtpUploadTemplate.FTP_DOMAIN, FtpUploadTemplate.FTP_PORT));
- String ftpUserName = MappingCache.getValue(FtpUploadTemplate.FTP_DOMAIN, FtpUploadTemplate.FTP_USERNAME);
- String ftpUserPassword = MappingCache.getValue(FtpUploadTemplate.FTP_DOMAIN, FtpUploadTemplate.FTP_USERPASSWORD);
- context = ftpUploadTemplate.download(ftpPath, fileName, ftpServer,
- ftpPort, ftpUserName,
- ftpUserPassword);
- }
- fileDto.setContext(context);
- fileDto.setSuffix(suffix);
- fileDtos.add(fileDto);
- return fileDtos;
- }
- public IFileServiceDao getFileServiceDaoImpl() {
- return fileServiceDaoImpl;
- }
- public void setFileServiceDaoImpl(IFileServiceDao fileServiceDaoImpl) {
- this.fileServiceDaoImpl = fileServiceDaoImpl;
- }
- }
|