Esempio n. 1
0
        public async Task CreateNotification()
        {
            var logger = ServiceScope.ServiceProvider.GetService <ILogger <CommunicationTest> >();

            var user = await GetRandomUserAsync();

            logger.LogInformation($"User = {user}");

            var participantReference = CreateParticipantReference.FromTimestamp(GetUniqueNow());

            logger.LogInformation($"Participant reference = {participantReference}");

            var participantId = await CommunicationMicroService.AllocateParticipantAsync(participantReference);

            logger.LogInformation($"Participant ID = {participantId}");

            var topicReference = CreateTopicReference.FromUserId(user.Id);

            logger.LogInformation($"Topic reference = {topicReference}");

            var topicFields = new Dictionary <string, string>()
            {
                { "Key1", "Value1" },
                { "Key2", "Value2" }
            };
            var topicId = await CommunicationMicroService.AllocateTopicAsync(topicReference, topicFields).ConfigureAwait(false);

            logger.LogInformation($"Topic ID = {topicId}");

            await CommunicationMicroService.SendNotification(participantId, NotificationTypeCodes.OrderShipped, topicId);
        }
        public async Task HandleShipmentEventAsync(MFulfillment_ShipmentEvent eventData)
        {
            using var log = BeginFunction(nameof(FulfillmentEventMicroService), nameof(HandleShipmentEventAsync), eventData);
            try
            {
                using var ctx = CreateQuiltContext();

                switch (eventData.EventType)
                {
                case MFulfillment_ShipmentEventTypes.Process:
                {
                    var fulfillableIds = new HashSet <long>();
                    foreach (var shipmentRequestId in eventData.ShipmentRequestIds)
                    {
                        var mShipmentRequest = await FullfillmentMicroService.GetShipmentRequestAsync(shipmentRequestId).ConfigureAwait(false);

                        foreach (var mShipmentRequestItem in mShipmentRequest.ShipmentRequestItems)
                        {
                            var mFulfillable = await FullfillmentMicroService.GetFulfillableByItemAsync(mShipmentRequestItem.FulfillableItemId).ConfigureAwait(false);

                            var fulfillableId = mFulfillable.FulfillableId;
                            if (fulfillableIds.Contains(fulfillableId))
                            {
                                _ = fulfillableIds.Add(fulfillableId);

                                if (TryParseOrderId.FromFulfillableReference(mFulfillable.FulfillableReference, out var orderId))
                                {
                                    var mOrder = await OrderMicroService.GetOrderAsync(orderId).ConfigureAwait(false);

                                    var userId = ParseUserId.FromOrdererReference(mOrder.OrdererReference);

                                    var participantReference = CreateParticipantReference.FromUserId(userId);
                                    var participantId        = await CommunicationMicroService.AllocateParticipantAsync(participantReference).ConfigureAwait(false);

                                    var topicReference = CreateTopicReference.FromOrderId(orderId);
                                    var topicId        = await CommunicationMicroService.AllocateTopicAsync(topicReference, null).ConfigureAwait(false);

                                    await CommunicationMicroService.SendNotification(participantId, NotificationTypeCodes.OrderShipped, topicId).ConfigureAwait(false);
                                }
                            }
                        }
                    }
                }
                break;
                }

                await Task.CompletedTask.ConfigureAwait(false);
            }
            catch (Exception ex)
            {
                log.Exception(ex);
                throw;
            }
        }
