ModuleJobs.cs 18.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
using System;
using System.Collections.Generic;
using System.Linq;
using Sungero.Core;
using Sungero.CoreEntities;
using Sungero.Exchange.ExchangeDocumentInfoServiceDocuments;
using DcxClient = NpoComputer.DCX.ClientApi.Client;

namespace Sungero.Exchange.Server
{
  public class ModuleJobs
  {
    /// <summary>
    /// Отправка подписанных ИОП.
    /// </summary>
    public virtual void SendSignedReceiptNotifications()
    {
      var boxes = ExchangeCore.PublicFunctions.BusinessUnitBox.Remote.GetConnectedBoxes().ToList();
      foreach (var box in boxes)
      {
        SendSignedReceiptNotifications(box);
      }
    }

    /// <summary>
    /// Агент создания ИОП.
    /// </summary>
    public virtual void CreateReceiptNotifications()
    {
      var boxes = ExchangeCore.PublicFunctions.BusinessUnitBox.Remote.GetConnectedBoxes().Where(x => x.CertificateReceiptNotifications != null).ToList();
      foreach (var box in boxes)
      {
        CreateReceiptNotifications(box);
      }
    }

    /// <summary>
    /// Агент создания задач на отправку извещений о получении документов.
    /// </summary>
    public virtual void SendReceiptNotificationTasks()
    {
      var boxes = ExchangeCore.PublicFunctions.BusinessUnitBox.Remote.GetConnectedBoxes().Select(b => b.Id).ToList();
      foreach (var box in boxes)
      {
        SendReceiptNotificationTask(box);
      }
    }
    
    /// <summary>
    /// Реализация агента для конкретного ящика, чтобы можно было выполнить в транзакции.
    /// </summary>
    /// <param name="boxId">Id ящика.</param>
    private static void SendReceiptNotificationTask(int boxId)
    {
      var box = ExchangeCore.BusinessUnitBoxes.Get(boxId);
      var hasCertificate = ExchangeCore.PublicFunctions.BusinessUnitBox.Remote.CheckAllResponsibleCertificates(box, box.Responsible);
      if (!hasCertificate)
        Logger.DebugFormat("Can't start Receipt Notification Sending Task. No certificates for responsible");
      var documentInfos = Functions.Module.GetDocumentInfosWithoutReceiptNotification(box, false);
      
      // Если отправить ИОПы нельзя, то новая задача не создается.
      var client = ExchangeCore.PublicFunctions.BusinessUnitBox.GetPublicClient(box) as NpoComputer.DCX.ClientApi.Client;
      var documentsToFix = new List<IExchangeDocumentInfo>();
      foreach (var documentInfo in documentInfos)
      {
        var canSendDeliveryConfirmation = true;
        try
        {
          canSendDeliveryConfirmation = client.CanSendDeliveryConfirmation(documentInfo.ServiceDocumentId, documentInfo.ServiceMessageId);
        }
        catch (Exception ex)
        {
          Logger.DebugFormat("Error while getting document from the service to generate delivery confirmation: {0}. ServiceMessageId: {1}, ServiceDocumentId: {2}",
                             ex.Message, documentInfo.ServiceDocumentId, documentInfo.ServiceMessageId);
        }
        if (!canSendDeliveryConfirmation)
          documentsToFix.Add(documentInfo);
      }

      if (documentsToFix.Any())
      {
        foreach (var info in documentsToFix)
          Transactions.Execute(() =>
                               {
                                 var exchangeInfo = ExchangeDocumentInfos.Get(info.Id);
                                 Functions.Module.FixReceiptNotification(exchangeInfo, string.Empty, false);
                               });
      }
      
      var tasks = ReceiptNotificationSendingTasks.GetAll()
        .Where(x => Equals(x.Box, box) && Equals(x.Status, Exchange.ReceiptNotificationSendingTask.Status.InProcess));
      foreach (var task in tasks)
        try
      {
        task.Abort();
        Logger.DebugFormat("Aborted Receipt Notification Sending Task {0} for box {1}", task.Id, box.Id);
      }
      catch (Exception ex)
      {
        Logger.DebugFormat("Abort task {0} failed, box {1}, exception \r\n {2}", task.Id, box.Id, ex);
      }
      
      var responsible = box.Responsible;
      documentInfos = Functions.Module.GetDocumentInfosWithoutReceiptNotification(box, false);
      var previousDay = Calendar.Today.PreviousWorkingDay().EndOfDay();
      var previousDayDocumentInfos = documentInfos.Where(x => x.MessageDate <= previousDay).ToList();
      if (previousDayDocumentInfos.Any() && hasCertificate)
      {
        Logger.DebugFormat("Document infos ids without receipt notification: {0}",  string.Join(", ", previousDayDocumentInfos.Select(x => x.Id)));
        
        // Выдать права на чтение документам. Без прав ИОП не отправить.
        foreach (var documentInfo in documentInfos)
        {
          var document = documentInfo.Document;
          if (!document.AccessRights.CanRead(responsible))
          {
            document.AccessRights.Grant(responsible, DefaultAccessRightsTypes.Read);
            document.Save();
          }
        }
        
        var receiptNotificationSendingTask = Functions.Module.CreateReceiptNotificationSendingTask(box);
        receiptNotificationSendingTask.Start();
        Logger.DebugFormat("Started Receipt Notification Sending Task {0} for box {1}", receiptNotificationSendingTask.Id, box.Id);
      }
    }
    
