73 lines
2.9 KiB
C#
73 lines
2.9 KiB
C#
using DamageAssesment.Api.Responses.Interfaces;
|
|
using DamageAssesment.Api.Responses.Models;
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
namespace DamageAssesment.Api.Responses.Services
|
|
{
|
|
public class AnswerServiceProvider : ServiceProviderBase, IAnswerServiceProvider
|
|
{
|
|
public AnswerServiceProvider(IConfiguration configuration, IHttpUtil httpUtil, ILogger<AnswerServiceProvider> logger) : base(configuration, httpUtil, logger, configuration.GetValue<string>("RessourceSettings:Answer"), configuration.GetValue<string>("EndPointSettings:AnswerUrlBase"))
|
|
{
|
|
}
|
|
public async Task<List<Answer>> getAnswersAsync()
|
|
{
|
|
try
|
|
{
|
|
var responseJsonString = await httpUtil.SendAsync(HttpMethod.Get, url, null);
|
|
var answers = JsonConvert.DeserializeObject<List<Answer>>(responseJsonString);
|
|
|
|
if (answers == null || !answers.Any())
|
|
return new List<Answer>();
|
|
else return answers;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
logger?.LogError($"Exception Found : {ex.Message} - Ref: AnswerServiceProvider.getAnswersAsync()");
|
|
return new List<Answer>();
|
|
}
|
|
}
|
|
|
|
public async Task<List<Answer>> GetAnswersByResponseIdAsync(int responseId)
|
|
{
|
|
try
|
|
{
|
|
url = urlBase + string.Format(configuration.GetValue<string>("RessourceSettings:AnswerByResponse"), responseId);
|
|
var responseJsonString = await httpUtil.SendAsync(HttpMethod.Get, url, null);
|
|
var answers = JsonConvert.DeserializeObject<List<Answer>>(responseJsonString);
|
|
|
|
if (answers == null || !answers.Any())
|
|
return new List<Answer>();
|
|
else return answers;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
logger?.LogError($"Exception Found : {ex.Message} - Ref: AnswerServiceProvider.GetAnswersByResponseId()");
|
|
return new List<Answer>();
|
|
}
|
|
}
|
|
|
|
public async Task<Answer> PostAnswersAsync(Answer answer)
|
|
{
|
|
try
|
|
{
|
|
var requestJsonString = JsonConvert.SerializeObject(answer);
|
|
var responseJsonString = await httpUtil.SendAsync(HttpMethod.Post, url, requestJsonString);
|
|
var answers = JsonConvert.DeserializeObject<Answer>(responseJsonString);
|
|
|
|
if (answers == null)
|
|
{
|
|
logger?.LogError($"Answers cannot be added - Ref: AnswerServiceProvider.PostAnswersAsync()");
|
|
return null;
|
|
}
|
|
else return answers;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
logger?.LogError($"Exception Found : {ex.Message} - Ref: AnswerServiceProvider.PostAnswersAsync()");
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|