mirror of
https://github.com/doocs/md.git
synced 2024-11-25 03:18:36 +08:00
feat: update cdnHost
This commit is contained in:
parent
9848a76c84
commit
b344d67351
@ -5,6 +5,7 @@ import Buffer from 'buffer-from';
|
|||||||
import {
|
import {
|
||||||
v4 as uuidv4
|
v4 as uuidv4
|
||||||
} from 'uuid';
|
} from 'uuid';
|
||||||
|
import { resolveConfigFile } from 'prettier';
|
||||||
|
|
||||||
const defaultConfig = {
|
const defaultConfig = {
|
||||||
username: 'filess',
|
username: 'filess',
|
||||||
@ -95,10 +96,7 @@ async function aliOSSFileUpload(content, filename) {
|
|||||||
accessKeySecret: aliOSSConfig.accessKeySecret
|
accessKeySecret: aliOSSConfig.accessKeySecret
|
||||||
});
|
});
|
||||||
const res = await client.put(dir, buffer);
|
const res = await client.put(dir, buffer);
|
||||||
if(aliOSSConfig.cdnHost != ''){
|
return aliOSSConfig.cdnHost == '' ? res.url : aliOSSConfig.cdnHost + '/' + (aliOSSConfig.path == '' ? dateFilename : dir);
|
||||||
return aliOSSConfig.cdnHost +'/'+dir;
|
|
||||||
}
|
|
||||||
return res.url;
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return Promise.reject(e);
|
return Promise.reject(e);
|
||||||
}
|
}
|
||||||
@ -120,13 +118,12 @@ async function txCOSFileUpload(file) {
|
|||||||
}, function (err, data) {
|
}, function (err, data) {
|
||||||
if (err) {
|
if (err) {
|
||||||
reject(err);
|
reject(err);
|
||||||
|
} else if (txCOSConfig.cdnHost) {
|
||||||
|
// if cdnHost exists
|
||||||
|
resolve(txCOSConfig.path != '' ? txCOSConfig.cdnHost + '/' + txCOSConfig.path + '/' + dateFilename : txCOSConfig.cdnHost + '/' + dateFilename);
|
||||||
} else {
|
} else {
|
||||||
if(txCOSConfig.cdnHost != ''){
|
// if cdnHost not exists
|
||||||
resolve(txCOSConfig.cdnHost+'/'+txCOSConfig.path + '/' + dateFilename);
|
reject(data.Location);
|
||||||
}else{
|
|
||||||
resolve(data.Location);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
@ -131,7 +131,7 @@ export default {
|
|||||||
bucket: "",
|
bucket: "",
|
||||||
region: "",
|
region: "",
|
||||||
path: "",
|
path: "",
|
||||||
cdnHost:""
|
cdnHost: "",
|
||||||
},
|
},
|
||||||
formTxCOS: {
|
formTxCOS: {
|
||||||
secretId: "",
|
secretId: "",
|
||||||
@ -139,7 +139,7 @@ export default {
|
|||||||
bucket: "",
|
bucket: "",
|
||||||
region: "",
|
region: "",
|
||||||
path: "",
|
path: "",
|
||||||
cdnHost:""
|
cdnHost: "",
|
||||||
},
|
},
|
||||||
options: [{
|
options: [{
|
||||||
value: "default",
|
value: "default",
|
||||||
|
Loading…
Reference in New Issue
Block a user