Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KItinerary
Commits
1a3b820a
Commit
1a3b820a
authored
Dec 09, 2021
by
Volker Krause
Browse files
Add extractor script for Amtrak tickets
parent
416ab9d2
Pipeline
#107764
passed with stage
in 4 minutes and 30 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/lib/scripts/amtrack.js
0 → 100644
View file @
1a3b820a
/*
SPDX-FileCopyrightText: 2021 Volker Krause <vkrause@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
function
parseTicket
(
pdf
,
node
,
triggerNode
)
{
const
page
=
pdf
.
pages
[
triggerNode
.
location
];
const
text
=
page
.
text
;
var
legs
=
new
Array
();
var
idx
=
0
;
while
(
true
)
{
const
train
=
text
.
substr
(
idx
).
match
(
/TRAIN +
\w
.*
?
+
(
.*
?)
+DEPARTS
\s
+ARRIVES
\(\w{3}
(
.*
)\)\n\s
*
(\d
+
)\s
+
(\w{3}
\d{1,2})
,
(\d{4})\n\s
*
(
.*
)?\n?\s
*
\d
+
(
.*
)
Seats
?\n?
+
(\d{1,2}
:
\d{2}
[
AP
]
M
)
+
(\d{1,2}
:
\d{2}
[
AP
]
M
)
/
);
if
(
!
train
)
{
break
;
}
idx
+=
train
.
index
+
train
[
0
].
length
;
var
leg
=
JsonLd
.
newTrainReservation
();
leg
.
reservedTicket
.
ticketToken
=
'
qrcode:
'
+
triggerNode
.
content
;
leg
.
reservationFor
.
trainNumber
=
train
[
3
];
leg
.
reservationFor
.
departureTime
=
JsonLd
.
toDateTime
(
train
[
4
]
+
'
'
+
train
[
5
]
+
'
'
+
train
[
8
],
'
MMM d yyyy h:mm AP
'
,
'
en
'
);
leg
.
reservationFor
.
arrivalTime
=
JsonLd
.
toDateTime
(
train
[
2
]
+
'
'
+
train
[
5
]
+
'
'
+
train
[
9
],
'
MMM d yyyy h:mm AP
'
,
'
en
'
);
leg
.
reservedTicket
.
ticketedSeat
.
seatingType
=
train
[
7
];
const
stations
=
(
train
[
1
]
+
'
'
+
(
train
[
6
]
??
''
)).
match
(
/
(
.*
)
-
(
.*
)
/
);
leg
.
reservationFor
.
departureStation
.
name
=
stations
[
1
];
leg
.
reservationFor
.
arrivalStation
.
name
=
stations
[
2
];
legs
.
push
(
leg
);
}
var
reservations
=
new
Array
();
const
pasHdr
=
text
.
match
(
/PASSENGERS
\((\d
+
)\)
.*
\n
/
);
const
pasCount
=
pasHdr
[
1
];
idx
=
pasHdr
.
index
+
pasHdr
[
0
].
length
;
for
(
var
i
=
0
;
i
<
pasCount
;
++
i
)
{
const
pas
=
text
.
substr
(
idx
).
match
(
/
([^
,
]
*
)
,
(
.*
?)
.*
?(\d{10})?(?:
\|
.*
)?\n
/
);
idx
+=
pas
.
index
+
pas
[
0
].
length
;
for
(
const
leg
of
legs
)
{
var
res
=
JsonLd
.
clone
(
leg
);
res
.
underName
.
givenName
=
pas
[
2
];
res
.
underName
.
familyName
=
pas
[
1
];
if
(
pas
[
3
])
{
res
.
programMembershipUsed
.
membershipNumber
=
pas
[
3
];
}
reservations
.
push
(
res
);
}
}
return
reservations
;
}
src/lib/scripts/amtrack.json
0 → 100644
View file @
1a3b820a
{
"filter"
:
[
{
"match"
:
"^[0-9A-Z]{6}-
\\
d{2}[A-Z]{3}
\\
d{2}$"
,
"mimeType"
:
"text/plain"
,
"scope"
:
"Descendants"
}
],
"function"
:
"parseTicket"
,
"mimeType"
:
"application/pdf"
,
"script"
:
"amtrack.js"
}
src/lib/scripts/extractors.qrc
View file @
1a3b820a
...
...
@@ -18,6 +18,8 @@
<file>airdo.js</file>
<file>amadeus.json</file>
<file>amadeus.js</file>
<file>amtrack.json</file>
<file>amtrack.js</file>
<file>aohostels.json</file>
<file>aohostels.js</file>
<file>availpro.json</file>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment