Esempio n. 1
0
 private static void WriteAnalysis(List <Question> questions, GradingRules rules)
 {
     questions.Sort((q1, q2) => q1.Position.CompareTo(q2.Position));
     using (var output = new CsvWriter(new StreamWriter(@"..\..\" + GetQuizFilename())))
     {
         rules.Write(output, questions);
     }
 }
Esempio n. 2
0
        public static void GetAnswers()
        {
            // Get the short-answer questions that appear on the quiz
            List <Question> questions = GetQuestions();

            Console.WriteLine(questions.Count + " short answer questions found");

            // Get information about all submissions to the quiz
            AllAttempts allAttempts = GetAllAttempts(questions);

            Console.WriteLine(allAttempts.Count + " attempts found");

            // Organize into grading rules
            GradingRules rules = new GradingRules(questions, allAttempts);

            // Write the information to a CSV
            Console.Write("Write results to " + GetQuizFilename() + "? [y/n] ");
            if (Console.ReadLine().Trim().ToLower() == "y")
            {
                WriteAnalysis(questions, rules);
            }
        }
Esempio n. 3
0
        public static void SetScores()
        {
            // Get information about all of the short answer questions that appear on the quiz
            List <Question> questions = GetQuestions();

            Console.WriteLine(questions.Count + " short answer questions found");

            // Get information about all submissions to the quiz
            List <Submission> submissions = GetSubmissions();

            Console.WriteLine(submissions.Count + " submissions found");

            // Get information about attempts
            AllAttempts attempts = GetAllAttempts(questions);

            Console.WriteLine(attempts.Count + " attempts found");

            // Read the grading rules for this quiz
            GradingRules rules;

            using (var input = new CsvReader(new StreamReader(@"..\..\" + GetQuizFilename())))
            {
                rules = new GradingRules(input);
            }
            Console.WriteLine(GetQuizFilename() + " is based on " + rules.Count + " attempts");

            // Warn the user
            int delta = attempts.Count - rules.Count;

            if (delta != 0)
            {
                Console.WriteLine("There have " + delta + " attempts since " + GetQuizFilename() + " was created");
                Console.WriteLine("You should recreate that file");
            }

            // Make sure we proceed
            Console.Write("Update grades in Canvas? [y/n] ");
            if (Console.ReadLine().Trim().ToLower() != "y")
            {
                return;
            }

            // Change the grade of attempt if necessary
            foreach (Attempt attempt in attempts.GetAttempts())
            {
                Submission submission = GetSubmission(submissions, attempt.UserID, attempt.Number);

                dynamic correction = GetCorrection(attempt, questions, rules, out string name);
                if (correction == null)
                {
                    Console.WriteLine("unchanged (v" + attempt.Number + ") " + name);
                }
                else if (submission == null)
                {
                    Console.WriteLine("*MISSING* (v" + attempt.Number + ") " + name);
                }
                else
                {
                    using (HttpClient client = CanvasHttp.MakeClient())
                    {
                        String url     = String.Format("/api/v1/courses/{0}/quizzes/{1}/submissions/{2} ", Auth.COURSE_ID, quizID, submission.Id);
                        var    content = new StringContent(correction.ToString(), Encoding.UTF8, "application/json");
                        HttpResponseMessage response = client.PutAsync(url, content).Result;
                        //HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);

                        if (response.IsSuccessStatusCode)
                        {
                            Console.WriteLine("updated   (v" + attempt.Number + ") " + name);
                        }
                        else
                        {
                            Console.WriteLine("*FAILED*  (v" + attempt.Number + ") " + name + " " + response.StatusCode);
                            return;
                        }
                    }
                }
            }
        }
Esempio n. 4
0
        private static dynamic GetCorrection(Attempt attempt, IList <Question> questions, GradingRules rules, out string name)
        {
            name = attempt.UserName;

            JObject questionsObj = null;

            foreach (Question q in questions)
            {
                Answer realAnswer = attempt.GetAnswer(q.Id);
                Answer ruleAnswer = rules.GetAnswer(q.Id, realAnswer.Text);

                if (realAnswer.Points != ruleAnswer.Points || ruleAnswer.Comment.Length > 0)
                {
                    if (questionsObj == null)
                    {
                        questionsObj = new JObject();
                    }

                    JObject change = new JObject();
                    if (realAnswer.Points != ruleAnswer.Points)
                    {
                        change["score"] = ruleAnswer.Points;
                    }
                    if (ruleAnswer.Comment.Length > 0)
                    {
                        change["comment"] = ruleAnswer.Comment;
                    }
                    questionsObj[q.Id.ToString()] = change;
                }
            }

            if (questionsObj != null)
            {
                JObject correction = new JObject();
                JArray  items      = new JArray();
                correction["quiz_submissions"] = items;
                JObject attemptObj = new JObject();
                items.Add(attemptObj);
                attemptObj["attempt"]   = attempt.Number;
                attemptObj["questions"] = questionsObj;
                return(correction);
            }
            else
            {
                return(null);
            }
        }