    /// <summary>
    /// Агент получения сообщений.
    /// </summary>
    public virtual void GetMessages()
    {
      Exchange.PublicFunctions.Module.LogDebugFormat(string.Format("Execute job GetLiteMessages. Queue items count: '{0}'.", 
                                                                   ExchangeCore.MessageQueueItems.GetAll(q => q.DownloadSession == null).Count()));
      
      var boxes = ExchangeCore.PublicFunctions.BusinessUnitBox.Remote.GetConnectedBoxes().ToList();
      foreach (var box in boxes)
      {
        Functions.Module.SyncLiteMessages(box);
      }
      
      Exchange.PublicFunctions.Module.LogDebugFormat("Job GetLiteMessages. Run exchange checkup.");
      foreach (var box in boxes)
      {
        Functions.Module.RunExchangeCheckup(box);
      }
      
      Exchange.PublicFunctions.Module.LogDebugFormat(string.Format("Done job GetLiteMessages. Queue items count: '{0}'.", 
                                                                   ExchangeCore.MessageQueueItems.GetAll(q => q.DownloadSession == null).Count()));
    }
    
    /// <summary>
    /// Агент получения исторических сообщений.
    /// </summary>
    public virtual void GetHistoricalMessages()
    {
      Exchange.PublicFunctions.Module.LogDebugFormat(string.Format("Execute job GetHistoricalMessages. Queue items count: '{0}'.",
                                                                   ExchangeCore.MessageQueueItems.GetAll(q => q.DownloadSession != null).Count()));
      
      var boxes = ExchangeCore.PublicFunctions.BusinessUnitBox.Remote.GetConnectedBoxes().ToList();
      foreach (var box in boxes)
      {
        Exchange.Functions.Module.SyncLiteHistoricalMessages(box);
      }
      
      Exchange.PublicFunctions.Module.LogDebugFormat(string.Format("Done job GetHistoricalMessages. Queue items count: '{0}'.",
                                                                   ExchangeCore.MessageQueueItems.GetAll(q => q.DownloadSession != null).Count()));
    }

    /// <summary>
    /// Агент конвертации тел документов.
    /// </summary>
    public virtual void BodyConverterJob()
    {
      Exchange.PublicFunctions.Module.LogDebugFormat("BodyConverterJob. Start.");
      var queueItems = this.GetNotProcessingBodyConverterQueueItems();
      Exchange.PublicFunctions.Module.LogDebugFormat(string.Format("BodyConverterJob. Queue items count: {0}.", queueItems.Count));
      
      var queueItemsForDelete = new List<int>();
      
      foreach (var queueItem in queueItems)
      {
        if (ExchangeCore.PublicFunctions.BodyConverterQueueItem.IsObsoleteQueueItem(queueItem))
        {
          Exchange.PublicFunctions.Module.LogDebugFormat(queueItem, string.Format("BodyConverterJob. Queue item is obsolete."));
          queueItemsForDelete.Add(queueItem.Id);
        }
        else if (Sungero.ExchangeCore.PublicFunctions.BodyConverterQueueItem.HasSimilarQueueItemInProcessing(queueItem))
          Exchange.PublicFunctions.Module.LogDebugFormat(queueItem, string.Format("BodyConverterJob. Found similiar queue item in processing: DocumentId: {0} VersionId: {1}.", queueItem.Document.Id, queueItem.VersionId));
        else
          Functions.Module.ExecuteConvertDocumentToPdfAsyncHandler(queueItem);
      }
      
      this.ClearBodyConverterQueueItems(queueItemsForDelete);
      
      Exchange.PublicFunctions.Module.LogDebugFormat("BodyConverterJob. Done.");
    }
    
