public async Task <CreateCompanyAndXUsersTxn_Output> Execute(CreateCompanyAndXUsersTxn_Input input, IServiceProvider serviceProvider, MVCDbContext contextFatherMVC = null, bool autoCommit = true)
        {
            CreateCompanyAndXUsersTxn_Output output = new CreateCompanyAndXUsersTxn_Output();

            output.ResultConfirmation = resultConfirmation.resultBad(_ResultMessage: "TXN_NOT_STARTED");
            //String userType = "User";

            // Error handling
            bool error = false; // To Handle Only One Error

            try
            {
                MVCDbContext contextMVC = (contextFatherMVC != null) ? contextFatherMVC : new MVCDbContext();
                // An using statement is in reality a try -> finally statement, disposing the element in the finally. So we need to take advance of that to create a DBContext inheritance
                try
                {
                    // DBContext by convention is a UnitOfWork, track changes and commits when SaveChanges is called
                    // Multithreading issue: so if we use only one DBContext, it will track all entities (_context.Customer.Add) and commit them when SaveChanges is called,
                    // No Matter what transactions or client calls SaveChanges.
                    // Note: Rollback will not remove the entities from the tracker in the context. so better dispose it.

                    //***** 0. Make The Validations - Be careful : Concurrency. Same name can be saved multiple times if called at the exact same time. Better have an alternate database constraint

                    // Call the Transaction to Create the Company

                    //CreateCompanyTxn_Input CreateCompanyTxn_Input = new CreateCompanyTxn_Input { Company = input.Company };
                    //CreateCompanyTxn_Output CreateCompanyTxn = await new GraphQLMutation().CreateCompanyTxn(input: CreateCompanyTxn_Input, serviceProvider: serviceProvider);

                    CreateCompanyTxn_Input CreateCompanyTxn_Input = new CreateCompanyTxn_Input {
                        Company = input.Company
                    };
                    CreateCompanyTxn_Output CreateCompanyTxn = await new CreateCompanyTxn().Execute(input: CreateCompanyTxn_Input, serviceProvider: serviceProvider);

                    if (!CreateCompanyTxn.ResultConfirmation.resultPassed)
                    {
                        // Return the error as it is from the transaction
                        error = true;
                        output.ResultConfirmation = CreateCompanyTxn.ResultConfirmation;
                        return(output);
                    }

                    output.Company = CreateCompanyTxn.Company;

                    // Now create a loop to create the X users. Use the same database
                    for (int x = 1; x <= input.UsersToCreate; x++)
                    {
                        userApp newUser = new userApp {
                            firstName = "Name" + x, lastName = "LastName" + x, nickname = "Nickname" + x, userName = CreateCompanyTxn.Company.companyId + "--" + x.ToString()
                        };

                        CreateUserTxn_Input CreateUserTxn_Input = new CreateUserTxn_Input {
                            Company = CreateCompanyTxn.Company, User = newUser
                        };
                        CreateUserTxn_Output CreateUserTxn = await new CreateUserTxn().Execute(input: CreateUserTxn_Input, serviceProvider: serviceProvider, contextFatherMVC: contextMVC);

                        if (!CreateUserTxn.ResultConfirmation.resultPassed)
                        {
                            // Return the error as it is from the transaction
                            error = true;
                            output.ResultConfirmation = CreateUserTxn.ResultConfirmation;
                            return(output);
                        }
                    }


                    // Logic, first create All the users in MVC Database. Commit, if something goes wrong return Error, if OK create users in master user App table.

                    //
                    // UserManager<IdentityUser> _userManager = serviceProvider.GetService<UserManager<IdentityUser>>();

                    /*
                     * UserManager<IdentityUser> _userManager = serviceProvider.GetService<UserManager<IdentityUser>>();
                     *
                     * var user = new IdentityUser { UserName = input.user.UserName, Email = input.user.Email, PasswordHash = input.user.PasswordHash };
                     * var result = await _userManager.CreateAsync(user);
                     *
                     * if (!result.Succeeded)
                     * {
                     *  error = true;
                     *  _output.ResultConfirmation = ResultConfirmation.resultBad(_ResultMessage: "USER_NOT_CREATED_ERROR", _ResultDetail: result.Errors.FirstOrDefault().Description); // If OK
                     *  List<ItemKey> resultKeys = new List<ItemKey>();
                     *
                     *  foreach (var errorDesc in result.Errors)
                     *  {
                     *      resultKeys.Add(new ItemKey(errorDesc.Code, errorDesc.Description));
                     *  }
                     *
                     *  _output.ResultConfirmation.ResultDictionary = resultKeys;
                     *
                     * }
                     */

                    if (!error)
                    {
                        //***** 1. Create the token (Atomic because is same Context DB)

                        /*
                         * // Save the Name Claim into the database
                         * var _claims = new[]{
                         *  new Claim(ClaimTypes.Name, user.Id)
                         *  ,new Claim("UserType", userType) // Create the token without Manager status, then add the claim in database
                         * };
                         *
                         * var resultClaims = await _userManager.AddClaimsAsync(user, _claims); // Save claims in the Database
                         *
                         *
                         *
                         * // Call transaction to get a new Token (we call the Mutation not the class itself)
                         * var tokenString = "";
                         * CreateTokenTxn_Input createTokenTxn_Input = new CreateTokenTxn_Input { userAppId = user.Id };
                         * CreateTokenTxn_Output createTokenTxn = await new GraphQLMutation().CreateTokenTxn(input: createTokenTxn_Input, serviceProvider: serviceProvider);
                         * if (createTokenTxn.resultConfirmation.ResultPassed)
                         * {
                         *  tokenString = createTokenTxn.token;
                         * }
                         */


                        //***** 4. Save and Commit to the Database (Atomic because is same Context DB)
                        if (!error && autoCommit)
                        {
                            await contextMVC.SaveChangesAsync(); // Call it only once so do all other operations first
                        }

                        //***** 5. Execute Send e-mails or other events once the database has been succesfully saved
                        //***** If this task fails, there are options -> 1. Retry multiple times 2. Save the event as Delay, 3.Rollback Database, Re

                        //***** 6. Confirm the Result (Pass | Fail) If gets to here there are not errors then return the new data from database
                        output.ResultConfirmation = resultConfirmation.resultGood(_ResultMessage: "COMPANY_SUCESSFULLY_CREATED"); // If OK
                        //_output.token = tokenString; // The token
                        //_output.user = input.user;
                    }// if (!error)
                }
                finally
                {
                    // If the context Father is null the context was created on his own, so dispose it
                    if (contextMVC != null && contextFatherMVC == null)
                    {
                        contextMVC.Dispose();
                    }
                }
            }
            catch (Exception ex) // Main try
            {
                System.Diagnostics.Debug.WriteLine("Error: " + ex.Message);
                string innerError = (ex.InnerException != null) ? ex.InnerException.Message : "";
                System.Diagnostics.Debug.WriteLine("Error Inner: " + innerError);
                output = new CreateCompanyAndXUsersTxn_Output(); // Restart variable to avoid returning any already saved data
                output.ResultConfirmation = resultConfirmation.resultBad(_ResultMessage: "EXCEPTION", _ResultDetail: ex.Message);
            }
            finally
            {
                // Save Logs if needed
            }

            return(output);
        }
