Esempio n. 1
0
        private async Task HandleFileSentRequest(FileSentNotificationRequest request)
        {
            switch (request.FileType)
            {
                case "VIF":
                    string correlationId;

                    if (!vifDictionary.TryRemove(request.Filename, out correlationId))
                    {
                        throw new InvalidOperationException(string.Format("Could not find '{0}' in pending transfers", request.Filename));
                    }

                    var batchResponse = new SendBatchValueInstructionFileResponse
                    {
                        valueInstructionFile = new[]
                        {
                            new SendValueInstructionFileResponse
                            {
                                valueInstructionFileBatchFileStatus = ValueInstructionFileStatusEnum.Completed,
                                valueInstructionFileFilename = request.Filename,
                            }
                        }
                    };

                    await sendVifExchangePublisher.PublishAsync(batchResponse, correlationId);

                    break;
                default:
                    throw new InvalidOperationException(string.Format("The requested file type '{0}' is not supported.", request.Filename));
            }
            
        }
Esempio n. 2
0
        public async Task<HttpResponseMessage> PostAsync(FileSentNotificationRequest request)
        {
            Log.Information("File sent notification received : {@fileSentNotificationRequest}", request);

            try
            {
                if (!ModelState.IsValid)
                {
                    Log.Error("Could not create notification: {errors}", ModelState.SerializeForLog());
                    return Request.CreateErrorResponse(HttpStatusCode.BadRequest, ModelState);
                }

                await HandleFileSentRequest(request);
                
                return Request.CreateResponse(HttpStatusCode.OK,
                    new ApiResponse { message = string.Format("The request has completed successfully.") });
            }
            catch (Exception ex)
            {
                const string Message = "An error occurred while creating the job.";
                Log.Error(ex, Message);
                return Request.CreateErrorResponse(HttpStatusCode.InternalServerError, Message);
            }
        }