2023-04-19 02:03:56 +04:00
using LawFirmBusinessLogic.MailWorker ;
using LawFirmContracts.BindingModels ;
2023-01-28 23:22:06 +04:00
using LawFirmContracts.BusinessLogicContracts ;
using LawFirmContracts.SearchModels ;
using LawFirmContracts.StorageContracts ;
using LawFirmContracts.ViewModels ;
using LawFirmDataModels.Enums ;
2023-03-13 10:14:57 +04:00
using LawFirmDataModels.Models ;
2023-01-28 23:22:06 +04:00
using Microsoft.Extensions.Logging ;
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Text ;
using System.Threading.Tasks ;
namespace LawFirmBusinessLogic.BusinessLogics
{
2023-01-29 19:37:04 +04:00
public class OrderLogic : IOrderLogic
2023-01-28 23:22:06 +04:00
{
private readonly ILogger _logger ;
private readonly IOrderStorage _orderStorage ;
2023-03-13 10:14:57 +04:00
private readonly IShopStorage _shopStorage ;
2023-03-02 22:09:15 +04:00
private readonly IShopLogic _shopLogic ;
private readonly IDocumentStorage _documentStorage ;
2023-04-19 02:03:56 +04:00
private readonly AbstractMailWorker _mailWorker ;
private readonly IClientLogic _clientLogic ;
2023-01-28 23:22:06 +04:00
2023-03-02 22:09:15 +04:00
2023-04-20 21:20:08 +04:00
public OrderLogic ( ILogger < OrderLogic > logger , IOrderStorage orderStorage , IShopLogic shopLogic , IDocumentStorage documentStorage , IShopStorage shopStorage , AbstractMailWorker mailWorker , IClientLogic clientLogic )
2023-01-28 23:22:06 +04:00
{
_logger = logger ;
_orderStorage = orderStorage ;
2023-03-02 22:09:15 +04:00
_shopLogic = shopLogic ;
_documentStorage = documentStorage ;
2023-03-13 10:14:57 +04:00
_shopStorage = shopStorage ;
2023-04-19 02:03:56 +04:00
_mailWorker = mailWorker ;
_clientLogic = clientLogic ;
}
2023-01-28 23:22:06 +04:00
public bool CreateOrder ( OrderBindingModel model )
{
CheckModel ( model ) ;
if ( model . Status ! = OrderStatus . Н е и з в е с т е н )
{
_logger . LogWarning ( "Insert operation failed. Order status incorrect." ) ;
return false ;
}
model . Status = OrderStatus . П р и н я т ;
2023-04-19 02:03:56 +04:00
var result = _orderStorage . Insert ( model ) ;
if ( result = = null )
2023-01-28 23:22:06 +04:00
{
model . Status = OrderStatus . Н е и з в е с т е н ;
_logger . LogWarning ( "Insert operation failed" ) ;
return false ;
}
2023-04-19 02:03:56 +04:00
SendOrderStatusMail ( result . ClientId , $"Новый заказ создан. Номер заказа #{result.Id}" , $"Заказ #{result.Id} от {result.DateCreate} на сумму {result.Sum:0.00} принят" ) ;
return true ;
2023-01-28 23:22:06 +04:00
}
2023-02-13 08:57:11 +04:00
public bool StatusUpdate ( OrderBindingModel rawModel , OrderStatus newStatus )
2023-01-28 23:22:06 +04:00
{
2023-02-13 08:57:11 +04:00
var viewModel = _orderStorage . GetElement ( new OrderSearchModel
{
Id = rawModel . Id
} ) ;
if ( viewModel = = null )
{
_logger . LogWarning ( "Order model not found" ) ;
return false ;
}
OrderBindingModel model = new OrderBindingModel
{
Id = viewModel . Id ,
DocumentId = viewModel . DocumentId ,
Status = viewModel . Status ,
DateCreate = viewModel . DateCreate ,
DateImplement = viewModel . DateImplement ,
Count = viewModel . Count ,
Sum = viewModel . Sum
} ;
2023-04-08 13:43:04 +04:00
if ( rawModel . ImplementerId . HasValue )
{
model . ImplementerId = rawModel . ImplementerId ;
}
2023-02-13 08:57:11 +04:00
2023-03-10 19:13:41 +04:00
CheckModel ( model , false ) ;
2023-04-19 22:40:36 +04:00
if ( model . Status + 1 ! = newStatus & & model . Status ! = OrderStatus . О ж и д а н и е )
2023-01-28 23:22:06 +04:00
{
_logger . LogWarning ( "Status update to " + newStatus . ToString ( ) + " operation failed. Order status incorrect." ) ;
return false ;
}
2023-03-02 22:09:15 +04:00
2023-04-19 22:40:36 +04:00
if ( newStatus = = OrderStatus . Г о т о в | | newStatus = = OrderStatus . О ж и д а н и е )
2023-03-02 22:09:15 +04:00
{
var document = _documentStorage . GetElement ( new DocumentSearchModel ( ) { Id = model . DocumentId } ) ;
if ( document = = null )
{
_logger . LogWarning ( "Status update to " + newStatus . ToString ( ) + " operation failed. Document not found." ) ;
return false ;
}
2023-03-13 10:14:57 +04:00
if ( CheckThenSupplyMany ( document , model . Count ) = = false )
2023-03-02 22:09:15 +04:00
{
_logger . LogWarning ( "Status update to " + newStatus . ToString ( ) + " operation failed. Shop supply error." ) ;
2023-04-20 00:19:40 +04:00
model . Status = OrderStatus . О ж и д а н и е ;
_orderStorage . Update ( model ) ;
return false ;
2023-03-02 22:09:15 +04:00
}
}
2023-01-28 23:22:06 +04:00
model . Status = newStatus ;
2023-01-30 09:20:55 +04:00
if ( model . Status = = OrderStatus . В ы д а н ) model . DateImplement = DateTime . Now ;
2023-04-19 02:03:56 +04:00
var result = _orderStorage . Update ( model ) ;
if ( result = = null )
2023-01-28 23:22:06 +04:00
{
model . Status - - ;
_logger . LogWarning ( "Update operation failed" ) ;
return false ;
}
2023-04-19 02:03:56 +04:00
SendOrderStatusMail ( result . ClientId , $"Изменен статус заказа #{result.Id}" , $"Заказ #{result.Id} изменен статус на {result.Status}" ) ;
return true ;
2023-01-28 23:22:06 +04:00
}
2023-03-13 10:14:57 +04:00
public bool CheckThenSupplyMany ( IDocumentModel document , int count )
{
if ( count < = 0 )
{
_logger . LogWarning ( "Check then supply operation error. Document count < 0." ) ;
return false ;
}
int freeSpace = 0 ;
foreach ( var shop in _shopStorage . GetFullList ( ) )
{
freeSpace + = shop . MaxCountDocuments ;
foreach ( var doc in shop . ShopDocuments )
{
freeSpace - = doc . Value . Item2 ;
}
}
if ( freeSpace - count < 0 )
{
_logger . LogWarning ( "Check then supply operation error. There's no place for new docs in shops." ) ;
return false ;
}
foreach ( var shop in _shopStorage . GetFullList ( ) )
{
freeSpace = shop . MaxCountDocuments ;
foreach ( var doc in shop . ShopDocuments )
{
freeSpace - = doc . Value . Item2 ;
}
if ( freeSpace = = 0 )
{
continue ;
}
if ( freeSpace - count > = 0 )
{
if ( _shopLogic . SupplyDocuments ( new ( ) { Id = shop . Id } , document , count ) ) count = 0 ;
else
{
_logger . LogWarning ( "Supply error" ) ;
return false ;
}
}
if ( freeSpace - count < 0 )
{
if ( _shopLogic . SupplyDocuments ( new ( ) { Id = shop . Id } , document , freeSpace ) ) count - = freeSpace ;
else
{
_logger . LogWarning ( "Supply error" ) ;
return false ;
}
}
if ( count < = 0 )
{
return true ;
}
}
return false ;
}
2023-01-28 23:22:06 +04:00
public bool TakeOrderInWork ( OrderBindingModel model )
{
return StatusUpdate ( model , OrderStatus . В ы п о л н я е т с я ) ;
}
public bool DeliveryOrder ( OrderBindingModel model )
{
return StatusUpdate ( model , OrderStatus . Г о т о в ) ;
}
public bool FinishOrder ( OrderBindingModel model )
{
return StatusUpdate ( model , OrderStatus . В ы д а н ) ;
}
public List < OrderViewModel > ? ReadList ( OrderSearchModel ? model )
{
_logger . LogInformation ( "Order. OrderID:{Id}" , model ? . Id ) ;
var list = model = = null ? _orderStorage . GetFullList ( ) : _orderStorage . GetFilteredList ( model ) ;
if ( list = = null )
{
_logger . LogWarning ( "ReadList return null list" ) ;
return null ;
}
_logger . LogInformation ( "ReadList. Count:{Count}" , list . Count ) ;
return list ;
}
2023-04-08 13:43:04 +04:00
public OrderViewModel ? ReadElement ( OrderSearchModel model )
{
if ( model = = null )
{
throw new ArgumentNullException ( nameof ( model ) ) ;
}
_logger . LogInformation ( "ReadElement. Id:{ Id}" , model . Id ) ;
var element = _orderStorage . GetElement ( model ) ;
if ( element = = null )
{
_logger . LogWarning ( "ReadElement element not found" ) ;
return null ;
}
_logger . LogInformation ( "ReadElement find. Id:{Id}" , element . Id ) ;
return element ;
}
2023-01-28 23:22:06 +04:00
2023-04-19 02:03:56 +04:00
private bool SendOrderStatusMail ( int clientId , string subject , string text )
{
var client = _clientLogic . ReadElement ( new ( ) { Id = clientId } ) ;
if ( client = = null )
{
return false ;
}
_mailWorker . MailSendAsync ( new ( )
{
MailAddress = client . Email ,
Subject = subject ,
Text = text
} ) ;
return true ;
}
private void CheckModel ( OrderBindingModel model , bool withParams = true )
2023-01-28 23:22:06 +04:00
{
if ( model = = null )
{
throw new ArgumentNullException ( nameof ( model ) ) ;
}
if ( ! withParams )
{
return ;
}
if ( model . DocumentId < 0 )
{
throw new ArgumentNullException ( "Некорректный идентификатор документа" , nameof ( model . DocumentId ) ) ;
}
if ( model . Count < = 0 )
{
throw new ArgumentNullException ( "Количество документов в заказе должно быть больше 0" , nameof ( model . Count ) ) ;
}
if ( model . Sum < = 0 )
{
throw new ArgumentNullException ( "Сумма заказа должна быть больше 0" , nameof ( model . Sum ) ) ;
}
_logger . LogInformation ( "Order. OrderID:{Id}.Sum:{ Sum}. DocumentId: { DocumentId}" , model . Id , model . Sum , model . DocumentId ) ;
}
}
}