Exemplo n.º 1
0
        public void NotifyAsync()
        {
            Task.Run(async() =>
            {
                using var scope           = _serviceScopeFactory.CreateScope();
                var _chatEventRepository  = scope.ServiceProvider.GetService <IChatEventRepository>();
                var _chatActionRepository = scope.ServiceProvider.GetService <IBotActionOnEventRepository>();
                var _botRepository        = scope.ServiceProvider.GetService <IBotRepository>();
                var context = scope.ServiceProvider.GetService <ChatNpgSQLContext>();

                ChatEvent chatEvent;
                while ((chatEvent = await _chatEventRepository.FindNewAndUpdateAsync()) != null)
                {
                    string[] names = await _botRepository.GetBotsNamesByDialogIdAsync(chatEvent.DialogId);

                    ActionTypes actionType          = (ActionTypes)chatEvent.TypeOfActionId;
                    ChatEventGetDTO chatEventGetDTO = _mapper.Map <ChatEventGetDTO>(chatEvent);
                    foreach (var response in _botManager.BotOnEvent(chatEventGetDTO, names, actionType))
                    {
                        if (!String.IsNullOrEmpty(response.Message))
                        {
                            BotActionOnEvent botAction = new BotActionOnEvent()
                            {
                                ChatEvent   = chatEvent,
                                BotResponse = response.Message,
                                BotName     = response.BotName
                            };
                            _chatActionRepository.Add(botAction);
                        }
                    }
                    chatEvent.State = 2;
                    await context.SaveChangesAsync();
                }
            });
        }
Exemplo n.º 2
0
 public void Add(BotActionOnEvent obj)
 {
     _context.BotActionOnEvents.Add(obj);
 }