|
@@ -28,10 +28,10 @@ export interface HwobsFile{
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
- * HwobsService 华为OBS文件服务
|
|
|
|
|
|
+ * HwobsProvider 华为OBS文件服务
|
|
* @public
|
|
* @public
|
|
*/
|
|
*/
|
|
-export class HwobsService {
|
|
|
|
|
|
+export class HwobsProvider {
|
|
obsClient:ObsClient
|
|
obsClient:ObsClient
|
|
bucketName:string
|
|
bucketName:string
|
|
host:string
|
|
host:string
|
|
@@ -97,6 +97,7 @@ export class HwobsService {
|
|
* @returns
|
|
* @returns
|
|
*/
|
|
*/
|
|
async uploadFile(file:File,key:string):Promise<Parse.Object>{
|
|
async uploadFile(file:File,key:string):Promise<Parse.Object>{
|
|
|
|
+ console.log(this.globalPrefix,key)
|
|
// key 文件上传后的全部路径
|
|
// key 文件上传后的全部路径
|
|
// /storage/<公司账套>/<应用名称>/年月日/<文件名>.<文件后缀>
|
|
// /storage/<公司账套>/<应用名称>/年月日/<文件名>.<文件后缀>
|
|
// /storage/web2023/<学号>/年月日/<文件名>.<文件后缀>
|
|
// /storage/web2023/<学号>/年月日/<文件名>.<文件后缀>
|
|
@@ -113,7 +114,7 @@ export class HwobsService {
|
|
reject(err)
|
|
reject(err)
|
|
}else{
|
|
}else{
|
|
console.log('Status-->' + result.CommonMsg.Status);
|
|
console.log('Status-->' + result.CommonMsg.Status);
|
|
- let attach = await this.saveAttachment(file,key)
|
|
|
|
|
|
+ let attach = await this.saveAttachment(file,this.globalPrefix+key)
|
|
resolve(attach)
|
|
resolve(attach)
|
|
}
|
|
}
|
|
});
|
|
});
|
|
@@ -134,6 +135,7 @@ export class HwobsService {
|
|
return attach
|
|
return attach
|
|
}
|
|
}
|
|
async saveAttachment(file:File,key:string){
|
|
async saveAttachment(file:File,key:string){
|
|
|
|
+ console.log("saveAttachment",key)
|
|
let hash = await this.getFileHash(file)
|
|
let hash = await this.getFileHash(file)
|
|
let attach = await this.checkFileExists(file)
|
|
let attach = await this.checkFileExists(file)
|
|
attach.set("name",file.name)
|
|
attach.set("name",file.name)
|