web-dev-qa-db-ja.com

MVC3でのAzure Blobファイルのダウンロード

ASP.NET MVC 3アプリケーションはAzureで実行され、Blobをファイルストレージとして使用しています。アップロード部分を把握してもらいました。

ビューにはファイル名が表示され、クリックするとファイルのダウンロード画面が表示されます。

誰でもこれを行う方法を教えてもらえますか?

32
James

本当に2つのオプション...最初の方法は、ユーザーを直接BLOBにリダイレクトすることです(BLOBがパブリックコンテナーにある場合)。それは次のようになります:

return Redirect(container.GetBlobReference(name).Uri.AbsoluteUri);

Blobがプライベートコンテナーにある場合、共有アクセス署名を使用して前の例のようにリダイレクトを行うか、コントローラーアクションでblobを読み取り、ダウンロードとしてクライアントにプッシュします。

Response.AddHeader("Content-Disposition", "attachment; filename=" + name); // force download
container.GetBlobReference(name).DownloadToStream(Response.OutputStream);
return new EmptyResult();
60
smarx

アクションメソッドから応答ストリームに書き込むと、HTTPヘッダーがめちゃくちゃになることに気づきました。予想されるヘッダーの一部が欠落しており、その他のヘッダーが正しく設定されていません。

したがって、応答ストリームに書き込む代わりに、BLOBコンテンツをストリームとして取得し、それをController.File()メソッドに渡します。

CloudBlockBlob blob = container.GetBlockBlobReference(blobName);
Stream blobStream = blob.OpenRead();
return File(blobStream, blob.Properties.ContentType, "FileName.txt");
10
Bassem

次に、プライベートBLOBアクセスの再開可能なバージョン(大きなファイルやビデオまたはオーディオの再生でシークできる)を示します。

public class AzureBlobStream : ActionResult
{
    private string filename, containerName;

    public AzureBlobStream(string containerName, string filename)
    {
        this.containerName = containerName;
        this.filename = filename;
        this.contentType = contentType;
    }

    public override void ExecuteResult(ControllerContext context)
    {
        var response = context.HttpContext.Response;
        var request = context.HttpContext.Request;

        var connectionString = ConfigurationManager.ConnectionStrings["Storage"].ConnectionString;
        var account = CloudStorageAccount.Parse(connectionString);
        var client = account.CreateCloudBlobClient();
        var container = client.GetContainerReference(containerName);
        var blob = container.GetBlockBlobReference(filename);

        blob.FetchAttributes();
        var fileLength = blob.Properties.Length;
        var fileExists = fileLength > 0;
        var etag = blob.Properties.ETag;

        var responseLength = fileLength;
        var buffer = new byte[4096];
        var startIndex = 0;

        //if the "If-Match" exists and is different to etag (or is equal to any "*" with no resource) then return 412 precondition failed
        if (request.Headers["If-Match"] == "*" && !fileExists ||
            request.Headers["If-Match"] != null && request.Headers["If-Match"] != "*" && request.Headers["If-Match"] != etag)
        {
            response.StatusCode = (int)HttpStatusCode.PreconditionFailed;
            return;
        }

        if (!fileExists)
        {
            response.StatusCode = (int)HttpStatusCode.NotFound;
            return;
        }

        if (request.Headers["If-None-Match"] == etag)
        {
            response.StatusCode = (int)HttpStatusCode.NotModified;
            return;
        }

        if (request.Headers["Range"] != null && (request.Headers["If-Range"] == null || request.Headers["IF-Range"] == etag))
        {
            var match = Regex.Match(request.Headers["Range"], @"bytes=(\d*)-(\d*)");
            startIndex = Util.Parse<int>(match.Groups[1].Value);
            responseLength = (Util.Parse<int?>(match.Groups[2].Value) + 1 ?? fileLength) - startIndex;
            response.StatusCode = (int)HttpStatusCode.PartialContent;
            response.Headers["Content-Range"] = "bytes " + startIndex + "-" + (startIndex + responseLength - 1) + "/" + fileLength;
        }

        response.Headers["Accept-Ranges"] = "bytes";
        response.Headers["Content-Length"] = responseLength.ToString();
        response.Cache.SetCacheability(HttpCacheability.Public); //required for etag output
        response.Cache.SetETag(etag); //required for IE9 resumable downloads
        response.ContentType = blob.Properties.ContentType;

        blob.DownloadRangeToStream(response.OutputStream, startIndex, responseLength);
    }
}

例:

Response.AddHeader("Content-Disposition", "attachment; filename=" + filename); // force download
return new AzureBlobStream(blobContainerName, filename);
9
Michael