diff --git a/CoviDok/BLL/Storage/IStorageProvider.cs b/CoviDok/BLL/Storage/IStorageProvider.cs index d1b1a7c..4241463 100644 --- a/CoviDok/BLL/Storage/IStorageProvider.cs +++ b/CoviDok/BLL/Storage/IStorageProvider.cs @@ -13,5 +13,6 @@ namespace CoviDok.BLL.Storage public Task CreateNamespace(string ns); public Task Upload(string ns, string objectname, Stream data, long size); public Task Download(string ns, string objectname, Action callback); + public Task ObjectExists(string ns, string objectname); } } diff --git a/CoviDok/BLL/Storage/StorageHandler.cs b/CoviDok/BLL/Storage/StorageHandler.cs index f68271c..4bc051c 100644 --- a/CoviDok/BLL/Storage/StorageHandler.cs +++ b/CoviDok/BLL/Storage/StorageHandler.cs @@ -43,5 +43,10 @@ namespace CoviDok.BLL.Storage { await storageProvider.Download(bucketName, ImageId, callback); } + + public async Task ImageExists(string bucketName, string ImageId) + { + return await storageProvider.ObjectExists(bucketName, ImageId); + } } } diff --git a/CoviDok/BLL/User/Managers/CaseManager.cs b/CoviDok/BLL/User/Managers/CaseManager.cs index ae133ad..07ea900 100644 --- a/CoviDok/BLL/User/Managers/CaseManager.cs +++ b/CoviDok/BLL/User/Managers/CaseManager.cs @@ -1,8 +1,10 @@ using CoviDok.Api.Request; using CoviDok.BLL.Sessions; +using CoviDok.BLL.Storage; using CoviDok.BLL.User.Handlers; using CoviDok.Data.Model; using CoviDok.Data.MySQL; +using CoviDok.Data.StorageProviders; using System; using System.Collections.Generic; using System.Linq; @@ -15,6 +17,8 @@ namespace CoviDok.BLL.User.Managers { private readonly ICaseHandler handler = new MySqlCaseHandler(); + private readonly StorageHandler storage = new StorageHandler(new MinioProvider()); + public async Task> FilterCases(Session s, CaseFilter filter) { // TODO: Jogosultságkezelés @@ -132,6 +136,10 @@ namespace CoviDok.BLL.User.Managers if (c == null) throw new KeyNotFoundException("Case Id not found: " + id); if (handler.IsAuthorized(s.Id, c)) { + foreach (string ImageId in Images) + { + if (!await storage.ImageExists("test1", ImageId)) throw new InvalidOperationException(ImageId + " not found in storage!"); + } if (c.CaseStatus == CaseStatus.Certified) throw new ArgumentException("Can't modify closed Case!"); if (s.Id == c.ParentId) c.Assignee = c.DoctorId; // Ha szülő updatel, az assignee az orvos lesz diff --git a/CoviDok/Controllers/CaseController.cs b/CoviDok/Controllers/CaseController.cs index 322070f..dda3465 100644 --- a/CoviDok/Controllers/CaseController.cs +++ b/CoviDok/Controllers/CaseController.cs @@ -62,6 +62,10 @@ namespace CoviDok.Controllers catch (KeyNotFoundException) { return NotFound(); } + catch (InvalidOperationException) + { + return BadRequest(); + } } diff --git a/CoviDok/Controllers/ImagesController.cs b/CoviDok/Controllers/ImagesController.cs index 22e7890..8f70d57 100644 --- a/CoviDok/Controllers/ImagesController.cs +++ b/CoviDok/Controllers/ImagesController.cs @@ -23,16 +23,11 @@ namespace CoviDok.Controllers [ApiController] public class ImagesController : ControllerBase { - private StorageHandler MinioHandler; + private StorageHandler MinioHandler = new StorageHandler(new MinioProvider()); private readonly string BucketName = "test1"; private readonly SessionHandler Handler = new SessionHandler(); - public ImagesController(IOptions config) - { - MinioHandler = new StorageHandler(new MinioProvider(config)); - } - private static Stream MakeStream(string s) { var stream = new MemoryStream(); diff --git a/CoviDok/Data/MySQL/MySqlCaseHandler.cs b/CoviDok/Data/MySQL/MySqlCaseHandler.cs index 34aeeb3..99acc65 100644 --- a/CoviDok/Data/MySQL/MySqlCaseHandler.cs +++ b/CoviDok/Data/MySQL/MySqlCaseHandler.cs @@ -27,6 +27,7 @@ namespace CoviDok.Data.MySQL message.CaseId = c.Id; context.Updates.Add(message); c.CaseStatus = status; + c.LastModificationDate = DateTime.Now; c.Updates.Add(message); await context.SaveChangesAsync(); } diff --git a/CoviDok/Data/StorageProviders/MinioProvider.cs b/CoviDok/Data/StorageProviders/MinioProvider.cs index eae98eb..2084b3e 100644 --- a/CoviDok/Data/StorageProviders/MinioProvider.cs +++ b/CoviDok/Data/StorageProviders/MinioProvider.cs @@ -12,9 +12,11 @@ namespace CoviDok.Data.StorageProviders public class MinioProvider : IStorageProvider { private readonly MinioClient Client = null; - public MinioProvider(IOptions options) + + public static MinioSettings _settings; + public MinioProvider() { - var _settings = options.Value; + //var _settings = options.Value; Client = new MinioClient(_settings.HostName, _settings.AccessKey, _settings.SecretKey); } @@ -37,5 +39,18 @@ namespace CoviDok.Data.StorageProviders { await Client.PutObjectAsync(ns, objectname, data, size); } + + public async Task ObjectExists(string ns, string objectname) + { + try { + await Client.StatObjectAsync(ns, objectname); + return true; + } + catch (Exception) + { + return false; + } + + } } } diff --git a/CoviDok/Startup.cs b/CoviDok/Startup.cs index 3a9e3ac..5c04659 100644 --- a/CoviDok/Startup.cs +++ b/CoviDok/Startup.cs @@ -30,10 +30,13 @@ namespace CoviDok { services.AddMvc(options => options.EnableEndpointRouting = false).SetCompatibilityVersion(CompatibilityVersion.Version_3_0); services.AddSingleton(_configuration); - var minioSection = _configuration.GetSection("MinioSettings"); - services.Configure(minioSection); MySqlContext.MySqlString = _configuration.GetConnectionString("MySQLDatabase"); RedisProvider.Host = _configuration.GetConnectionString("RedisHost"); + MinioProvider._settings = new MinioSettings { + HostName = _configuration["MinioSettings:HostName"], + AccessKey = _configuration["MinioSettings:AccessKey"], + SecretKey = _configuration["MinioSettings:SecretKey"] + }; } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.