示例#1
0
        public static async Task <string> addFlightToDatabase(WebhookRequest request, FlightsAPIContext _apiContext, FlightContext _dbContext)
        {
            // Extracts the parameters of the request
            var    requestParameters = request.QueryResult.Parameters;
            string fromCity          = requestParameters.Fields["from-city"].StringValue;
            string toCity            = requestParameters.Fields["to-city"].StringValue;

            DateTime departure = DateTimeOffset.Parse(requestParameters.Fields["date-time"].StringValue).UtcDateTime.Date;
            var      flight    = await _apiContext.GetFlight(fromCity, toCity, departure);

            if (flight.Quotes.Any())
            {
                FlightModel flightItem = new FlightModel
                {
                    FromCity      = flight.Places.Where(p => p.PlaceId == flight.Quotes[0].OutboundLeg.OriginId).First().Name,
                    ToCity        = flight.Places.Where(p => p.PlaceId == flight.Quotes[0].OutboundLeg.DestinationId).First().Name,
                    DepartureDate = flight.Quotes[0].OutboundLeg.DepartureDate.Date,
                    Price         = flight.Quotes[0].MinPrice,
                };
                _dbContext.Add(flightItem);
                await _dbContext.SaveChangesAsync();

                textToReturn = "Done!";
            }
            else
            {
                textToReturn = "Could not add a flight";
            }
            return(textToReturn);
        }
 public FlightDialogsController([FromServices] IHttpClientFactory factory, FlightContext context)
 {
     _apiContext = new FlightsAPIContext(factory);
     _dbContext  = context;
 }
示例#3
0
        public static async Task <string> getFlightPricesAsync(WebhookRequest request, FlightsAPIContext _apiContext)
        {
            // Extracts the parameters of the request
            var      requestParameters = request.QueryResult.Parameters;
            string   fromCity          = requestParameters.Fields["from-city"].StringValue;
            string   toCity            = requestParameters.Fields["to-city"].StringValue;
            DateTime departure         = DateTimeOffset.Parse(requestParameters.Fields["date-time"].StringValue).UtcDateTime.Date;
            // Calls SkyScanner API and gets the cheapest flight as a return
            var flight = await _apiContext.GetFlight(fromCity, toCity, departure);

            if (flight != null)
            {
                textToReturn = $"The price is {flight.Quotes[0].MinPrice} euro " +
                               $"Leaving from {flight.Places.Where(p => p.PlaceId == flight.Quotes[0].OutboundLeg.OriginId).First().Name} and " +
                               $"going to {flight.Places.Where(p => p.PlaceId == flight.Quotes[0].OutboundLeg.DestinationId).First().Name}. " +
                               $"Date: {flight.Quotes[0].OutboundLeg.DepartureDate.ToShortDateString()}. " +
                               $"Direct: {flight.Quotes[0].Direct}." +
                               " Would you like to buy this flight?";
            }

            else
            {
                textToReturn = "No flights found";
            }
            return(textToReturn);
        }