Browse Source

Added validation to Update image upload

master
Daniel Gyulai 4 years ago
parent
commit
54505b5407
  1. 1
      CoviDok/BLL/Storage/IStorageProvider.cs
  2. 5
      CoviDok/BLL/Storage/StorageHandler.cs
  3. 8
      CoviDok/BLL/User/Managers/CaseManager.cs
  4. 4
      CoviDok/Controllers/CaseController.cs
  5. 7
      CoviDok/Controllers/ImagesController.cs
  6. 1
      CoviDok/Data/MySQL/MySqlCaseHandler.cs
  7. 19
      CoviDok/Data/StorageProviders/MinioProvider.cs
  8. 7
      CoviDok/Startup.cs

1
CoviDok/BLL/Storage/IStorageProvider.cs

@ -13,5 +13,6 @@ namespace CoviDok.BLL.Storage
public Task CreateNamespace(string ns); public Task CreateNamespace(string ns);
public Task Upload(string ns, string objectname, Stream data, long size); public Task Upload(string ns, string objectname, Stream data, long size);
public Task Download(string ns, string objectname, Action<Stream> callback); public Task Download(string ns, string objectname, Action<Stream> callback);
public Task<bool> ObjectExists(string ns, string objectname);
} }
} }

5
CoviDok/BLL/Storage/StorageHandler.cs

@ -43,5 +43,10 @@ namespace CoviDok.BLL.Storage
{ {
await storageProvider.Download(bucketName, ImageId, callback); await storageProvider.Download(bucketName, ImageId, callback);
} }
public async Task<bool> ImageExists(string bucketName, string ImageId)
{
return await storageProvider.ObjectExists(bucketName, ImageId);
}
} }
} }

8
CoviDok/BLL/User/Managers/CaseManager.cs

@ -1,8 +1,10 @@
using CoviDok.Api.Request; using CoviDok.Api.Request;
using CoviDok.BLL.Sessions; using CoviDok.BLL.Sessions;
using CoviDok.BLL.Storage;
using CoviDok.BLL.User.Handlers; using CoviDok.BLL.User.Handlers;
using CoviDok.Data.Model; using CoviDok.Data.Model;
using CoviDok.Data.MySQL; using CoviDok.Data.MySQL;
using CoviDok.Data.StorageProviders;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
@ -15,6 +17,8 @@ namespace CoviDok.BLL.User.Managers
{ {
private readonly ICaseHandler handler = new MySqlCaseHandler(); private readonly ICaseHandler handler = new MySqlCaseHandler();
private readonly StorageHandler storage = new StorageHandler(new MinioProvider());
public async Task<List<Case>> FilterCases(Session s, CaseFilter filter) public async Task<List<Case>> FilterCases(Session s, CaseFilter filter)
{ {
// TODO: Jogosultságkezelés // 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 (c == null) throw new KeyNotFoundException("Case Id not found: " + id);
if (handler.IsAuthorized(s.Id, c)) 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 (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 if (s.Id == c.ParentId) c.Assignee = c.DoctorId; // Ha szülő updatel, az assignee az orvos lesz

4
CoviDok/Controllers/CaseController.cs

@ -62,6 +62,10 @@ namespace CoviDok.Controllers
catch (KeyNotFoundException) { catch (KeyNotFoundException) {
return NotFound(); return NotFound();
} }
catch (InvalidOperationException)
{
return BadRequest();
}
} }

7
CoviDok/Controllers/ImagesController.cs

@ -23,16 +23,11 @@ namespace CoviDok.Controllers
[ApiController] [ApiController]
public class ImagesController : ControllerBase public class ImagesController : ControllerBase
{ {
private StorageHandler MinioHandler; private StorageHandler MinioHandler = new StorageHandler(new MinioProvider());
private readonly string BucketName = "test1"; private readonly string BucketName = "test1";
private readonly SessionHandler Handler = new SessionHandler(); private readonly SessionHandler Handler = new SessionHandler();
public ImagesController(IOptions<MinioSettings> config)
{
MinioHandler = new StorageHandler(new MinioProvider(config));
}
private static Stream MakeStream(string s) private static Stream MakeStream(string s)
{ {
var stream = new MemoryStream(); var stream = new MemoryStream();

1
CoviDok/Data/MySQL/MySqlCaseHandler.cs

@ -27,6 +27,7 @@ namespace CoviDok.Data.MySQL
message.CaseId = c.Id; message.CaseId = c.Id;
context.Updates.Add(message); context.Updates.Add(message);
c.CaseStatus = status; c.CaseStatus = status;
c.LastModificationDate = DateTime.Now;
c.Updates.Add(message); c.Updates.Add(message);
await context.SaveChangesAsync(); await context.SaveChangesAsync();
} }

19
CoviDok/Data/StorageProviders/MinioProvider.cs

@ -12,9 +12,11 @@ namespace CoviDok.Data.StorageProviders
public class MinioProvider : IStorageProvider public class MinioProvider : IStorageProvider
{ {
private readonly MinioClient Client = null; private readonly MinioClient Client = null;
public MinioProvider(IOptions<MinioSettings> options)
public static MinioSettings _settings;
public MinioProvider()
{ {
var _settings = options.Value; //var _settings = options.Value;
Client = new MinioClient(_settings.HostName, _settings.AccessKey, _settings.SecretKey); Client = new MinioClient(_settings.HostName, _settings.AccessKey, _settings.SecretKey);
} }
@ -37,5 +39,18 @@ namespace CoviDok.Data.StorageProviders
{ {
await Client.PutObjectAsync(ns, objectname, data, size); await Client.PutObjectAsync(ns, objectname, data, size);
} }
public async Task<bool> ObjectExists(string ns, string objectname)
{
try {
await Client.StatObjectAsync(ns, objectname);
return true;
}
catch (Exception)
{
return false;
}
}
} }
} }

7
CoviDok/Startup.cs

@ -30,10 +30,13 @@ namespace CoviDok
{ {
services.AddMvc(options => options.EnableEndpointRouting = false).SetCompatibilityVersion(CompatibilityVersion.Version_3_0); services.AddMvc(options => options.EnableEndpointRouting = false).SetCompatibilityVersion(CompatibilityVersion.Version_3_0);
services.AddSingleton<IConfiguration>(_configuration); services.AddSingleton<IConfiguration>(_configuration);
var minioSection = _configuration.GetSection("MinioSettings");
services.Configure<MinioSettings>(minioSection);
MySqlContext.MySqlString = _configuration.GetConnectionString("MySQLDatabase"); MySqlContext.MySqlString = _configuration.GetConnectionString("MySQLDatabase");
RedisProvider.Host = _configuration.GetConnectionString("RedisHost"); 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. // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.

Loading…
Cancel
Save