StorageExtension.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using GxPress.Common.AppOptions;
  2. using GxPress.Common.Tools;
  3. using GxPress.Service.Implement;
  4. using GxPress.Service.Interface.Storage;
  5. using Microsoft.Extensions.DependencyInjection;
  6. using Minio;
  7. namespace GxPress.Api.ServiceExtensions
  8. {
  9. public static class StorageExtension
  10. {
  11. public static IServiceCollection AddStorage(this IServiceCollection services, StorageOptions options)
  12. {
  13. var isSettings = false;
  14. if (options.StorageType == "minio" && !string.IsNullOrEmpty(options.Endpoint))
  15. {
  16. isSettings = true;
  17. // Initialize the client with access credentials.
  18. var minio = new MinioClient(options.Endpoint,
  19. options.AccessKey,
  20. options.SecretKey
  21. );
  22. if (options.SSL){
  23. minio.WithSSL();
  24. }
  25. var minIOStorage = new MinIOStorage(minio);
  26. services.AddSingleton<IStorage>(minIOStorage);
  27. }
  28. if (!isSettings)
  29. {
  30. var fileStorage = new FileStorage();
  31. services.AddSingleton<IStorage>(fileStorage);
  32. }
  33. return services;
  34. }
  35. }
  36. }