在BIMFACE控制檯上傳文件,上傳過程及結束後它會自動告訴你文件的上傳狀態,目前有三種狀態:uploading,success,failure。即上傳中、上傳成功、上傳失敗。html
若是是經過調用服務接口來上傳文件,上傳結束後也能夠再調用BIMFACE提供的「獲取文件上傳狀態信息」接口來查詢狀態。json
下面詳細介紹如何獲取文件上傳狀態信息。api
請求地址:GET https://file.bimface.com/files/{fileId}/uploadStatus測試
說明:根據文件ID獲取文件上傳狀態信息url
參數:
spa
請求 path(示例):https://file.bimface.com/files/1419273043501216/uploadStatuscode
請求 header(示例):"Authorization: Bearer dc671840-bacc-4dc5-a134-97c1918d664b"
orm
HTTP響應示例(200):htm
{ "code" : "success", "data" : { "failedReason" : "input.stream.read.error", // 上傳失敗的遠因。若是上傳成功,則爲空。 "fileId" : 1216113551663296, // 文件ID "name" : "-1F.rvt", // 文件名稱 "status" : "failure" // 文件上傳狀態 }, "message" : "" }
C#實現方法:blog
1 /// <summary> 2 /// 獲取文件上傳狀態信息 3 /// </summary> 4 /// <param name="accessToken">令牌</param> 5 /// <param name="fileId">文件ID</param> 6 /// <returns></returns> 7 public virtual FileUploadStatusResponse GetFileUploadStatus(string accessToken, string fileId) 8 { 9 //GET https://file.bimface.com/files/{fileId}/uploadStatus 10 string url = string.Format(BimfaceConstants.FILE_HOST + "/files/{0}/uploadStatus", fileId); 11 12 BimFaceHttpHeaders headers = new BimFaceHttpHeaders(); 13 headers.AddOAuth2Header(accessToken); 14 15 try 16 { 17 FileUploadStatusResponse response; 18 19 HttpManager httpManager = new HttpManager(headers); 20 HttpResult httpResult = httpManager.Get(url); 21 if (httpResult.Status == HttpResult.STATUS_SUCCESS) 22 { 23 response = httpResult.Text.DeserializeJsonToObject<FileUploadStatusResponse>(); 24 } 25 else 26 { 27 response = new FileUploadStatusResponse 28 { 29 Message = httpResult.RefText 30 }; 31 } 32 33 return response; 34 } 35 catch (Exception ex) 36 { 37 throw new Exception("[獲取文件上傳狀態信息]發生異常!", ex); 38 } 39 }
其中引用的 httpManager.Get() 方法,請參考《C#開發BIMFACE系列6 服務端API之獲取文件信息》,方法徹底同樣。
在BIMFACE的控制檯中能夠看到咱們上傳的文件列表
選擇任意一個文件的ID來作測試
能夠看到獲取文件上傳狀態信息成功,返回瞭如下信息:失敗緣由、文件編號、文件的名稱、文件的上傳狀態。
測試程序以下:
// 獲取文件上傳狀態信息 protected void btnGetFileUploadStatus_Click(object sender, EventArgs e) { txtFileInfo.Text = string.Empty; string token = txtAccessToken.Text; string fileId = txtFileId.Text; FileApi api = new FileApi(); FileUploadStatusResponse response = api.GetFileUploadStatus(token, fileId); txtFileInfo.Text = response.Code + Environment.NewLine + response.Message + Environment.NewLine + response.Data.ToString(); }