|
@@ -54,7 +54,7 @@ export function getUrlParams(str=window.location.href,key) {
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
- * @param {*} objectStorageClient 1-走oss 2-走minio
|
|
|
+ * @param {*} objectStorageClient 1-走oss 2-走minio string
|
|
|
* @param {*} file 上传文件
|
|
|
* @param {*} temName 文件路径/文件名字
|
|
|
* @param {*} options 文件路径/文件名字
|
|
@@ -65,8 +65,8 @@ export function getUrlParams(str=window.location.href,key) {
|
|
|
// 上传文件 直接走对象存取服务器
|
|
|
export function uploadFileDirect(objectStorageClient,file,temName,options={}){
|
|
|
const objectStorageType= (objectStorageClient || JSON.parse(localStorage.getItem('dynamicOutLinks')).ObjectStorageClient)+""
|
|
|
- console.log(objectStorageType,'objectStorageType');
|
|
|
- return
|
|
|
+ // console.log(objectStorageType,'objectStorageType');
|
|
|
+ // return
|
|
|
if(!objectStorageType){
|
|
|
Message.error("ObjectStorageClient参数丢失")
|
|
|
return new Promise((resolve,reject) => reject("ObjectStorageClient参数丢失"))
|
|
@@ -79,7 +79,7 @@ export function uploadFileDirect(objectStorageClient,file,temName,options={}){
|
|
|
Message.error("temName参数错误")
|
|
|
return new Promise((resolve,reject) => reject("temName参数错误"))
|
|
|
}
|
|
|
- console.log(objectStorageClient,file,temName,options,'objectStorageClient,file,temName,options');
|
|
|
+ // console.log(objectStorageClient,file,temName,options,'objectStorageClient,file,temName,options');
|
|
|
switch (objectStorageClient) {
|
|
|
case "1":
|
|
|
let ossOptions = {}
|
|
@@ -104,8 +104,9 @@ export function uploadFileDirect(objectStorageClient,file,temName,options={}){
|
|
|
const handleUploadToOSS= (file,fileName,options={})=>{
|
|
|
return new Promise(async (resolve,reject)=>{
|
|
|
// 获取oss临时签名
|
|
|
- const res=await getOSSSign()
|
|
|
- if(res.Ret!==200) reject("获取oss临时签名错误")
|
|
|
+ const res=await getOSSSign({StorageSource:1})
|
|
|
+ // console.log(res);
|
|
|
+ if(res.Ret!==200) reject("获取阿里云oss临时签名错误")
|
|
|
try {
|
|
|
|
|
|
let oss_params = {
|
|
@@ -149,20 +150,23 @@ const handleUploadToOSS= (file,fileName,options={})=>{
|
|
|
// minio sdk 文档 https://min.io/docs/minio/linux/developers/javascript/API.html
|
|
|
const handleUploadToMinIO=(file,fileName,options={})=>{
|
|
|
return new Promise(async (resolve,reject)=>{
|
|
|
- // console.log(Minio);
|
|
|
+
|
|
|
+ const res=await getOSSSign({StorageSource:2})
|
|
|
+ // console.log(res);
|
|
|
+ if(res.Ret!==200) reject("获取minio临时签名错误")
|
|
|
+ // return
|
|
|
const minioClient = new Minio.Client({
|
|
|
- endPoint: '8.136.199.33',
|
|
|
- port: 9000,
|
|
|
- useSSL: false,
|
|
|
- accessKey: 'eta',
|
|
|
- secretKey: 'eta202309',
|
|
|
+ endPoint: res.Data.Endpoint.split(':')[0],
|
|
|
+ port: Number(res.Data.Port)||undefined,
|
|
|
+ useSSL: res.Data.UseSSL.toLocaleLowerCase()=="false"?false:true,
|
|
|
+ accessKey: res.Data.AccessKeyId,
|
|
|
+ secretKey: res.Data.SecretKeyId,
|
|
|
})
|
|
|
-
|
|
|
+ console.log(minioClient);
|
|
|
try {
|
|
|
var metaData = {...{
|
|
|
'Content-Type': file.type||'application/octet-stream',
|
|
|
"Content-Length": file.size,
|
|
|
- // example: 5678,
|
|
|
},...options}
|
|
|
|
|
|
minioClient.bucketExists("etastatic", function (err, exists) {
|
|
@@ -172,7 +176,7 @@ const handleUploadToMinIO=(file,fileName,options={})=>{
|
|
|
}
|
|
|
if (!exists) {
|
|
|
// 不存在桶,创建桶
|
|
|
- minioClient.makeBucket('etastatic', function (err) {
|
|
|
+ minioClient.makeBucket('etastatic', res.Data.RegionId,function (err) {
|
|
|
if (err) {
|
|
|
throw "minio 创建桶失败"+err
|
|
|
}
|
|
@@ -186,7 +190,7 @@ const handleUploadToMinIO=(file,fileName,options={})=>{
|
|
|
// 转化成数据流 minio接受数据流格式
|
|
|
bufferStream.end(Buffer.from(dataurl))
|
|
|
// console.log(bufferStream);
|
|
|
- minioClient.putObject('etastatic', fileName, bufferStream, metaData, function (err, etag) {
|
|
|
+ minioClient.putObject('etastatic', fileName, bufferStream,file.size, metaData, function (err, etag) {
|
|
|
if (err){
|
|
|
throw "上传到minio失败:"+err
|
|
|
}
|
|
@@ -196,7 +200,6 @@ const handleUploadToMinIO=(file,fileName,options={})=>{
|
|
|
})
|
|
|
}
|
|
|
if (exists) {
|
|
|
- // console.log("exists");
|
|
|
let reader = new FileReader();
|
|
|
console.log(reader);
|
|
|
reader.readAsArrayBuffer(file);
|
|
@@ -205,15 +208,12 @@ const handleUploadToMinIO=(file,fileName,options={})=>{
|
|
|
let bufferStream = new stream.PassThrough();
|
|
|
|
|
|
bufferStream.end(Buffer.from(dataurl))
|
|
|
- console.log(bufferStream);
|
|
|
- // Using fPutObject API upload your file to the bucket europetrip.
|
|
|
minioClient.putObject('etastatic', fileName, bufferStream, metaData, function (err, etag) {
|
|
|
if (err){
|
|
|
throw "上传到minio失败:"+err
|
|
|
}
|
|
|
- console.log(minioClient);
|
|
|
- // let fileUrl = http://8.136.199.33:9000/etastatic/testOne.jpeg
|
|
|
- resolve("http://8.136.199.33:9000/etastatic/testOne.jpeg")
|
|
|
+ let fileUrl = fileName.startsWith('/')?res.Data.ImgHost+fileName:res.Data.ImgHost+"/"+fileName
|
|
|
+ resolve(fileUrl)
|
|
|
})
|
|
|
}
|
|
|
}
|