登录
首页 >  Golang >  Go问答

上传 Blob 时可以设置访问层吗?如果是,那么该怎么做呢?

来源:stackoverflow

时间:2024-04-10 13:00:34 372浏览 收藏

学习知识要善于思考,思考,再思考!今天golang学习网小编就给大家带来《上传 Blob 时可以设置访问层吗?如果是,那么该怎么做呢?》,以下内容主要包含等知识点,如果你正在学习或准备学习Golang,就都不要错过本文啦~让我们一起来看看吧,能帮助到你就更好了!

问题内容

我上传时没有找到任何方法来设置 blob 的访问层,我知道我可以在上传 blob 后设置 blob 的访问层,但我只想知道是否可以上传 blob 并设置只需一步即可实现访问层。如果有任何 golang api 可以做到这一点?

我用谷歌搜索了它,但到目前为止我没有得到任何帮助。

这就是我现在所做的,我的意思是上传它,然后设置它的访问层。

// Here's how to upload a blob.
blobURL := containerURL.NewBlockBlobURL(fileName)
ctx := context.Background()
_, err = azblob.UploadBufferToBlockBlob(ctx, data, blobURL, azblob.UploadToBlockBlobOptions{})
handleErrors(err)

//set tier
_, err = blobURL.SetTier(ctx, azblob.AccessTierCool, azblob.LeaseAccessConditions{})
handleErrors(err)

但我想上传一个 blob 并一步设置它的层,而不是像现在这样需要两步。


解决方案


简短的答案是否定的。根据官方的 rest api 参考,您想要的 blob 操作是通过两个 rest api Put BlobSet Blob Tier 来完成。实际上,所有不同语言的 sdk api 都是通过包装相关的 rest api 来实现的.

除了 page blob 之外,您可以在操作请求中设置标头 x-ms-access-tier 来实现您的需求,如下所示。

对于 block blob,两步操作是必要的,并且不能合并。

现在可以使用新的 x-ms-access-tier 标头:

x-ms-access-tier

REST API with auth

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Net.Mime;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;

namespace WhateverYourNameSpaceIs
{
    class Program
    {
        private const string StorageKey = @"PutYourStorageKeyHere";
        private const string StorageAccount = "PutYourStorageAccountHere";
        private const string ContainerName = "PutYourContainerNameHere";
        private const string Method = "PUT";
        private const string ContentType = MediaTypeNames.Image.Jpeg;
        private static readonly string BlobStorageTier = StorageTier.Cool;
        private static readonly List> HttpContentHeaders = new List>()
        {
            new Tuple("x-ms-access-tier", BlobStorageTier),
            new Tuple("x-ms-blob-type", "BlockBlob"),
            new Tuple("x-ms-date", DateTime.UtcNow.ToString("R")),
            new Tuple("x-ms-version", "2018-11-09"),
            new Tuple("Content-Type", ContentType),
        };
        static async Task Main()
        {
            await UploadBlobToAzure("DestinationFileNameWithoutPath", "LocalFileNameWithPath");
        }
        static async Task UploadBlobToAzure(string blobName, string fileName)
        {
            int returnValue = (int)AzureCopyStatus.Unknown;
            try
            {
                using var client = new HttpClient();
                using var content = new ByteArrayContent(File.ReadAllBytes(fileName));
                HttpContentHeaders.ForEach(x => content.Headers.Add(x.Item1, x.Item2));
                var stringToSign = $"{Method}\n\n\n{content.Headers.ContentLength.Value}\n\n{ContentType}\n\n\n\n\n\n\n";
                foreach (var httpContentHeader in HttpContentHeaders.Where(x => x.Item1 != "Content-Type").OrderBy(x => x.Item1))
                    stringToSign += $"{httpContentHeader.Item1.ToLower()}:{httpContentHeader.Item2}\n";
                stringToSign += $"/{StorageAccount}/{ContainerName}/{blobName}";
                HMACSHA256 hmac = new HMACSHA256(Convert.FromBase64String(StorageKey));
                string signature = Convert.ToBase64String(hmac.ComputeHash(Encoding.UTF8.GetBytes(stringToSign)));
                client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("SharedKey", $"{StorageAccount}:{signature}");
                var httpResponse = await client.PutAsync($"https://{StorageAccount}.blob.core.windows.net/{ContainerName}/{blobName}", content);
                returnValue = (int)httpResponse.StatusCode;
            }
            catch (IOException ioException)
            {
                Console.WriteLine(ioException.ToString());
                returnValue = (int)AzureCopyStatus.FileNotFound;
            }
            catch (Exception exception)
            {
                Console.WriteLine(exception.ToString());
                returnValue = (int)AzureCopyStatus.Error;
            }
            return returnValue;
        }
        internal enum AzureCopyStatus
        {
            Unknown = -1,
            Error = 0,
            FileNotFound = 2
        }
        internal static class StorageTier
        {
            internal static string Cool = "Cool";
            internal static string Hot = "Hot";
        }
    }
}

今天关于《上传 Blob 时可以设置访问层吗?如果是,那么该怎么做呢?》的内容就介绍到这里了,是不是学起来一目了然!想要了解更多关于的内容请关注golang学习网公众号!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>