Esempio n. 3
0
        public async Task <Session_Data> GetSession(string userId)
        {
            using var log = BeginFunction(nameof(SessionUserService), nameof(GetSession), userId);
            try
            {
                //AssertIsEndUser(userId);
                await Assert(SecurityPolicy.IsAuthorized, userId).ConfigureAwait(false);

                //using var ctx = QuiltContextFactory.Create();

                var participantReference = CreateParticipantReference.FromUserId(userId);
                var participantId        = await CommunicationMicroService.AllocateParticipantAsync(participantReference).ConfigureAwait(false);

                var svcSummary = await CommunicationMicroService.GetSummaryAsync(participantId).ConfigureAwait(false);

                var result = new Session_Data
                {
                    HasNotifications = svcSummary.HasNotifications,
                    HasMessages      = svcSummary.HasMessages
                };

                //var ordererReference = CreateOrdererReference.FromUserId(userId);
                //var dbOrdererPendingOrder = ctx.OrdererPendingOrders.SingleOrDefault(r => r.Orderer.OrdererReference == ordererReference);

                // HACK: OrderStatus

                /*
                 *  result.CartItemCount = dbOrdererPendingOrder == null
                 *      ? 0
                 *      : dbOrdererPendingOrder.Order.OrderItems.Where(r => r.OrderItemStatusTypeCode == OrderItemStatusTypes.Pending).Count();
                 */

                log.Result(result);

                return(result);
            }
            catch (Exception ex)
            {
                log.Exception(ex);
                throw;
            }
        }
Esempio n. 4
0
        public async Task CreateAlert()
        {
            const int AlertCount = 3;

            var logger = ServiceScope.ServiceProvider.GetService <ILogger <CommunicationTest> >();

            await CommunicationMicroService.AcknowledgeAlertsAsync();

            var mAlerts = await CommunicationMicroService.GetAlertsAsync(int.MaxValue, true);

            Assert.IsNotNull(mAlerts);
            var existingAlertCount = mAlerts.Alerts.Count;

            mAlerts = await CommunicationMicroService.GetAlertsAsync(int.MaxValue, false);

            Assert.IsNotNull(mAlerts);
            Assert.AreEqual(0, mAlerts.Alerts.Count);

            var alertIds = new List <long>();

            for (int idx = 0; idx < AlertCount; ++idx)
            {
                var participantReference = CreateParticipantReference.FromTimestamp(GetUniqueNow());
                logger.LogInformation($"Participant reference = {participantReference}");

                var participantId = await CommunicationMicroService.AllocateParticipantAsync(participantReference);

                logger.LogInformation($"Participant ID = {participantId}");

                var topicReference = CreateTopicReference.FromTimestamp(GetUniqueNow());
                logger.LogInformation($"Topic reference = {topicReference}");

                var topicFields = new Dictionary <string, string>()
                {
                    { "Key1", "Value1" },
                    { "Key2", "Value2" }
                };
                var topicId = await CommunicationMicroService.AllocateTopicAsync(topicReference, topicFields);

                logger.LogInformation($"Topic ID = {topicId}");

                var exception = new Exception("Test Exception");

                var alertId = await CommunicationMicroService.CreateAlert(exception, participantId, topicId);

                logger.LogInformation($"Alert ID = {alertId}");
                alertIds.Add(alertId);

                var mAlert = await CommunicationMicroService.GetAlertAsync(alertId);

                Assert.IsNotNull(mAlert);
                Assert.AreEqual(alertId, mAlert.AlertId);
                Assert.AreEqual(participantId, mAlert.ParticipantId);
                Assert.AreEqual(participantReference, mAlert.ParticipantReference);
                Assert.AreEqual(topicId, mAlert.TopicId);
                Assert.AreEqual(topicReference, mAlert.TopicReference);
                Assert.IsNull(mAlert.AcknowledgementDateTimeUtc);
            }

            mAlerts = await CommunicationMicroService.GetAlertsAsync(int.MaxValue, false);

            Assert.IsNotNull(mAlerts);
            Assert.AreEqual(AlertCount, mAlerts.Alerts.Count);
            foreach (var alertId in alertIds)
            {
                var mAlert = mAlerts.Alerts.Where(r => r.AlertId == alertId).Single();
                Assert.IsNotNull(mAlert);
                Assert.AreEqual(alertId, mAlert.AlertId);
                Assert.IsNull(mAlert.AcknowledgementDateTimeUtc);
            }

            await CommunicationMicroService.AcknowledgeAlertAsync(alertIds[0]);

            mAlerts = await CommunicationMicroService.GetAlertsAsync(int.MaxValue, false);

            Assert.IsNotNull(mAlerts);
            Assert.AreEqual(AlertCount - 1, mAlerts.Alerts.Count);
            Assert.IsNull(mAlerts.Alerts.Where(r => r.AlertId == alertIds[0]).FirstOrDefault());
        }