    /// <summary>
    /// Получить элементы очереди конвертации.
    /// </summary>
    /// <returns>Список ид элементов очереди ковертации.</returns>
    [Obsolete("Используйте метод GetNotProcessingBodyConverterQueueItems")]
    public virtual List<int> GetActualBodyConverterQueueItems()
    {
      var queueItemIds = ExchangeCore.BodyConverterQueueItems.GetAll()
        .Where(x => x.Retries == 0 && x.ProcessingStatus != ExchangeCore.BodyConverterQueueItem.ProcessingStatus.Processed)
        .Select(x => x.Id)
        .ToList();
      
      // Ошибочные документы обрабатываются последними пачкой по 25.
      var repeatedQueueItemIds = ExchangeCore.BodyConverterQueueItems.GetAll()
        .Where(x => x.Retries > 0)
        .OrderBy(y => y.Retries)
        .Take(25)
        .Select(x => x.Id)
        .ToList();
      
      queueItemIds.AddRange(repeatedQueueItemIds);
      
      return queueItemIds;
    }
    
    /// <summary>
    /// Получить элементы очереди конвертации, по которым не запущены асинхронные обработчики.
    /// </summary>
    /// <returns>Список элементов очереди ковертации.</returns>
    public virtual List<ExchangeCore.IBodyConverterQueueItem> GetNotProcessingBodyConverterQueueItems()
    {
      return ExchangeCore.BodyConverterQueueItems.GetAll()
        .Where(x => x.ProcessingStatus != ExchangeCore.BodyConverterQueueItem.ProcessingStatus.Processed && (x.AsyncHandlerId == null || x.AsyncHandlerId == string.Empty))
        .ToList();
    }
    
    /// <summary>
    /// Признак устаревшего элемента очереди конвертации.
    /// </summary>
    /// <param name="queueItemId">Ид элемента очереди.</param>
    /// <returns>True, если очередь устарела.</returns>
    [Obsolete("Используйте метод IsObsoleteQueueItem в сущности ExchangeCore.BodyConverterQueueItem")]
    public virtual bool IsObsoleteBodyConverterQueueItem(int queueItemId)
    {
      // Вернет 0 если документ или очередь не найдена.
      var documentId = ExchangeCore.BodyConverterQueueItems.GetAll()
        .Where(x => x.Id == queueItemId && x.Document != null)
        .Select(x => x.Document.Id)
        .SingleOrDefault();

      if (documentId == 0)
        return true;
      
      var versionId = ExchangeCore.BodyConverterQueueItems.GetAll()
        .Where(x => x.Id == queueItemId)
        .Select(x => x.VersionId)
        .SingleOrDefault();
      
      if (versionId == null)
        return true;

      var equalsQueueItems = ExchangeCore.BodyConverterQueueItems.GetAll().Where(x => Equals(x.Document.Id, documentId) &&
                                                                                 Equals(x.VersionId, versionId) &&
                                                                                 x.Id != queueItemId);

      if (equalsQueueItems.Any() && queueItemId < equalsQueueItems.Max(x => x.Id))
        return true;
      
      return false;
    }
    
    /// <summary>
    /// Удалить элементы очереди конвертации.
    /// </summary>
    /// <param name="queueItemIds">Ид элементов очереди.</param>
    public virtual void ClearBodyConverterQueueItems(List<int> queueItemIds)
    {
      var queueItemsForDelete = ExchangeCore.BodyConverterQueueItems.GetAll().Where(x => queueItemIds.Contains(x.Id)).ToList();
      
      foreach (var queueItem in queueItemsForDelete)
      {
        Transactions.Execute(
          () =>
          {
            ExchangeCore.BodyConverterQueueItems.Delete(queueItem);
          });
      }
    }

