DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Questions/Controllers/QuestionsController.cs

259 lines
9.4 KiB
C#
Raw Permalink Normal View History

using DamageAssesment.Api.Questions.Interfaces;
using Microsoft.AspNetCore.Authorization;
using DamageAssesment.Api.Questions.Models;
2023-08-15 22:52:30 -05:00
using Microsoft.AspNetCore.Mvc;
namespace DamageAssesment.Api.Questions.Controllers
{
[ApiController]
public class QuestionsController : ControllerBase
{
private readonly IQuestionsProvider questionsProvider;
public QuestionsController(IQuestionsProvider questionsProvider)
{
this.questionsProvider = questionsProvider;
}
2023-08-25 10:36:31 -05:00
/// <summary>
/// GET request for retrieving questions.
/// </summary>
//get all questions
[Authorize(Roles = "admin,survey,user,report")]
2023-10-04 10:55:35 -05:00
[Route("questions")]
[Route("questions/{language:alpha}")]
[HttpGet]
2023-09-08 14:40:06 -05:00
public async Task<IActionResult> GetQuestionsAsync(string? language)
2023-08-15 22:52:30 -05:00
{
2023-09-08 14:40:06 -05:00
var result = await this.questionsProvider.GetQuestionsAsync(language);
2023-08-15 22:52:30 -05:00
if (result.IsSuccess)
{
return Ok(result.Questions);
}
return NoContent();
}
2023-08-25 10:36:31 -05:00
2023-08-15 22:52:30 -05:00
//Get questions based on question id
2023-08-25 10:36:31 -05:00
/// <summary>
/// GET request for retrieving a question by ID.
/// </summary>
[Authorize(Roles = "admin,survey,user,report")]
2023-10-04 10:55:35 -05:00
[Route("questions/{id}/{language:alpha}")]
[Route("questions/{id:int}")]
[HttpGet]
public async Task<IActionResult> GetQuestionByIdAsync(int id, string? language)
2023-08-15 22:52:30 -05:00
{
2023-09-08 14:40:06 -05:00
var result = await this.questionsProvider.GetQuestionAsync(id, language);
2023-08-15 22:52:30 -05:00
if (result.IsSuccess)
{
return Ok(result.Question);
}
return NotFound();
}
2023-08-25 10:36:31 -05:00
2023-08-15 22:52:30 -05:00
//get all questions based on survey id
/// <summary>
/// GET request for retrieving survey questions based on a survey ID.
/// Uri: {Optional language}/GetSurveyQuestions/{surveyId} :Default returns question in all languages
/// </summary>
[Authorize(Roles = "admin,survey,user,report")]
2023-10-04 10:55:35 -05:00
[Route("questions/bysurvey/{surveyId:int}")]
[Route("questions/bysurvey/{surveyId:int}/{language:alpha}")]
2023-08-25 10:36:31 -05:00
[HttpGet]
2023-09-08 14:40:06 -05:00
public async Task<IActionResult> GetSurveyQuestions(int surveyId,string? language)
2023-08-15 22:52:30 -05:00
{
2023-09-08 14:40:06 -05:00
var result = await this.questionsProvider.GetSurveyQuestionAsync(surveyId, language);
2023-08-15 22:52:30 -05:00
if (result.IsSuccess)
{
return Ok(result.SurveyQuestions);
}
return NotFound();
}
/// <summary>
/// PUT request for updating a question (multilingual).
/// </summary>
[Authorize(Roles = "admin")]
2023-10-04 10:55:35 -05:00
[HttpPut("questions")]
2023-08-15 22:52:30 -05:00
public async Task<IActionResult> UpdateQuestion(Models.Question question)
{
if (question != null)
{
var result = await this.questionsProvider.UpdateQuestionAsync(question);
if (result.IsSuccess)
{
return Ok(result.Question);
}
if (result.ErrorMessage == "Not Found")
return NotFound(result.ErrorMessage);
return BadRequest(result.ErrorMessage);
}
return CreatedAtRoute("DefaultApi", new { id = question.Id }, question);
}
/// <summary>
/// POST request for creating a multiple question (multilingual).
/// </summary>
[Authorize(Roles = "admin")]
[HttpPost("questions/multiple")]
public async Task<IActionResult> CreateQuestions(List<Models.Question> questions)
{
if (questions != null)
{
var result = await this.questionsProvider.PostQuestionsAsync(questions);
if (result.IsSuccess)
{
return Ok(result.Question);
}
if (result.ErrorMessage == "Not Found")
return NotFound(result.ErrorMessage);
return BadRequest(result.ErrorMessage);
}
return CreatedAtRoute("DefaultApi",questions);
}
/// <summary>
/// PUT request for update a multiple question (multilingual) for survey.
/// </summary>
[HttpPut("questions/multiple/{surveyid}")]
public async Task<IActionResult> CreateQuestions(int surveyid, List<Models.Question> questions)
{
if (questions != null)
{
var result = await this.questionsProvider.PutQuestionsAsync(surveyid,questions);
if (result.IsSuccess)
{
return Ok(result.Question);
}
if (result.ErrorMessage == "Not Found")
return NotFound(result.ErrorMessage);
return BadRequest(result.ErrorMessage);
}
return CreatedAtRoute("DefaultApi", questions);
}
/// <summary>
/// POST request for creating a new question (multilingual).
/// </summary>
[Authorize(Roles = "admin")]
2023-10-04 10:55:35 -05:00
[HttpPost("questions")]
2023-08-15 22:52:30 -05:00
public async Task<IActionResult> CreateQuestion(Models.Question question)
{
if (question != null)
{
var result = await this.questionsProvider.PostQuestionAsync(question);
if (result.IsSuccess)
{
return Ok(result.Question);
}
return BadRequest(result.ErrorMessage);
}
return CreatedAtRoute("DefaultApi", new { id = question.Id }, question);
}
/// <summary>
/// DELETE request for deleting a question based on ID.
/// </summary>
[Authorize(Roles = "admin")]
2023-10-04 10:55:35 -05:00
[HttpDelete("questions/{id}")]
2023-08-15 22:52:30 -05:00
public async Task<IActionResult> DeleteQuestion(int id)
{
var result = await this.questionsProvider.DeleteQuestionAsync(id);
if (result.IsSuccess)
{
return Ok(result.Question);
}
return NotFound();
}
/// <summary>
/// GET request for retrieving question categories.
/// </summary>
[Authorize(Roles = "admin,user,report")]
2023-10-04 10:55:35 -05:00
[HttpGet("questions/categories")]
[HttpGet("questions/categories/{language:alpha}")]
2023-09-08 14:40:06 -05:00
public async Task<IActionResult> GetQuestionCategoriesAsync(string? language)
2023-08-15 22:52:30 -05:00
{
2023-09-08 14:40:06 -05:00
var result = await this.questionsProvider.GetQuestionCategoriesAsync(language);
2023-08-15 22:52:30 -05:00
if (result.IsSuccess)
{
return Ok(result.QuestionCategories);
}
return NoContent();
}
/// <summary>
/// GET request for retrieving a question category by ID.
/// </summary>
[Authorize(Roles = "admin,report")]
2023-10-04 10:55:35 -05:00
[HttpGet("questions/categories/{id:int}")]
[HttpGet("questions/categories/{id:int}/{language:alpha}")]
2023-09-08 14:40:06 -05:00
public async Task<IActionResult> GetQuestionCategoryAsync(int id,string? language)
2023-08-15 22:52:30 -05:00
{
2023-09-08 14:40:06 -05:00
var result = await this.questionsProvider.GetQuestionCategoryAsync(id, language);
2023-08-15 22:52:30 -05:00
if (result.IsSuccess)
{
return Ok(result.QuestionCategory);
}
return NotFound();
}
/// <summary>
/// PUT request for updating a question category.
/// </summary>
[Authorize(Roles = "admin,survey,report")]
2023-10-04 10:55:35 -05:00
[HttpPut("questions/categories")]
2023-08-15 22:52:30 -05:00
public async Task<IActionResult> UpdateQuestionCategory(Models.QuestionCategory questionCategory)
{
if (questionCategory != null)
{
var result = await this.questionsProvider.UpdateQuestionCategoryAsync(questionCategory);
if (result.IsSuccess)
{
return Ok(result.QuestionCategory);
}
if (result.ErrorMessage == "Not Found")
return NotFound(result.ErrorMessage);
return BadRequest(result.ErrorMessage);
}
return CreatedAtRoute("DefaultApi", new { id = questionCategory.Id }, questionCategory);
}
/// <summary>
/// POST request for creating a new question category.
/// </summary>
[Authorize(Roles = "admin")]
2023-10-04 10:55:35 -05:00
[HttpPost("questions/categories")]
2023-08-15 22:52:30 -05:00
public async Task<IActionResult> CreateQuestionCategory(Models.QuestionCategory questionCategory)
{
if (questionCategory != null)
{
var result = await this.questionsProvider.PostQuestionCategoryAsync(questionCategory);
if (result.IsSuccess)
{
return Ok(result.QuestionCategory);
}
return BadRequest(result.ErrorMessage);
}
return CreatedAtRoute("DefaultApi", new { id = questionCategory.Id }, questionCategory);
}
/// <summary>
/// DELETE request for deleting a question category based on ID.
/// </summary>
[Authorize(Roles = "admin")]
2023-10-04 10:55:35 -05:00
[HttpDelete("questions/categories/{id}")]
2023-08-15 22:52:30 -05:00
public async Task<IActionResult> DeleteQuestionCategory(int id)
{
var result = await this.questionsProvider.DeleteQuestionCategoryAsync(id);
if (result.IsSuccess)
{
return Ok(result.QuestionCategory);
}
return NotFound();
}
}
}