-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathitem.go
397 lines (391 loc) · 11.5 KB
/
item.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
package bcbp
import "regexp"
// item represents an item in the IATA 729 Bar Coded Boarding Pass specification.
//
// An item can belong to one of 3 main categories:
// Mandatory
// Conditional
// Security
//
// An item also is either unique or repeated. A unique item only appears once,
// whereas a repeated item appears once for each flight segment.
//
// The length of an item dictates how many characters belong to that field.
// For example, PassengerName is the second field in a Bar Coded Boarding Pass
// and is 20 characters long.
type item struct {
id itemID
description string
length int
format string
regex *regexp.Regexp
items []item
}
// validate validates s against item.regex.
func (i item) validate(s string) bool {
return i.regex.FindString(s) != ""
}
type itemID uint
const (
formatCode itemID = iota
numberOfLegsEncoded
passengerName
electronicTicketIndicator
operatingCarrierPNRCode
fromCityAirportCode
toCityAirportCode
operatingCarrierDesignator
flightNumber
dateOfFlight
compartmentCode
seatNumber
checkinSequenceNumber
passengerStatus
fieldSizeOfVariableSizeField
beginningOfVersionNumber
versionNumber
fieldSizeOfFollowingStructuredMessageUnique
passengerDescription
sourceOfCheckin
sourceOfBoardingPassIssuance
dateOfIssueOfBoardingPass
documentType
airlineDesignatorOfBoardingPassIssuer
baggageTagLicensePlateNumber
firstNonConsecutiveBaggageTagLicensePlateNumber
secondNonConsecutiveBaggageTagLicensePlateNumber
fieldSizeOfFollowingStructuredMessageRepeated
airlineNumericCode
documentFormSerialNumber
selecteeIndicator
internationalDocumentationVerification
marketingCarrierDesignator
frequentFlyerAirlineDesignator
frequentFlyerNumber
idadIndicator
freeBaggageAllowance
fastTrack
forIndividualAirlineUse
beginningOfSecurityData
typeOfSecurityData
lengthOfSecurityData
securityData
)
// spec is a graph of items that dictates how a Bar Coded Boarding Pass is
// processed.
var spec = []item{
{
id: formatCode,
description: "Format Code",
length: 1,
format: `"M"`,
regex: formatCodeRegex,
},
{
id: numberOfLegsEncoded,
description: "Number of Legs Encoded",
length: 1,
format: "a number between 1 to 4",
regex: numberOfLegsEncodedRegex,
},
{
id: passengerName,
description: "Passenger Name",
length: 20,
format: `20 characters with trailing whitespaces where the last name must be at most 18 characters followed by "/" and an alpha initial`,
regex: passengerNameRegex,
},
{
id: electronicTicketIndicator,
description: "Electronic Ticket Indicator",
length: 1,
format: "E or L",
regex: electronicTicketRegex,
},
{
id: operatingCarrierPNRCode,
description: "Operating Carrier PNR Code",
length: 7,
format: "7 alphanumeric characters with trailing whitespaces",
regex: operatingCarrierPNRCodeRegex,
},
{
id: fromCityAirportCode,
description: "From City Airport Code",
length: 3,
format: "3 alpha characters",
regex: airportCodeRegex,
},
{
id: toCityAirportCode,
description: "To City Airport Code",
length: 3,
format: "3 alpha characters",
regex: airportCodeRegex,
},
{
id: operatingCarrierDesignator,
description: "Operating Carrier Designator",
length: 3,
format: "3 alphanumeric characters with trailing whitespaces",
regex: operatingCarrierDesignatorRegex,
},
{
id: flightNumber,
description: "Flight Number",
length: 5,
format: "4 digits with leading zeroes followed by an optional alpha suffix or whitespace",
regex: flightNumberRegex,
},
{
id: dateOfFlight,
description: "Date of Flight (Julian Date)",
length: 3,
format: "3 digits with leading zeroes with maximum value of 365 (366 for leap years)",
regex: dateOfFlightRegex,
},
{
id: compartmentCode,
description: "Compartment Code",
length: 1,
format: "an alpha character",
regex: compartmentCodeRegex,
},
{
id: seatNumber,
description: "Seat Number",
length: 4,
format: "3 digits with leading zeroes followed by an alpha",
regex: seatNumberRegex,
},
{
id: checkinSequenceNumber,
description: "Check-in Sequence Number",
length: 5,
format: "4 digits with leading zeroes followed by an optional alpha or whitespace",
regex: checkInSequenceNumberRegex,
},
{
id: passengerStatus,
description: "Passenger Status",
length: 1,
format: "an alphanumeric character",
regex: passengerStatusRegex,
},
{
id: fieldSizeOfVariableSizeField,
description: "Field Size of variable size field",
length: 2,
format: "a hex number with leading zeroes",
regex: hexRegex,
items: []item{
{
id: beginningOfVersionNumber,
description: "Beginning of version number",
length: 1,
format: `">"`,
regex: beginningOfVersionNumberRegex,
},
{
id: versionNumber,
description: "Version Number",
length: 1,
format: "a number between 1 and 8",
regex: versionNumberRegex,
},
{
id: fieldSizeOfFollowingStructuredMessageUnique,
description: "Field Size of following structured message - unique",
length: 2,
format: "a hex number with leading zeroes",
regex: hexRegex,
items: []item{
{
id: passengerDescription,
description: "Passenger Description",
length: 1,
format: "an alphanumeric character",
regex: passengerDescriptionRegex,
},
{
id: sourceOfCheckin,
description: "Source of check-in",
length: 1,
format: "W, K, X, R, M, O, T, V, A, or whitespace",
regex: sourceOfCheckInRegex,
},
{
id: sourceOfBoardingPassIssuance,
description: "Source of Boarding Pass Issuance",
length: 1,
format: "W, K, X, R, M, O, T, V, or whitespace",
regex: sourceOfBoardingPassIssuanceRegex,
},
{
id: dateOfIssueOfBoardingPass,
description: "Date of Issue of Boarding Pass (Julian Date)",
length: 4,
format: "4 digits with leading zeroes with last 3 digits having maximum value of 365 (366 for leap years)",
regex: dateOfIssueOfBoardingPassRegex,
},
{
id: documentType,
description: "Document Type",
length: 1,
format: "B, I, or whitespace",
regex: documentTypeRegex,
},
{
id: airlineDesignatorOfBoardingPassIssuer,
description: "Airline Designator of boarding pass issuer",
length: 3,
format: "left justified 3 alphanumeric characters with trailing whitespaces",
regex: airlineDesignatorOfBoardingPassIssuerRegex,
},
{
id: baggageTagLicensePlateNumber,
description: "Baggage Tag License Plate Number(s)",
length: 13,
// IATA 792 spec states that this field is alphanumeric
// however the interpretation of the data shows it to be
// numeric only.
format: "13 digits",
regex: baggageTagLicensePlateNumberRegex,
},
{
id: firstNonConsecutiveBaggageTagLicensePlateNumber,
description: "1st Non-Consecutive Baggage Tag License Plate Number",
length: 13,
// IATA 792 spec states that this field is alphanumeric
// however the interpretation of the data shows it to be
// numeric only.
format: "13 digits",
regex: baggageTagLicensePlateNumberRegex,
},
{
id: secondNonConsecutiveBaggageTagLicensePlateNumber,
description: "2nd Non-Consecutive Baggage Tag License Plate Number",
length: 13,
// IATA 792 spec states that this field is alphanumeric
// however the interpretation of the data shows it to be
// numeric only.
format: "13 numeric characters",
regex: baggageTagLicensePlateNumberRegex,
},
},
},
{
id: fieldSizeOfFollowingStructuredMessageRepeated,
description: "Field Size of following structured message - repeated",
length: 2,
format: "a hex number with leading zeroes",
regex: hexRegex,
items: []item{
{
id: airlineNumericCode,
description: "Airline Numeric Code",
length: 3,
format: "3 digits with leading zeroes",
regex: airlineNumericCodeRegex,
},
{
id: documentFormSerialNumber,
description: "Document Form/Serial Number",
length: 10,
format: "10 alphanumeric characters with leading zeroes",
regex: documentFormSerialNumberRegex,
},
{
id: selecteeIndicator,
description: "Selectee Indicator",
length: 1,
format: "0, 1, 2, or whitespace",
regex: selecteeIndicatorRegex,
},
{
id: internationalDocumentationVerification,
description: "International Documentation Verification",
length: 1,
format: "0, 1, 2, or whitespace",
regex: internationalDocumentationVerificationRegex,
},
{
id: marketingCarrierDesignator,
description: "Marketing Carrier Designator",
length: 3,
format: "3 alphanumeric characters with trailing whitespaces",
regex: marketingCarrierDesignatorRegex,
},
{
id: frequentFlyerAirlineDesignator,
description: "Frequent Flyer Airline Designator",
length: 3,
format: "3 alphanumeric characters with trailing whitespaces",
regex: frequentFlyerAirlineDesignatorRegex,
},
{
id: frequentFlyerNumber,
description: "Frequent Flyer Number",
length: 16,
format: "16 alphanumeric characters with trailing whitespaces",
regex: frequentFlyerNumberRegex,
},
{
id: idadIndicator,
description: "ID/AD Indicator",
length: 1,
format: "an alphanumeric character or whitespace",
regex: idadIndicatorRegex,
},
{
id: freeBaggageAllowance,
description: "Free Baggage Allowance",
length: 3,
format: "2 digits with leading zeroes followed by K or L; or 1 digit followed by PC",
regex: freeBaggageAllowanceRegex,
},
{
id: fastTrack,
description: "Fast Track",
length: 1,
format: `Y, N, or " "`,
regex: fastTrackRegex,
},
},
},
{
id: forIndividualAirlineUse,
description: "For individual airline use",
regex: dotRegex,
},
},
},
{
id: beginningOfSecurityData,
description: "Beginning of Security data",
length: 1,
format: `"^"`,
regex: beginningOfSecurityDataRegex,
},
{
id: typeOfSecurityData,
description: "Type of Security data",
length: 1,
format: "an alphanumeric character",
regex: typeOfSecurityDataRegex,
},
{
id: lengthOfSecurityData,
description: "Length of Security data",
length: 2,
format: "a hex number",
regex: hexRegex,
items: []item{
{
id: securityData,
description: "Security data",
regex: dotRegex,
},
},
},
}