    /// <summary>
    /// Реализация агента создания ИОП для конкретного ящика.
    /// </summary>
    /// <param name="box">Абонентский ящик нашей организации.</param>
    private static void CreateReceiptNotifications(Sungero.ExchangeCore.IBusinessUnitBox box)
    {
      Exchange.PublicFunctions.Module.LogDebugFormat(box, "Execute CreateReceiptNotifications.");
      var partSize = 25;
      var skip = 0;
      var certificate = box.CertificateReceiptNotifications;
      var documentInfos = Functions.Module.GetDocumentInfosWithoutReceiptNotificationPart(box, skip, partSize, true);
      if (!documentInfos.Any())
        return;
      
      while (documentInfos.Any())
      {
        try
        {
          var serviceDocs = Functions.Module.GetGeneratedDeliveryConfirmationDocuments(documentInfos, box, box.CertificateReceiptNotifications, true);
          
          foreach (var doc in serviceDocs)
          {
            var info = doc.Info;
            if (info.ServiceDocuments.Any(d => d.DocumentType == doc.ReglamentDocumentType))
              continue;
            
            var serviceDocument = info.ServiceDocuments.AddNew();
            serviceDocument.DocumentType = doc.ReglamentDocumentType;
            serviceDocument.Body = doc.Content;
            serviceDocument.GeneratedName = doc.Name;
            serviceDocument.DocumentId = doc.ServiceDocumentId;
            serviceDocument.StageId = doc.ServiceDocumentStageId;
            serviceDocument.Certificate = doc.Certificate;
            serviceDocument.ParentDocumentId = doc.ParentDocumentId;
            
            // Выдать права на документ подписывающему ИОП.
            var document = info.Document;
            if (!document.AccessRights.CanRead(certificate.Owner))
            {
              document.AccessRights.Grant(certificate.Owner, DefaultAccessRightsTypes.Read);
              document.Save();
            }
            
            info.Save();
          }
          
          var documentsToFix = documentInfos.Where(x => !serviceDocs.Any(s => Equals(s.LinkedDocument, x.Document))).ToList();
          if (documentsToFix.Any())
            Functions.Module.FixReceiptNotification(documentsToFix, string.Empty);
        }
        catch (Exception ex)
        {
          var error = Resources.DeliveryConfirmationError;
          Exchange.PublicFunctions.Module.LogErrorFormat(error, ex);
        }
        finally
        {
          skip += partSize;
          documentInfos = Functions.Module.GetDocumentInfosWithoutReceiptNotificationPart(box, skip, partSize, true);
        }
      }

    }
    
    /// <summary>
    /// Реализация отправки подписанных ИОП для конкретного ящика.
    /// </summary>
    /// <param name="box">Абонентский ящик нашей организации.</param>
    private static void SendSignedReceiptNotifications(Sungero.ExchangeCore.IBusinessUnitBox box)
    {
      Exchange.PublicFunctions.Module.LogDebugFormat(box, "Execute SendSignedReceiptNotifications.");
      var partSize = 25;
      var skip = 0;
      var documentInfos = Functions.Module.GetDocumentInfosWithoutReceiptNotificationPart(box, skip, partSize, false);
      if (!documentInfos.Any())
        return;
      
      while (documentInfos.Any())
      {
        try
        {
          var documentsToSend = new List<Structures.Module.ReglamentDocumentWithCertificate>();
          
          foreach (var info in documentInfos)
          {
            Func<Enumeration?, bool> isRootDocumentReceipt = x => x == DocumentType.Receipt || x == DocumentType.IReceipt;
            var isInvoiceFlow = Functions.Module.IsInvoiceFlowDocument(info.Document);
            var reglamentDocument = info.ServiceDocuments
              .Where(d => d.Sign != null && d.Date == null)
              .Select(d =>
                      {
                        var parentId = info.ServiceDocumentId;
                        var counterpartyId = info.ServiceCounterpartyId;
                        return Structures.Module.ReglamentDocumentWithCertificate.Create(d.GeneratedName, d.Body, d.Certificate,
                                                                                         d.Sign, parentId, box, info.Document,
                                                                                         info.ServiceMessageId, d.DocumentId, d.StageId,
                                                                                         counterpartyId,
                                                                                         isRootDocumentReceipt(d.DocumentType), info,
                                                                                         isInvoiceFlow, d.DocumentType,
                                                                                         d.FormalizedPoAUnifiedRegNo);
                      })
              .ToList();
            documentsToSend.AddRange(reglamentDocument);
          }
          if (documentsToSend.Any())
          {
            Exchange.PublicFunctions.Module.LogDebugFormat(box,
                                                           string.Format("Execute SendSignedReceiptNotifications. Processing document infos: {0}", string.Join(", ", documentsToSend.Select(d => d.Info.Id.ToString()).ToList())));
            Sungero.Exchange.Functions.Module.SendDeliveryConfirmation(documentsToSend, box);
          }
        }
        catch (Exception ex)
        {
          var error = Resources.DeliveryConfirmationError;
          Exchange.PublicFunctions.Module.LogErrorFormat(error, ex);
        }
        finally
        {
          skip += partSize;
          documentInfos = Functions.Module.GetDocumentInfosWithoutReceiptNotificationPart(box, skip, partSize, false);
        }
      }
    }
  }
}