mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-04 09:58:13 +01:00
51 lines
2 KiB
C#
51 lines
2 KiB
C#
|
using System.IO;
|
||
|
using BTCPayServer.Configuration;
|
||
|
using BTCPayServer.Storage.Services;
|
||
|
using BTCPayServer.Storage.Services.Providers;
|
||
|
using BTCPayServer.Storage.Services.Providers.AmazonS3Storage;
|
||
|
using BTCPayServer.Storage.Services.Providers.AzureBlobStorage;
|
||
|
using BTCPayServer.Storage.Services.Providers.FileSystemStorage;
|
||
|
using BTCPayServer.Storage.Services.Providers.GoogleCloudStorage;
|
||
|
using Microsoft.AspNetCore.Builder;
|
||
|
using Microsoft.AspNetCore.Http;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using Microsoft.Extensions.FileProviders;
|
||
|
|
||
|
namespace BTCPayServer.Storage
|
||
|
{
|
||
|
public static class StorageExtensions
|
||
|
{
|
||
|
public static void AddProviderStorage(this IServiceCollection serviceCollection)
|
||
|
{
|
||
|
serviceCollection.AddSingleton<StoredFileRepository>();
|
||
|
serviceCollection.AddSingleton<FileService>();
|
||
|
// serviceCollection.AddSingleton<IStorageProviderService, AmazonS3FileProviderService>();
|
||
|
serviceCollection.AddSingleton<IStorageProviderService, AzureBlobStorageFileProviderService>();
|
||
|
serviceCollection.AddSingleton<IStorageProviderService, FileSystemFileProviderService>();
|
||
|
// serviceCollection.AddSingleton<IStorageProviderService, GoogleCloudStorageFileProviderService>();
|
||
|
}
|
||
|
|
||
|
public static void UseProviderStorage(this IApplicationBuilder builder, BTCPayServerOptions options)
|
||
|
{
|
||
|
var dir = FileSystemFileProviderService.GetStorageDir(options);
|
||
|
|
||
|
DirectoryInfo dirInfo;
|
||
|
if (!Directory.Exists(dir))
|
||
|
{
|
||
|
dirInfo = Directory.CreateDirectory(dir);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
dirInfo = new DirectoryInfo(dir);
|
||
|
}
|
||
|
|
||
|
builder.UseStaticFiles(new StaticFileOptions()
|
||
|
{
|
||
|
ServeUnknownFileTypes = true,
|
||
|
RequestPath = new PathString($"/{FileSystemFileProviderService.LocalStorageDirectoryName}"),
|
||
|
FileProvider = new PhysicalFileProvider(dirInfo.FullName)
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}
|