方法 Microsoft.Azure.Devices.Client.DeviceClient.UploadToBlobAsync 基本上是通过 Azure IoT 中心对 Blob 上传会话的 REST API 调用进行封装。本次会议的顺序分为 3 个步骤,例如:
第 1 步。从 Azure IoT 中心获取上传信息参考(开放会话)
第 2 步。根据收到的参考信息上传 blob
第 3 步。关闭发布上传过程结果的会话。
以下代码 sn -p 显示了在 PCL 项目中实现上述步骤的示例:
private async Task UploadToBlobAsync(string blobName, Stream source, string iothubnamespace, string deviceId, string deviceKey)
{
using(HttpClient client = new HttpClient())
{
// create authorization header
string deviceSasToken = GetSASToken($"{iothubnamespace}.azure-devices.net/devices/{deviceId}", deviceKey, null, 1);
client.DefaultRequestHeaders.Add("Authorization", deviceSasToken);
// step 1. get the upload info
var payload = JsonConvert.SerializeObject(new { blobName = blobName });
var response = await client.PostAsync($"https://{iothubnamespace}.azure-devices.net/devices/{deviceId}/files?api-version=2016-11-14", new StringContent(payload, Encoding.UTF8, "application/json"));
var infoType = new { correlationId = "", hostName = "", containerName = "", blobName = "", sasToken = "" };
var uploadInfo = JsonConvert.DeserializeAnonymousType(await response.Content.ReadAsStringAsync(), infoType);
// step 2. upload blob
var uploadUri = $"https://{uploadInfo.hostName}/{uploadInfo.containerName}/{uploadInfo.blobName}{uploadInfo.sasToken}";
client.DefaultRequestHeaders.Add("x-ms-blob-type", "blockblob");
client.DefaultRequestHeaders.Remove("Authorization");
response = await client.PutAsync(uploadUri, new StreamContent(source));
// step 3. send completed
bool isUploaded = response.StatusCode == System.Net.HttpStatusCode.Created;
client.DefaultRequestHeaders.Add("Authorization", deviceSasToken);
payload = JsonConvert.SerializeObject(new { correlationId = uploadInfo.correlationId, statusCode = isUploaded ? 0 : -1, statusDescription = response.ReasonPhrase, isSuccess = isUploaded });
response = await client.PostAsync($"https://{iothubnamespace}.azure-devices.net/devices/{deviceId}/files/notifications?api-version=2016-11-14", new StringContent(payload, Encoding.UTF8, "application/json"));
}
}
对于授权头,我们需要一个sasToken,所以下面的代码sn-p展示了它的实现:
private string GetSASToken(string resourceUri, string key, string keyName = null, uint hours = 24)
{
var expiry = Convert.ToString((int)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds + 3600 * hours);
string stringToSign = System.Net.WebUtility.UrlEncode(resourceUri) + "\n" + expiry;
HMACSHA256 hmac = new HMACSHA256(Convert.FromBase64String(key));
var signature = Convert.ToBase64String(hmac.ComputeHash(Encoding.UTF8.GetBytes(stringToSign)));
var sasToken = keyName == null ?
String.Format(CultureInfo.InvariantCulture, "SharedAccessSignature sr={0}&sig={1}&se={2}", System.Net.WebUtility.UrlEncode(resourceUri), System.Net.WebUtility.UrlEncode(signature), expiry) :
String.Format(CultureInfo.InvariantCulture, "SharedAccessSignature sr={0}&sig={1}&se={2}&skn={3}", System.Net.WebUtility.UrlEncode(resourceUri), System.Net.WebUtility.UrlEncode(signature), expiry, keyName);
return sasToken;
}
请注意,上述实现不处理步骤 2 中的重试机制。