2023-08-31 12:20:06 +02:00
|
|
|
using System.Collections.Generic;
|
2022-08-30 15:42:25 +02:00
|
|
|
using System.Linq;
|
2024-04-09 12:53:23 +02:00
|
|
|
using ShareeBike.Model.MiniSurvey;
|
|
|
|
using ShareeBike.Repository.Response;
|
2022-08-30 15:42:25 +02:00
|
|
|
|
2024-04-09 12:53:23 +02:00
|
|
|
namespace ShareeBike.Model.Connector.Updater
|
2022-08-30 15:42:25 +02:00
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
public static class BookingFinishedModelFactory
|
|
|
|
{
|
|
|
|
/// <summary> Creates a booking finished object from response.</summary>
|
|
|
|
/// <param name="response">Response to create survey object from.</param>
|
|
|
|
public static BookingFinishedModel Create(this DoReturnResponse response)
|
|
|
|
{
|
|
|
|
var bookingFinished = new BookingFinishedModel
|
|
|
|
{
|
2023-09-22 11:38:42 +02:00
|
|
|
Co2Saving = response?.bike_returned.co2saving,
|
|
|
|
RentalCosts = response?.bike_returned.total_price,
|
|
|
|
Duration = response?.bike_returned.real_clock,
|
|
|
|
Distance = response?.bike_returned.distance,
|
2022-09-06 16:08:19 +02:00
|
|
|
};
|
2022-08-30 15:42:25 +02:00
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
if (response?.user_miniquery == null)
|
2022-08-30 15:42:25 +02:00
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
{
|
|
|
|
return bookingFinished;
|
|
|
|
}
|
2022-08-30 15:42:25 +02:00
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
var miniquery = response.user_miniquery;
|
|
|
|
bookingFinished.MiniSurvey = new MiniSurveyModel
|
|
|
|
{
|
|
|
|
Title = miniquery.title,
|
|
|
|
Subtitle = miniquery.subtitle,
|
|
|
|
Footer = miniquery.footer
|
|
|
|
};
|
2022-08-30 15:42:25 +02:00
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
foreach (var question in miniquery?.questions?.OrderBy(x => x.Key) ?? new Dictionary<string, MiniSurveyResponse.Question>().OrderBy(x => x.Key))
|
|
|
|
{
|
|
|
|
if (string.IsNullOrEmpty(question.Key.Trim())
|
|
|
|
|| question.Value.query == null)
|
|
|
|
{
|
|
|
|
// Skip invalid entries.
|
|
|
|
continue;
|
|
|
|
}
|
2022-08-30 15:42:25 +02:00
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
bookingFinished.MiniSurvey.Questions.Add(
|
|
|
|
question.Key,
|
|
|
|
new QuestionModel());
|
|
|
|
}
|
2022-08-30 15:42:25 +02:00
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
return bookingFinished;
|
|
|
|
}
|
|
|
|
}
|
2022-08-30 15:42:25 +02:00
|
|
|
}
|