#20|20 Storage
20|20 Storage uses the least common denominator of functionality between the supported providers to build a cross-cloud storage solution.
Currently supported providers are:
- Azure Blob Storage
- Amazon S3
- Google Cloud Storage
- Local File System Storage (Signed URL and Update Properties not implemented)
Featured on .NET Rocks! Show 1277
IStorageProvider provider = new AmazonStorageProvider(new AmazonProviderOptions
{
Bucket = "mybucketname",
PublicKey = "mypublickey",
SecretKey = "mysecretkey"
});
(See next section for adding provider accounts)
// Defualt blob properties can also be passed as an additional parameter
await _provider.SaveBlobStreamAsync(containerName, blobName, dataStream);
await _provider.UpdateBlobPropertiesAsync(containerName, blobName, new BlobProperties
{
ContentType = "application/json",
Security = BlobSecurity.Public
});
foreach (var blob in await _provider.ListBlobsAsync(containerName))
{
// Do something with the blobs
}
var descriptor = await _provider.GetBlobDescriptorAsync(containerName, blobName);
using (var blobStream = await _provider.GetBlobStreamAsync(containerName, blobName))
{
// Do something with the stream
}
var url = _provider.GetBlobUrl(containerName, blobName);
var readUrl = _provider.GetBlobSasUrl(containerName, blobName, DateTimeOffset.UtcNow.AddMinutes(5));
var url = _provider.GetBlobSasUrl(containerName, blobName, DateTimeOffset.UtcNow.AddMinutes(5), isDownload: true, "myfilename.txt", "text/plain");
var writeUrl = _provider.GetBlobSasUrl(containerName, blobName, DateTimeOffset.UtcNow.AddMinutes(5), access: BlobUrlAccess.Write);
var httpRequest = WebRequest.Create(writeUrl) as HttpWebRequest;
httpRequest.Method = "PUT";
using (var dataStream = httpRequest.GetRequestStream())
{
dataStream.Write(data.ToArray(), 0, (int)data.Length);
}
var response = httpRequest.GetResponse() as HttpWebResponse;
await _provider.DeleteContainerAsync(containerName);
await _provider.DeleteBlobAsync(containerName, blobName);
The libary, and the functional tests within it, depends on access to actual cloud storage provider accounts. Providing these configuration values can be done through environment variables or the user secret store.
The secret manager can be installed globally with:
dnu commands install Microsoft.Extensions.SecretManager
Secrets can be listed with:
cd test\TwentyTwenty.Storage.Azure.Test
user-secret list
cd test\TwentyTwenty.Storage.Azure.Test
user-secret set ConnectionString "my_really_long_connection_string"
cd test\TwentyTwenty.Storage.Amazon.Test
user-secret set PublicKey "my_public_key"
user-secret set PrivateKey "my_private_key"
user-secret set Bucket "my_bucket_name"
cd test\TwentyTwenty.Storage.Google.Test
user-secret set GoogleEmail "my_google_storage_api_email"
user-secret set GoogleBucket "my_google_bucket"
user-secret set GoogleP12PrivateKey "my_base64_encoded_byte_array_google_p12_key"
(To get the 'GoogleP12PrivateKey' get the byte array from the P12 certificate for your Google Cloud Storage API and base64 encode it)