コード例 #1
0
        public ActionResult Register(SessionModel model)
        {
            Session["SessionModel"] = model;

            if (model == null || string.IsNullOrEmpty(model.UserName) || model.TestId < 1)
            {
                TempData["message"] = "Invalid Registration details. Please try again";
                return(RedirectToAction("Index"));
            }

            var _ctx = new OESEntities1();
            //to register the user

            Student _user = _ctx.Students.Where(x => x.Name.Equals(model.UserName, StringComparison.InvariantCultureIgnoreCase) &&
                                                ((string.IsNullOrEmpty(model.Email) && string.IsNullOrEmpty(x.Email)) || (x.Email == model.Email)) &&
                                                ((string.IsNullOrEmpty(model.Phone) && string.IsNullOrEmpty(x.Phone)) || (x.Phone == model.Phone))).FirstOrDefault();

            if (_user == null)
            {
                _user = new Student()
                {
                    Name        = model.UserName,
                    Email       = model.Email,
                    Phone       = model.Phone,
                    EntryDate   = DateTime.UtcNow,
                    AccessLevel = "Normal"
                };

                _ctx.Students.Add(_user);
                _ctx.SaveChanges();
            }

            Registration registration = _ctx.Registrations.Where(x => x.StudentId == _user.Id &&
                                                                 x.TestId == model.TestId &&
                                                                 x.TokenExpireTime > DateTime.UtcNow).FirstOrDefault();

            if (registration != null)
            {
                this.Session["TOKEN"]       = registration.Token;
                this.Session["TOKENEXPIRE"] = registration.TokenExpireTime;
            }

            else
            {
                Test test = _ctx.Tests.Where(x => (x.IsActive == 1) && x.Id == model.TestId).FirstOrDefault();
                if (test != null)
                {
                    Registration newRegistration = new Registration();
                    {
                        newRegistration.RegistrationDate = DateTime.UtcNow;
                        newRegistration.TestId           = model.TestId;
                        newRegistration.Token            = Guid.NewGuid();
                        newRegistration.TokenExpireTime  = DateTime.UtcNow.AddMinutes((double)test.DurationInMinute);
                    }

                    _user.Registrations.Add(newRegistration);
                    _ctx.Registrations.Add(newRegistration);
                    _ctx.SaveChanges();
                    this.Session["TOKEN"]       = newRegistration.Token;
                    this.Session["TOKENEXPIRE"] = newRegistration.TokenExpireTime;
                }
            }
            return(RedirectToAction("EvalPage", new { @token = Session["TOKEN"] }));
        }
コード例 #2
0
        public ActionResult PostAnswer(AnswerModel choices)
        {
            var _ctx         = new OESEntities1();
            var registration = _ctx.Registrations.Where(x => x.Token.Equals(choices.Token)).FirstOrDefault();

            if (registration == null)
            {
                TempData["message"] = "This token is invalid";
                return(RedirectToAction("Ïndex"));
            }
            if (registration.TokenExpireTime < DateTime.UtcNow)
            {
                TempData["message"] = "The exam duration has expired at" + registration.TokenExpireTime.ToString();
                return(RedirectToAction("Ïndex"));
            }

            var testQuestionInfo = _ctx.TestXQuestions.Where(x => x.TestId == registration.TestId &&
                                                             x.QuestionNumber == choices.QuestionId)
                                   .Select(x => new
            {
                TQId  = x.Id,
                QT    = x.Question.QuestionType,
                QID   = x.Id,
                POINT = (double)x.Question.Points
            }).FirstOrDefault();

            if (testQuestionInfo != null)
            {
                if (choices.UserChoices.Count > 1)
                {
                    var allPointValueOfChoices =
                        (
                            from a in _ctx.Choices.Where(x => (x.isActive == 1))
                            join b in choices.UserSelectedId on a.Id equals b
                            select new { a.Id, Points = (double)a.Points }).AsEnumerable()
                        .Select(x => new TestXPaper()
                    {
                        RegistrationId  = registration.Id,
                        TestXQuestionId = testQuestionInfo.QID,
                        ChoiceId        = x.Id,
                        Answer          = "CHECKED",
                        MarkScored      = Math.Floor(testQuestionInfo.POINT / 100.00D) * (x.Points)
                    }
                                ).ToList();

                    _ctx.TestXPapers.AddRange(allPointValueOfChoices);
                }
                else
                {
                    //the answer is of type TEXT
                    _ctx.TestXPapers.Add(new TestXPaper()
                    {
                        RegistrationId  = registration.Id,
                        TestXQuestionId = testQuestionInfo.QID,
                        ChoiceId        = choices.UserChoices.FirstOrDefault().ChoiceId,
                        MarkScored      = 10.0
                    });
                }

                _ctx.SaveChanges();
            }

            //get the next question depending on the direction

            var nextQuestionNumber = 1;

            if (choices.Direction.Equals("forward", StringComparison.CurrentCultureIgnoreCase))
            {
                nextQuestionNumber = _ctx.TestXQuestions.Where(x => x.TestId == choices.TestId &&
                                                               x.QuestionNumber > choices.QuestionId)
                                     .OrderBy(x => x.QuestionNumber).Take(1).Select(x => x.QuestionNumber).FirstOrDefault();
            }

            else
            {
                nextQuestionNumber = _ctx.TestXQuestions.Where(x => x.TestId == choices.TestId &&
                                                               x.QuestionNumber > choices.QuestionId)
                                     .OrderByDescending(x => x.QuestionNumber).Take(1).Select(x => x.QuestionNumber).FirstOrDefault();
            }

            if (nextQuestionNumber < 1)
            {
                nextQuestionNumber = 1;
            }


            return(RedirectToAction("EvalPage", new
            {
                @token = Session["TOKEN"],
                @qno = nextQuestionNumber
            }));
        }