Compare commits
12 Commits
feature/im
...
351cc28181
| Author | SHA1 | Date | |
|---|---|---|---|
| 351cc28181 | |||
| 4e6bf79656 | |||
| 73b909f780 | |||
| 7b326051bb | |||
| ff24c06934 | |||
| 31b26399a9 | |||
|
|
5935e87704 | ||
| 73f9d8550f | |||
| 626105cf0c | |||
| eda79010ce | |||
|
|
852560d0e2 | ||
|
|
4103c4da8d |
@@ -7,7 +7,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Core.Blueprint.KeyVault", "
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core.Blueprint.Mongo", "Core.Blueprint.Mongo\Core.Blueprint.Mongo.csproj", "{27A8E3E1-D613-4D5B-8105-485699409F1E}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core.Blueprint.Mongo", "Core.Blueprint.Mongo\Core.Blueprint.Mongo.csproj", "{27A8E3E1-D613-4D5B-8105-485699409F1E}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core.Blueprint.Caching", "Core.Blueprint.Redis\Core.Blueprint.Caching.csproj", "{11F2AA11-FB98-4A33-AEE4-CD49588D2FE1}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core.Blueprint.Redis", "Core.Blueprint.Redis\Core.Blueprint.Redis.csproj", "{11F2AA11-FB98-4A33-AEE4-CD49588D2FE1}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core.Blueprint.Storage", "Core.Blueprint.Storage\Core.Blueprint.Storage.csproj", "{636E4520-79F9-46C8-990D-08F2D24A151C}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core.Blueprint.Storage", "Core.Blueprint.Storage\Core.Blueprint.Storage.csproj", "{636E4520-79F9-46C8-990D-08F2D24A151C}"
|
||||||
EndProject
|
EndProject
|
||||||
|
|||||||
@@ -13,6 +13,8 @@ namespace Core.Blueprint.Logging
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public static class MimeTypes
|
public static class MimeTypes
|
||||||
{
|
{
|
||||||
|
public const string ApplicationVersion = "1.0";
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The service application/json mime type.
|
/// The service application/json mime type.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ using Microsoft.Extensions.Configuration;
|
|||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Microsoft.Extensions.Options;
|
using Microsoft.Extensions.Options;
|
||||||
using MongoDB.Driver;
|
using MongoDB.Driver;
|
||||||
|
using static MongoDB.Driver.WriteConcern;
|
||||||
|
|
||||||
namespace Core.Blueprint.DAL.Mongo.Configuration
|
namespace Core.Blueprint.DAL.Mongo.Configuration
|
||||||
{
|
{
|
||||||
@@ -23,42 +24,50 @@ namespace Core.Blueprint.DAL.Mongo.Configuration
|
|||||||
public static IServiceCollection AddMongoLayer(this IServiceCollection services, IConfiguration configuration)
|
public static IServiceCollection AddMongoLayer(this IServiceCollection services, IConfiguration configuration)
|
||||||
{
|
{
|
||||||
var environment = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT") ?? string.Empty;
|
var environment = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT") ?? string.Empty;
|
||||||
|
|
||||||
services.AddSingleton<IMongoContext, MongoContext>();
|
services.AddSingleton<IMongoContext, MongoContext>();
|
||||||
|
string ConnectionString = configuration.GetSection("ConnectionStrings:MongoDB").Value ?? string.Empty;
|
||||||
|
string Databasename = configuration.GetSection("MongoDb:DatabaseName").Value ?? string.Empty;
|
||||||
|
string Audience = string.Empty;
|
||||||
|
|
||||||
var ConnectionString = configuration.GetSection("ConnectionStrings:MongoDB").Value ?? string.Empty;
|
if (!environment.Equals("Local", StringComparison.OrdinalIgnoreCase))
|
||||||
var Databasename = configuration.GetSection("MongoDb:DatabaseName").Value ?? string.Empty;
|
{
|
||||||
var Audience = (environment == "Local")
|
Audience = configuration.GetSection("MongoDb:Audience").Value ?? string.Empty;
|
||||||
? configuration.GetSection("MongoDb:LocalAudience").Value
|
}
|
||||||
: configuration.GetSection("MongoDb:Audience").Value;
|
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(ConnectionString) || string.IsNullOrEmpty(Databasename) || string.IsNullOrEmpty(Audience))
|
if (string.IsNullOrEmpty(ConnectionString) || string.IsNullOrEmpty(Databasename))
|
||||||
|
{
|
||||||
throw new InvalidOperationException("Mongo connection is not configured correctly.");
|
throw new InvalidOperationException("Mongo connection is not configured correctly.");
|
||||||
|
}
|
||||||
|
|
||||||
services.Configure<MongoDbSettings>(options =>
|
services.Configure(delegate (MongoDbSettings options)
|
||||||
{
|
{
|
||||||
options.ConnectionString = ConnectionString;
|
options.ConnectionString = ConnectionString;
|
||||||
options.Databasename = Databasename;
|
options.Databasename = Databasename;
|
||||||
options.Audience = Audience;
|
|
||||||
});
|
|
||||||
|
|
||||||
services.AddSingleton<IMongoClient>(serviceProvider =>
|
if (!environment.Equals("Local", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
options.Audience = Audience;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
services.AddSingleton((Func<IServiceProvider, IMongoClient>)delegate (IServiceProvider serviceProvider)
|
||||||
{
|
{
|
||||||
var settings = serviceProvider.GetRequiredService<IOptions<MongoDbSettings>>().Value;
|
MongoDbSettings value2 = serviceProvider.GetRequiredService<IOptions<MongoDbSettings>>().Value;
|
||||||
var mongoClientSettings = MongoClientSettings.FromConnectionString(settings.ConnectionString);
|
MongoClientSettings mongoClientSettings = MongoClientSettings.FromConnectionString(value2.ConnectionString);
|
||||||
mongoClientSettings.Credential = MongoCredential.CreateOidcCredential(new AzureIdentityProvider(settings.Audience));
|
|
||||||
|
if (!environment.Equals("Local", StringComparison.OrdinalIgnoreCase))
|
||||||
|
{
|
||||||
|
mongoClientSettings.Credential = MongoCredential.CreateOidcCredential(new AzureIdentityProvider(value2.Audience));
|
||||||
|
}
|
||||||
|
|
||||||
return new MongoClient(mongoClientSettings);
|
return new MongoClient(mongoClientSettings);
|
||||||
});
|
});
|
||||||
|
services.AddSingleton(delegate (IServiceProvider serviceProvider)
|
||||||
services.AddSingleton<IMongoDatabase>(serviceProvider =>
|
|
||||||
{
|
{
|
||||||
var settings = serviceProvider.GetRequiredService<IOptions<MongoDbSettings>>().Value;
|
MongoDbSettings value = serviceProvider.GetRequiredService<IOptions<MongoDbSettings>>().Value;
|
||||||
var client = serviceProvider.GetRequiredService<IMongoClient>();
|
return serviceProvider.GetRequiredService<IMongoClient>().GetDatabase(value.Databasename);
|
||||||
return client.GetDatabase(settings.Databasename);
|
|
||||||
});
|
});
|
||||||
|
services.AddSingleton((Func<IServiceProvider, IMongoDbSettings>)((IServiceProvider serviceProvider) => serviceProvider.GetRequiredService<IOptions<MongoDbSettings>>().Value));
|
||||||
services.AddSingleton<IMongoDbSettings>(serviceProvider => serviceProvider.GetRequiredService<IOptions<MongoDbSettings>>().Value);
|
|
||||||
|
|
||||||
return services;
|
return services;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
12
Core.Blueprint.Mongo/nuget.config
Normal file
12
Core.Blueprint.Mongo/nuget.config
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<add key="Gitea" value="https://gitea.white-enciso.pro/api/packages/AgileWebs/nuget" />
|
||||||
|
</packageSources>
|
||||||
|
<packageSourceCredentials>
|
||||||
|
<Gitea>
|
||||||
|
<Username>oscarmmtz</Username>
|
||||||
|
<ClearTextPassword>544831e1ceaf52958e02c5de4d23cbde9e7a860a</ClearTextPassword>
|
||||||
|
</Gitea>
|
||||||
|
</packageSourceCredentials>
|
||||||
|
</configuration>
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace Core.Blueprint.Caching.Adapters
|
namespace Core.Blueprint.Redis
|
||||||
{
|
{
|
||||||
public interface ICacheSettings
|
public interface ICacheSettings
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,10 +1,8 @@
|
|||||||
using Core.Blueprint.Caching.Adapters;
|
using Microsoft.Extensions.Configuration;
|
||||||
using Core.Blueprint.Caching.Contracts;
|
|
||||||
using Microsoft.Extensions.Configuration;
|
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
|
|
||||||
namespace Core.Blueprint.Caching.Configuration
|
namespace Core.Blueprint.Redis.Configuration
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Provides extension methods for registering Redis-related services in the DI container.
|
/// Provides extension methods for registering Redis-related services in the DI container.
|
||||||
@@ -19,32 +17,23 @@ namespace Core.Blueprint.Caching.Configuration
|
|||||||
/// <returns>The updated service collection.</returns>
|
/// <returns>The updated service collection.</returns>
|
||||||
public static IServiceCollection AddRedis(this IServiceCollection services, IConfiguration configuration)
|
public static IServiceCollection AddRedis(this IServiceCollection services, IConfiguration configuration)
|
||||||
{
|
{
|
||||||
// TODO for the following variable we'll need to add in the appsettings.json the following config: "UseRedisCache": true,
|
// Retrieve the Redis connection string from the configuration.
|
||||||
bool useRedis = configuration.GetValue<bool>("UseRedisCache");
|
// Get Redis configuration section
|
||||||
//TODO decide wheter to use appsettings or the following ENV variable
|
var redisConnectionString = configuration.GetSection("ConnectionStrings:Redis").Value;
|
||||||
useRedis = Environment.GetEnvironmentVariable("CORE_BLUEPRINT_PACKAGES_USE_REDIS")?.ToLower() == "true";
|
if (string.IsNullOrEmpty(redisConnectionString))
|
||||||
|
|
||||||
if (useRedis)
|
|
||||||
{
|
{
|
||||||
var redisConnectionString = configuration.GetSection("ConnectionStrings:Redis").Value;
|
throw new InvalidOperationException("Redis connection is not configured.");
|
||||||
if (string.IsNullOrEmpty(redisConnectionString))
|
|
||||||
{
|
|
||||||
throw new InvalidOperationException("Redis connection is not configured.");
|
|
||||||
}
|
|
||||||
|
|
||||||
services.AddSingleton<ICacheProvider>(provider =>
|
|
||||||
new RedisCacheProvider(redisConnectionString, provider.GetRequiredService<ILogger<RedisCacheProvider>>()));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
services.AddMemoryCache();
|
|
||||||
services.AddSingleton<ICacheProvider, MemoryCacheProvider>();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Register RedisCacheProvider
|
||||||
|
services.AddSingleton<IRedisCacheProvider>(provider =>
|
||||||
|
new RedisCacheProvider(redisConnectionString, provider.GetRequiredService<ILogger<RedisCacheProvider>>()));
|
||||||
|
|
||||||
|
// Get CacheSettings and register with the ICacheSettings interface
|
||||||
var cacheSettings = configuration.GetSection("CacheSettings").Get<CacheSettings>();
|
var cacheSettings = configuration.GetSection("CacheSettings").Get<CacheSettings>();
|
||||||
if (cacheSettings == null)
|
if (cacheSettings == null)
|
||||||
{
|
{
|
||||||
throw new InvalidOperationException("CacheSettings section is not configured.");
|
throw new InvalidOperationException("Redis CacheSettings section is not configured.");
|
||||||
}
|
}
|
||||||
services.AddSingleton<ICacheSettings>(cacheSettings);
|
services.AddSingleton<ICacheSettings>(cacheSettings);
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
namespace Core.Blueprint.Caching.Contracts
|
namespace Core.Blueprint.Redis
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Interface for managing Redis cache operations.
|
/// Interface for managing Redis cache operations.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface ICacheProvider
|
public interface IRedisCacheProvider
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves a cache item by its key.
|
/// Retrieves a cache item by its key.
|
||||||
@@ -4,11 +4,11 @@
|
|||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
<PackageId>Core.Blueprint.Redis</PackageId>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Azure.StackExchangeRedis" Version="3.2.1" />
|
<PackageReference Include="Microsoft.Azure.StackExchangeRedis" Version="3.2.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.5" />
|
|
||||||
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.5" />
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.5" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.5" />
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.5" />
|
||||||
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.5" />
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.5" />
|
||||||
@@ -1,7 +1,11 @@
|
|||||||
using System.Text;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Core.Blueprint.Caching.Helpers
|
namespace Core.Blueprint.Redis.Helpers
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Helper class for generating consistent and normalized cache keys.
|
/// Helper class for generating consistent and normalized cache keys.
|
||||||
|
|||||||
@@ -1,86 +0,0 @@
|
|||||||
using Core.Blueprint.Caching.Contracts;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
using Microsoft.Extensions.Caching.Memory;
|
|
||||||
using System.Text.Json;
|
|
||||||
|
|
||||||
namespace Core.Blueprint.Caching
|
|
||||||
{
|
|
||||||
public sealed class MemoryCacheProvider : ICacheProvider
|
|
||||||
{
|
|
||||||
private readonly IMemoryCache _cache;
|
|
||||||
private readonly ILogger<MemoryCacheProvider> _logger;
|
|
||||||
public MemoryCacheProvider(IMemoryCache cache, ILogger<MemoryCacheProvider> logger)
|
|
||||||
{
|
|
||||||
_cache = cache;
|
|
||||||
_logger = logger;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ValueTask<TEntity> GetAsync<TEntity>(string key)
|
|
||||||
{
|
|
||||||
if (_cache.TryGetValue(key, out var value))
|
|
||||||
{
|
|
||||||
if (value is TEntity typedValue)
|
|
||||||
{
|
|
||||||
return ValueTask.FromResult(typedValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var json = value?.ToString();
|
|
||||||
var deserialized = JsonSerializer.Deserialize<TEntity>(json);
|
|
||||||
return ValueTask.FromResult(deserialized);
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
_logger.LogWarning(ex, "Error deserializing cache value for key {Key}", key);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return ValueTask.FromResult(default(TEntity));
|
|
||||||
}
|
|
||||||
|
|
||||||
public ValueTask SetAsync<TEntity>(string key, TEntity value, TimeSpan? expiry = null)
|
|
||||||
{
|
|
||||||
var options = new MemoryCacheEntryOptions();
|
|
||||||
if (expiry.HasValue)
|
|
||||||
{
|
|
||||||
options.SetAbsoluteExpiration(expiry.Value);
|
|
||||||
}
|
|
||||||
|
|
||||||
_cache.Set(key, value, options);
|
|
||||||
return ValueTask.CompletedTask;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ValueTask RemoveAsync(string key)
|
|
||||||
{
|
|
||||||
_cache.Remove(key);
|
|
||||||
return ValueTask.CompletedTask;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ValueTask<bool> ExistsAsync(string key)
|
|
||||||
{
|
|
||||||
return ValueTask.FromResult(_cache.TryGetValue(key, out _));
|
|
||||||
}
|
|
||||||
|
|
||||||
public ValueTask RefreshAsync(string key, TimeSpan? expiry = null)
|
|
||||||
{
|
|
||||||
// MemoryCache does not support sliding expiration refresh like Redis,
|
|
||||||
// so we must re-set the value manually if required.
|
|
||||||
|
|
||||||
if (_cache.TryGetValue(key, out var value))
|
|
||||||
{
|
|
||||||
_cache.Remove(key);
|
|
||||||
|
|
||||||
var options = new MemoryCacheEntryOptions();
|
|
||||||
if (expiry.HasValue)
|
|
||||||
{
|
|
||||||
options.SetAbsoluteExpiration(expiry.Value);
|
|
||||||
}
|
|
||||||
|
|
||||||
_cache.Set(key, value, options);
|
|
||||||
}
|
|
||||||
|
|
||||||
return ValueTask.CompletedTask;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,15 +1,14 @@
|
|||||||
using Azure.Identity;
|
using Azure.Identity;
|
||||||
using Core.Blueprint.Caching.Contracts;
|
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using StackExchange.Redis;
|
using StackExchange.Redis;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace Core.Blueprint.Caching
|
namespace Core.Blueprint.Redis
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Redis cache provider for managing cache operations.
|
/// Redis cache provider for managing cache operations.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public sealed class RedisCacheProvider : ICacheProvider
|
public sealed class RedisCacheProvider : IRedisCacheProvider
|
||||||
{
|
{
|
||||||
private IDatabase _cacheDatabase = null!;
|
private IDatabase _cacheDatabase = null!;
|
||||||
private readonly ILogger<RedisCacheProvider> _logger;
|
private readonly ILogger<RedisCacheProvider> _logger;
|
||||||
|
|||||||
@@ -18,12 +18,17 @@ namespace Core.Blueprint.SQLServer.Configuration
|
|||||||
/// <returns>An updated <see cref="IServiceCollection"/> with SQL Server services registered.</returns>
|
/// <returns>An updated <see cref="IServiceCollection"/> with SQL Server services registered.</returns>
|
||||||
public static IServiceCollection AddSQLServer(this IServiceCollection services, IConfiguration configuration)
|
public static IServiceCollection AddSQLServer(this IServiceCollection services, IConfiguration configuration)
|
||||||
{
|
{
|
||||||
var chainedCredentials = new ChainedTokenCredential(
|
var environment = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT") ?? string.Empty;
|
||||||
|
|
||||||
|
if (environment != "Local")
|
||||||
|
{
|
||||||
|
var chainedCredentials = new ChainedTokenCredential(
|
||||||
new ManagedIdentityCredential(),
|
new ManagedIdentityCredential(),
|
||||||
new SharedTokenCacheCredential(),
|
new SharedTokenCacheCredential(),
|
||||||
new VisualStudioCredential(),
|
new VisualStudioCredential(),
|
||||||
new VisualStudioCodeCredential()
|
new VisualStudioCodeCredential()
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
services.AddScoped(typeof(IEntityRepository<,>), typeof(EntityRepository<,>));
|
services.AddScoped(typeof(IEntityRepository<,>), typeof(EntityRepository<,>));
|
||||||
|
|
||||||
|
|||||||
@@ -11,23 +11,37 @@ namespace Core.Blueprint.Storage.Configuration
|
|||||||
{
|
{
|
||||||
public static IServiceCollection AddBlobStorage(this IServiceCollection services, IConfiguration configuration)
|
public static IServiceCollection AddBlobStorage(this IServiceCollection services, IConfiguration configuration)
|
||||||
{
|
{
|
||||||
|
|
||||||
var blobConnection = configuration.GetConnectionString("BlobStorage");
|
var blobConnection = configuration.GetConnectionString("BlobStorage");
|
||||||
|
|
||||||
if (blobConnection == null || string.IsNullOrWhiteSpace(blobConnection))
|
if (string.IsNullOrWhiteSpace(blobConnection))
|
||||||
{
|
|
||||||
throw new ArgumentException("The BlobStorage configuration section is missing or empty.");
|
throw new ArgumentException("The BlobStorage configuration section is missing or empty.");
|
||||||
}
|
|
||||||
|
|
||||||
var chainedCredentials = new ChainedTokenCredential(
|
var environment = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT") ?? string.Empty;
|
||||||
new ManagedIdentityCredential(),
|
|
||||||
new SharedTokenCacheCredential(),
|
|
||||||
new VisualStudioCredential(),
|
|
||||||
new VisualStudioCodeCredential()
|
|
||||||
);
|
|
||||||
services.AddAzureClients(cfg =>
|
services.AddAzureClients(cfg =>
|
||||||
{
|
{
|
||||||
cfg.AddBlobServiceClient(new Uri(blobConnection)).WithCredential(chainedCredentials);
|
if (environment == "Local")
|
||||||
|
{
|
||||||
|
var accountKey = configuration.GetSection("BlobStorage:AccountKey").Value;
|
||||||
|
var accountName = configuration.GetSection("BlobStorage:AccountName").Value;
|
||||||
|
|
||||||
|
if(string.IsNullOrEmpty(accountKey) && string.IsNullOrEmpty(accountName))
|
||||||
|
throw new ArgumentException("The BlobStorage configuration section is missing or empty.");
|
||||||
|
|
||||||
|
cfg.AddBlobServiceClient(configuration.GetConnectionString("BlobStorage"));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var chainedCredentials = new ChainedTokenCredential(
|
||||||
|
new ManagedIdentityCredential(),
|
||||||
|
new SharedTokenCacheCredential(),
|
||||||
|
new VisualStudioCredential(),
|
||||||
|
new VisualStudioCodeCredential()
|
||||||
|
);
|
||||||
|
|
||||||
|
cfg.AddBlobServiceClient(new Uri(blobConnection))
|
||||||
|
.WithCredential(chainedCredentials);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
services.AddScoped<IBlobStorageProvider, BlobStorageProvider>();
|
services.AddScoped<IBlobStorageProvider, BlobStorageProvider>();
|
||||||
|
|||||||
@@ -162,7 +162,7 @@ namespace Core.Blueprint.Storage.Contracts
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <exception cref="ArgumentNullException">Thrown if <paramref name="blobName"/> is null or empty.</exception>
|
/// <exception cref="ArgumentNullException">Thrown if <paramref name="blobName"/> is null or empty.</exception>
|
||||||
/// <exception cref="StorageException">Thrown if there is an issue communicating with the Azure Blob service.</exception>
|
/// <exception cref="StorageException">Thrown if there is an issue communicating with the Azure Blob service.</exception>
|
||||||
BlobDownloadUriAdapter GenerateBlobDownloadUri(string blobName);
|
ValueTask<BlobDownloadUriAdapter?> GenerateBlobDownloadUri(string blobName);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves the hierarchical folder structure.
|
/// Retrieves the hierarchical folder structure.
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
using Azure;
|
using Azure;
|
||||||
|
using Azure.Storage;
|
||||||
using Azure.Storage.Blobs;
|
using Azure.Storage.Blobs;
|
||||||
using Azure.Storage.Blobs.Models;
|
using Azure.Storage.Blobs.Models;
|
||||||
using Azure.Storage.Blobs.Specialized;
|
using Azure.Storage.Blobs.Specialized;
|
||||||
@@ -6,6 +7,7 @@ using Azure.Storage.Sas;
|
|||||||
using Core.Blueprint.Storage.Adapters;
|
using Core.Blueprint.Storage.Adapters;
|
||||||
using Core.Blueprint.Storage.Contracts;
|
using Core.Blueprint.Storage.Contracts;
|
||||||
using Microsoft.Extensions.Configuration;
|
using Microsoft.Extensions.Configuration;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Core.Blueprint.Storage.Provider
|
namespace Core.Blueprint.Storage.Provider
|
||||||
{
|
{
|
||||||
@@ -15,10 +17,12 @@ namespace Core.Blueprint.Storage.Provider
|
|||||||
private readonly BlobContainerClient _blobContainerClient;
|
private readonly BlobContainerClient _blobContainerClient;
|
||||||
private readonly string _containerName;
|
private readonly string _containerName;
|
||||||
private readonly Trie _trie = new Trie();
|
private readonly Trie _trie = new Trie();
|
||||||
|
private readonly IConfiguration _configuration;
|
||||||
|
|
||||||
public BlobStorageProvider(BlobServiceClient blobServiceClient, IConfiguration configuration)
|
public BlobStorageProvider(BlobServiceClient blobServiceClient, IConfiguration configuration)
|
||||||
{
|
{
|
||||||
_blobServiceClient = blobServiceClient;
|
_blobServiceClient = blobServiceClient;
|
||||||
|
_configuration = configuration;
|
||||||
_containerName = configuration.GetSection("BlobStorage:ContainerName").Value ?? "";
|
_containerName = configuration.GetSection("BlobStorage:ContainerName").Value ?? "";
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(_containerName))
|
if (string.IsNullOrEmpty(_containerName))
|
||||||
@@ -278,7 +282,8 @@ namespace Core.Blueprint.Storage.Provider
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="blobName">The name of the blob for which the download URI is being generated.</param>
|
/// <param name="blobName">The name of the blob for which the download URI is being generated.</param>
|
||||||
/// <returns>
|
/// <returns>
|
||||||
/// An instance of <see cref="BlobDownloadUriAdapter"/> containing the generated URI, blob name, and status.
|
/// An instance of <see cref="BlobDownloadUriAdapter"/> containing the generated URI, blob name, and status,
|
||||||
|
/// or <c>null</c> if the blob does not exist.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// The generated URI includes a Shared Access Signature (SAS) token, which allows secure, time-limited access to the blob.
|
/// The generated URI includes a Shared Access Signature (SAS) token, which allows secure, time-limited access to the blob.
|
||||||
@@ -286,22 +291,36 @@ namespace Core.Blueprint.Storage.Provider
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <exception cref="ArgumentNullException">Thrown if <paramref name="blobName"/> is null or empty.</exception>
|
/// <exception cref="ArgumentNullException">Thrown if <paramref name="blobName"/> is null or empty.</exception>
|
||||||
/// <exception cref="StorageException">Thrown if there is an issue communicating with the Azure Blob service.</exception>
|
/// <exception cref="StorageException">Thrown if there is an issue communicating with the Azure Blob service.</exception>
|
||||||
public BlobDownloadUriAdapter GenerateBlobDownloadUri(string blobName)
|
public async ValueTask<BlobDownloadUriAdapter?> GenerateBlobDownloadUri(string blobName)
|
||||||
{
|
{
|
||||||
var delegationKey = _blobServiceClient.GetUserDelegationKey(DateTimeOffset.UtcNow,
|
if (string.IsNullOrWhiteSpace(blobName))
|
||||||
DateTimeOffset.UtcNow.AddHours(2));
|
throw new ArgumentNullException(nameof(blobName), "Blob name cannot be null or empty.");
|
||||||
|
|
||||||
var blob = _blobContainerClient.GetBlobClient(blobName);
|
var blob = _blobContainerClient.GetBlobClient(blobName);
|
||||||
|
|
||||||
var sasBuilder = new BlobSasBuilder()
|
if (!await blob.ExistsAsync())
|
||||||
|
return null;
|
||||||
|
|
||||||
|
var environment = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT") ?? string.Empty;
|
||||||
|
|
||||||
|
if (environment == "Local")
|
||||||
|
{
|
||||||
|
return GenerateDownloadUri(blob);
|
||||||
|
}
|
||||||
|
|
||||||
|
var delegationKey = await _blobServiceClient.GetUserDelegationKeyAsync(
|
||||||
|
DateTimeOffset.UtcNow,
|
||||||
|
DateTimeOffset.UtcNow.AddHours(2));
|
||||||
|
|
||||||
|
var sasBuilder = new BlobSasBuilder
|
||||||
{
|
{
|
||||||
BlobContainerName = blob.BlobContainerName,
|
BlobContainerName = blob.BlobContainerName,
|
||||||
BlobName = blob.Name,
|
BlobName = blob.Name,
|
||||||
Resource = "b",
|
Resource = "b",
|
||||||
StartsOn = DateTimeOffset.UtcNow,
|
StartsOn = DateTimeOffset.UtcNow,
|
||||||
ExpiresOn = DateTimeOffset.UtcNow.AddMinutes(5),
|
ExpiresOn = DateTimeOffset.UtcNow.AddMinutes(5)
|
||||||
};
|
};
|
||||||
sasBuilder.SetPermissions(BlobAccountSasPermissions.Read);
|
sasBuilder.SetPermissions(BlobSasPermissions.Read);
|
||||||
sasBuilder.Protocol = SasProtocol.Https;
|
sasBuilder.Protocol = SasProtocol.Https;
|
||||||
|
|
||||||
var blobUriBuilder = new BlobUriBuilder(blob.Uri)
|
var blobUriBuilder = new BlobUriBuilder(blob.Uri)
|
||||||
@@ -317,6 +336,45 @@ namespace Core.Blueprint.Storage.Provider
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Generates a download URI for a blob using a Shared Access Signature in local (Azurite) environment.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="blob">The blob client for which the URI is being generated.</param>
|
||||||
|
/// <returns>An instance of <see cref="BlobDownloadUriAdapter"/> containing the SAS URI and metadata.</returns>
|
||||||
|
private BlobDownloadUriAdapter GenerateDownloadUri(BlobClient blob)
|
||||||
|
{
|
||||||
|
var sasBuilder = new BlobSasBuilder
|
||||||
|
{
|
||||||
|
BlobContainerName = blob.BlobContainerName,
|
||||||
|
BlobName = blob.Name,
|
||||||
|
Resource = "b",
|
||||||
|
StartsOn = DateTimeOffset.UtcNow,
|
||||||
|
ExpiresOn = DateTimeOffset.UtcNow.AddMinutes(5)
|
||||||
|
};
|
||||||
|
sasBuilder.SetPermissions(BlobSasPermissions.Read);
|
||||||
|
sasBuilder.Protocol = SasProtocol.HttpsAndHttp;
|
||||||
|
|
||||||
|
var accountName = _configuration["BlobStorage:AccountName"];
|
||||||
|
var accountKey = _configuration["BlobStorage:AccountKey"];
|
||||||
|
|
||||||
|
var storageCredentials = new StorageSharedKeyCredential(accountName, accountKey);
|
||||||
|
var sasToken = sasBuilder.ToSasQueryParameters(storageCredentials);
|
||||||
|
|
||||||
|
var blobUriBuilder = new BlobUriBuilder(blob.Uri)
|
||||||
|
{
|
||||||
|
Sas = sasToken
|
||||||
|
};
|
||||||
|
|
||||||
|
return new BlobDownloadUriAdapter
|
||||||
|
{
|
||||||
|
Uri = blobUriBuilder.ToUri(),
|
||||||
|
Name = blob.Name,
|
||||||
|
Status = "Available"
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves the hierarchical folder structure.
|
/// Retrieves the hierarchical folder structure.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user