Exemple #2
0
        public async Task <AddCommentToChatTxn_Output> Execute(AddCommentToChatTxn_Input input, MVCDbContext contextFather = null, bool autoCommit = true, IEventSender eventSender = null, IEventRegistry eventRegistry = null)
        {
            AddCommentToChatTxn_Output output = new AddCommentToChatTxn_Output();

            output.ResultConfirmation = resultConfirmation.resultBad(_ResultMessage: "TXN_NOT_STARTED");

            // Error handling
            bool                error         = false; // To Handle Only One Error
            DateTime            nowUTC        = DateTime.UtcNow;
            List <notification> notifications = new List <notification>();

            try
            {
                MVCDbContext contextMGT = (contextFather != null) ? contextFather : new MVCDbContext();
                // An using statement is in reality a try -> finally statement, disposing the element in the finally. So we need to take advance of that to create a DBContext inheritance
                try
                {
                    // DBContext by convention is a UnitOfWork, track changes and commits when SaveChanges is called
                    // Multithreading issue: so if we use only one DBContext, it will track all entities (_context.Customer.Add) and commit them when SaveChanges is called,
                    // No Matter what transactions or client calls SaveChanges.
                    // Note: Rollback will not remove the entities from the tracker in the context. so better dispose it.

                    //***** 0. Make The Validations - Be careful : Concurrency. Same name can be saved multiple times if called at the exact same time. Better have an alternate database constraint

                    // Call database to validate ChatId and UserId existance or just try to execute the query and if it fails is because one of those is wrong

                    /*
                     * Chat chatDb = await contextMGT.Chat.Where(x => x.ChatId == input.Comment.ChatId).FirstOrDefaultAsync();
                     *
                     * if (chatDb == null)
                     * {
                     *  error = true;
                     *  output.ResultConfirmation = ResultConfirmation.resultBad(_ResultMessage: "CHAT_DOES_NOT_EXIST_ERROR", _ResultDetail: "");
                     * }
                     */

                    // Call Database to validate that: 1. ChatId exists 2. User Exists 3. User is part of the Company 4. User is Participant of the Chat


                    chat chatDb0 = await contextMGT.Chat.Include(o => o.participants)
                                   .Where(x => x.chatId == input.Comment.chatId)
                                   .Where(x => x.participants.Any(y => y.userAppId.Equals(input.Comment.userAppId)))
                                   .FirstOrDefaultAsync();


                    chat chatDb = await contextMGT.Chat
                                  .Where(x => x.chatId == input.Comment.chatId)
                                  .Where(x => x.participants.Any(y => y.userAppId.Equals(input.Comment.userAppId)))
                                  .Include(o => o.participants)
                                  //.ThenInclude(i => i.User)
                                  .FirstOrDefaultAsync();



                    /*
                     * var blogs = context.Blogs
                     * .Include(blog => blog.Posts)
                     * .ThenInclude(post => post.Author)
                     * .ThenInclude(author => author.Photo)
                     * .ToList();
                     */

                    //.Where(x => x.ChatId == input.Comment.ChatId)
                    ; // 1. ChatId exists

                    if (chatDb == null)
                    {
                        error = true;
                        output.ResultConfirmation = resultConfirmation.resultBad(_ResultMessage: "USER_NOT_AUTHORIZED");
                    }

                    // Find and validate user. Future: Create a transaction

                    userApp userApp = await contextMGT.UserApp.Where(x => x.userAppId.Equals(input.Comment.userAppId)).FirstOrDefaultAsync();

                    if (userApp == null)
                    {
                        error = true;
                        output.ResultConfirmation = resultConfirmation.resultBad(_ResultMessage: "USER_NOT_FOUND");
                    }


                    if (!error)
                    {
                        //***** 1. Create the Comment (Atomic because is same Context DB)

                        // Update the Chat
                        chatDb.updatedAt = nowUTC;
                        contextMGT.Chat.Update(chatDb);

                        // Create the Chat To Save
                        input.Comment.commentId = 0;
                        input.Comment.createdAt = DateTime.UtcNow;

                        // Create and Save the CommentInfo for each user.

                        var query = from user in chatDb.participants
                                    where !user.userAppId.Equals(input.Comment.userAppId)
                                    select new commentInfo {
                            commentInfoId = 0, commentId = 0, createdAt = nowUTC, delivered = false, seen = false, userAppId = user.userAppId
                        };
                        // the current user must be Seen = True; SeenAt = NowUTC
                        commentInfo ThisUser = new commentInfo {
                            commentInfoId = 0, commentId = 0, createdAt = nowUTC, delivered = false, seen = true, seenAt = nowUTC, userAppId = input.Comment.userAppId
                        };

                        input.Comment.commentsInfo = new List <commentInfo>();
                        input.Comment.commentsInfo = query.ToList();
                        input.Comment.commentsInfo.Add(ThisUser);

                        // Save the chat to the context
                        contextMGT.Comment.Add(input.Comment);

                        //***** 4. Save and Commit to the Database (Atomic because is same Context DB)
                        if (!error && autoCommit)
                        {
                            // This commit returns the user from Database and updates input.Comment
                            await contextMGT.SaveChangesAsync(); // Call it only once so do all other operations first
                        }



                        // Save the notifications

                        String chatGroup = (chatDb.participants.Count > 1) ? chatDb.name : "";

                        // Send to everyone except to himself
                        var queryNotification = from user in chatDb.participants
                                                where user.userAppId != userApp.userAppId
                                                select new notification
                        {
                            notificationId = 0,
                            type           = "NewComment",
                            title          = "*NewComment*",
                            subtitle       = chatGroup,
                            body           = chatGroup + " *has a new comment from* " + userApp.userName,
                            message        = input.Comment.message,
                            toUserAppId    = user.userAppId,
                            route          = "Comment",
                            routeAction    = "New",
                            routeId        = input.Comment.commentId.ToString(),
                            createdAt      = nowUTC,
                            seen           = false
                        };

                        notifications = queryNotification.ToList();

                        // Save the Notifications to the context
                        contextMGT.Notification.AddRange(notifications);

                        if (!error && autoCommit)
                        {
                            // This commit returns the user from Database and updates input.Comment
                            await contextMGT.SaveChangesAsync(); // Call it only once so do all other operations first
                        }

                        //***** 5. Execute Send e-mails or other events once the database has been succesfully saved
                        //***** If this task fails, there are options -> 1. Retry multiple times 2. Save the event as Delay, 3.Rollback Database, Re

                        //***** 6. Confirm the Result (Pass | Fail) If gets to here there are not errors then return the new data from database
                        output.ResultConfirmation = resultConfirmation.resultGood(_ResultMessage: "COMMENT_SUCESSFULLY_CREATED"); // If OK
                        output.Comment            = input.Comment;
                    }// if (!error)

                    if (!error) // Send the notification to the subscriptors
                    {
                        // Create a Notification Queue

                        //var result = eventSender.SendAsync(new OnEventMessageDefault<Comment>(eventName: "onCommentAddedToChat", argumentTag: "chatId", argumentValue: output.Comment.ChatId.ToString(), outputType: output.Comment));
                        // Send the notification to each user * New Logic *

                        foreach (var notification in notifications)
                        {
                            var result = eventSender.SendAsync(new OnEventMessageDefault <notification>(eventName: "onNotificationToUser", argumentTag: "userAppId", argumentValue: notification.toUserAppId, outputType: notification));
                        }

                        /*
                         * String chatGroup = (chatDb.Participants.Count > 1) ? " @ " + chatDb.Name : "";
                         *
                         * int countDelivered = 0;
                         * foreach (var user in chatDb.Participants)
                         * {
                         *  String message = output.Comment.Message + " Mr. " + user.UserAppId;
                         *
                         *  message = userApp.UserName + " Says " + output.Comment.Message + chatGroup;
                         *  Notification notification = new Notification { NotificationId = 0, Created = nowUTC, Message = message };
                         *  var result = eventSender.SendAsync(new OnEventMessageDefault<Notification>(eventName: "onNotificationToUser", argumentTag: "userAppId", argumentValue: user.UserAppId, outputType: notification));
                         *
                         *  if (result.IsCompletedSuccessfully)
                         *  {
                         *      countDelivered++;
                         *  }
                         *
                         *
                         * }
                         */



                        //
                    }
                }
                finally
                {
                    // If the context Father is null the context was created on his own, so dispose it
                    if (contextMGT != null && contextFather == null)
                    {
                        contextMGT.Dispose();
                    }
                }
            }
            catch (Exception ex) // Main try
            {
                System.Diagnostics.Debug.WriteLine("Error: " + ex.Message);
                string innerError = (ex.InnerException != null) ? ex.InnerException.Message : "";
                System.Diagnostics.Debug.WriteLine("Error Inner: " + innerError);
                output = new AddCommentToChatTxn_Output(); // Restart variable to avoid returning any already saved data
                output.ResultConfirmation = resultConfirmation.resultBad(_ResultMessage: "EXCEPTION", _ResultDetail: ex.Message);
            }
            finally
            {
                // Save Logs if needed
            }

            return(output);
        }