|
@ -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
|
|
|