Exemple #1
0
        public QuestionModel FetchQuestionFromAPI(APIRequestModel apiRequestModel)
        {
            //Creates a variable URL based on user input.
            string        requestString = "" + apiRequestModel.BaseURL + "amount=" + apiRequestModel.Amount + "&category=" + apiRequestModel.Category + "&difficulty = medium" + "&type=" + apiRequestModel.Type + "";
            string        rawJSON       = getQuestionDataRepository.SelectJSONFromAPI(requestString);
            QuestionModel questionModel = JsonConvert.DeserializeObject <QuestionModel>(rawJSON);

            getQuestionDataRepository.InsertQuestionDatabase(questionModel.Question, questionModel.Incorrect_Answers, questionModel.Correct_Answer, apiRequestModel.Difficulty, apiRequestModel.Category);
            return(questionModel);
        }
Exemple #2
0
        public QuestionModel FillQuestionModel(APIRequestModel apiRequestModel)
        {//Get question from API or DB
            QuestionModel questionModel = FetchQuestionFromAPI(apiRequestModel);

            if (questionModel.Question == null)
            {//Checks if API responded with a question otherwise uses code below to get one from the DB.
                questionModel = new QuestionModel(getQuestionDataRepository.SelectQuestionDatabase(apiRequestModel.Difficulty, apiRequestModel.Category));
            }
            return(questionModel);
        }