diff --git a/src/extractors/americanairlines.js b/src/extractors/americanairlines.js index 214bd9f..8475630 100644 --- a/src/extractors/americanairlines.js +++ b/src/extractors/americanairlines.js @@ -1,47 +1,30 @@ /* Copyright (c) 2018 Volker Krause This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ function main(pdf) { - var result = new Array(); - - for (var i = 0; i < pdf.pageCount; ++i) { - var page = pdf.pages[i]; - var images = page.imagesInRect(0.7, 0, 1, 0.3); - for (var j = 0; j < images.length; ++j) { - var bcbp = Barcode.decodePdf417(images[j]); - if (!bcbp) - continue; - - var res = JsonLd.newFlightReservation(); - res.reservedTicket.ticketToken = "aztecCode:" + bcbp; - - var time = page.text.match(/Departing at\s+(\d{1,2}:\d{2}[AP]M)/); - if (time) - res.reservationFor.departureTime = JsonLd.toDateTime(time[1], "h:mmA", "en") - time = page.text.match(/Arriving at:\s+(\d{1,2}:\d{2}[AP]M)/); - if (time) - res.reservationFor.arrivalTime = JsonLd.toDateTime(time[1], "h:mmA", "en") - - result.push(res); - break; - } - } - - return result; + var res = Context.data[0]; + var page = pdf.pages[Context.pdfPageNumber]; + var time = page.text.match(/Departing at\s+(\d{1,2}:\d{2}[AP]M)/); + if (time) + res.reservationFor.departureTime = JsonLd.toDateTime(time[1], "h:mmA", "en") + time = page.text.match(/Arriving at:\s+(\d{1,2}:\d{2}[AP]M)/); + if (time) + res.reservationFor.arrivalTime = JsonLd.toDateTime(time[1], "h:mmA", "en") + return res; }