C#开发BIMFACE系列8 服务端API之获取文件上传状态信息

时间:2022-06-06 06:17:20

在BIMFACE控制台上传文件,上传过程及结束后它会自动告诉你文件的上传状态,目前有三种状态:uploading,success,failure。即上传中、上传成功、上传失败。

如果是通过调用服务接口来上传文件,上传结束后也可以再调用BIMFACE提供的“获取文件上传状态信息”接口来查询状态。

下面详细介绍如何获取文件上传状态信息。

请求地址:GET https://file.bimface.com/files/{fileId}/uploadStatus

说明:根据文件ID获取文件上传状态信息

参数:

C#开发BIMFACE系列8 服务端API之获取文件上传状态信息

请求 path(示例):https://file.bimface.com/files/1419273043501216/uploadStatus

请求 header(示例):"Authorization: Bearer dc671840-bacc-4dc5-a134-97c1918d664b"

HTTP响应示例(200):

{
"code" : "success",
"data" : {
"failedReason" : "input.stream.read.error", // 上传失败的远因。如果上传成功,则为空。
"fileId" : , // 文件ID
"name" : "-1F.rvt", // 文件名称
"status" : "failure" // 文件上传状态
},
"message" : ""
}

C#实现方法:

 /// <summary>
/// 获取文件上传状态信息
/// </summary>
/// <param name="accessToken">令牌</param>
/// <param name="fileId">文件ID</param>
/// <returns></returns>
public virtual FileUploadStatusResponse GetFileUploadStatus(string accessToken, string fileId)
{
//GET https://file.bimface.com/files/{fileId}/uploadStatus
string url = string.Format(BimfaceConstants.FILE_HOST + "/files/{0}/uploadStatus", fileId); BimFaceHttpHeaders headers = new BimFaceHttpHeaders();
headers.AddOAuth2Header(accessToken); try
{
FileUploadStatusResponse response; HttpManager httpManager = new HttpManager(headers);
HttpResult httpResult = httpManager.Get(url);
if (httpResult.Status == HttpResult.STATUS_SUCCESS)
{
response = httpResult.Text.DeserializeJsonToObject<FileUploadStatusResponse>();
}
else
{
response = new FileUploadStatusResponse
{
Message = httpResult.RefText
};
} return response;
}
catch (Exception ex)
{
throw new Exception("[获取文件上传状态信息]发生异常!", ex);
}
}
其中引用的 httpManager.Get() 方法,请参考《C#开发BIMFACE系列6 服务端API之获取文件信息》,方法完全一样。
测试
 在BIMFACE的控制台中可以看到我们上传的文件列表

C#开发BIMFACE系列8 服务端API之获取文件上传状态信息

选择任意一个文件的ID来做测试

C#开发BIMFACE系列8 服务端API之获取文件上传状态信息

可以看到获取文件上传状态信息成功,返回了以下信息:失败原因、文件编号、文件的名称、文件的上传状态。

测试程序如下:

// 获取文件上传状态信息
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();
}