The flow of execution is really easy (once setted-up everything):
- You get your data from somewhere
- You set the needed data in the pass through methods, overrides and data in fields
- You generate the pass stream through
.generate()
method - Hooray 😄🎉
Some details:
-
Properties will be checked against schemas, which are built to reflect Apple's specifications, that can be found on Apple Developer Portal, at PassKit Package Format Reference.
-
In case of troubleshooting, you can refer to the Self-help guide in Wiki or open an issue.
-
Keep this as always valid for the reference:
const { createPass } = require("passkit-generator");
- Create a Pass
- Localizing Passes
- Setting barcode
- Setting expiration / voiding the pass
- Setting relevance
- Setting NFC
- Getting the current information
- Setting Pass Structure Keys (primaryFields, secondaryFields, ...)
- Generating the compiled pass.
- Create an Abstract Models
const pass = await createPass({ ... }, Buffer.from([ ... ], { ... }));
Returns:
Promise<Pass>
Arguments:
Key | Type | Description | Optional | Default Value |
---|---|---|---|---|
options | Object | Abstract Model | The options to create the pass. It can also be an instance of an Abstract Model. If instance, below options keys are not valid (obv.) and both abstractMissingData and additionalBuffers can be used. additionalBuffers usage is NOT restricted to Abstract Models. |
false | - |
options.model | String | Path | Buffer Object | The model path or a Buffer Object with path as key and Buffer as content | false | - |
options.certificates | Object | The certificate object containing the paths to certs files. | false | - |
options.certificates.wwdr | String | Path | The path to Apple WWDR certificate or its content. | false | - |
options.certificates.signerCert | String | Path | The path to Developer certificate file or its content. | false | - |
options.certificates.signerKey | Object/String | The object containing developer certificate's key and passphrase. If string, it can be the path to the key file or its content. If object, must have keyFile key and might need passphrase . |
false | - |
options.certificates.signerKey.keyFile | String | Path | The path to developer certificate key or its content. | false | - |
options.certificates.signerKey.passphrase | String | Number | The passphrase to use to unlock the key. | false | - |
options.overrides | Object | Dictionary containing all the keys you can override in the pass.json file and does not have a method to get overridden. | true | { } |
additionalBuffers | Buffer Object | Dictionary with path as key and Buffer as a content. Each will represent a file to be added to the final model. These will have priority on model ones | true | - |
abstractMissingData | Object | An object containing missing datas. It will be used only if options is an Abstract Model. |
true | - |
abstractMissingData.certificates | Object | The same as options.certificates and its keys. |
true | - |
abstractMissingData.overrides | Object | The same as options.overrides . |
true | - |
Localizing Passes:
Following Apple Developer Documentation, localization (L10N) is done by creating a .lproj
folder for each language you want to translate your pass, each named with the relative ISO-3166-1 alpha-2 code (e.g. en.lproj
).
In this library, localization can be done in three ways: media-only (images), translations-only or both.
The only differences stands in the way the only method below is used and how the model is designed.
If this method is used for translations and the model already contains a pass.strings
for the specified language, the translations will be appended to that file.
If you are designing your pass for a language only, you can directly replace the placeholders in
pass.json
with translation.
pass.localize(lang: string, options = {});
Returns:
Object<Pass> (this)
Description:
You may want to create the folder and add translated media and no translations; else you may want to add only translations without different medias or maybe both.
In the first case, create the .lproj
folder in the model root folder and add the translated medias inside. Then use the method by passing only the first parameters, the code.
In the other two cases, you'll need to specify also the second argument (the translations to be added to pass.strings
file, which will be added later).
Arguments:
Key | Type | Description | Optional | Default Value |
---|---|---|---|---|
lang | String | The ISO-3166-1 language code | false | - |
options | Object | Translations in format { <PLACEHOLDER>: "TRANSLATED-VALUE"} . |
true | undefined | { } |
Example:
pass
.localize("it", {
"EVENT": "Evento",
"LOCATION": "Posizione"
})
.localize("de", {
"EVENT": "Ereignis",
"LOCATION": "Ort"
})
.localize("en")
Setting barcodes:
pass.barcodes(first: string | schema.Barcode, ...data: schema.Barcodes[]) : this;
Returns:
Object<Pass> (this)
Description:
Setting barcodes can happen in two ways: controlled
and uncontrolled
(autogenerated), which mean how many barcode structures you will have in your pass.
Passing a string
to the method, will lead to an uncontrolled
way: starting from the message (content), all the structures will be generated. Any further parameter will be ignored.
Passing N barcode structures (see below), will only validate them and push only the valid ones.
This method will not take take of setting retro-compatibility, of which responsability is assigned to .barcode()
.
Arguments:
Key | Type | Description | Optional |
---|---|---|---|
first | String | schema.Barcode |
first value of barcodes | false |
...data | schema.Barcode[] |
the other barcode values | true |
Examples:
pass.barcodes("11424771526");
// or
pass.barcodes({
message: "11424771526",
format: "PKBarcodeFormatCode128"
altText: "11424771526"
}, {
message: "11424771526",
format: "PKBarcodeFormatQR"
altText: "11424771526"
}, {
message: "11424771526",
format: "PKBarcodeFormatPDF417"
altText: "11424771526"
});
See: PassKit Package Format Reference # Barcode Dictionary
pass.barcode(chosenFormat: string): this;
Returns:
Object<Pass> (this)
Description:
It will let you choose the format to be used in barcode property as backward compatibility.
Also it will work only if barcodes()
method has already been called or if the current properties already have at least one barcode structure in it and if it matches with the specified one.
PKBarcodeFormatCode128
is not supported in barcode. Therefore any attempt to set it, will fail.
Arguments:
Key | Type | Description | Optional | Default Value |
---|---|---|---|---|
format | String | Format to be used. Must be one of these types: PKBarcodeFormatQR , PKBarcodeFormatPDF417 , PKBarcodeFormatAztec |
false | - |
Example:
// Based on the previous (barcodes) example
pass
.barcodes(...)
.barcode("PKBarcodeFormatQR");
// This won't set the property since not found.
pass
.barcodes(...)
.barcode("PKBarcodeFormatAztec");
Setting expiration / void the pass:
pass.expiration(date: Date) : this;
Returns:
Object<Pass> (this)
Description:
It sets the date of expiration to the passed argument.
If the parsing fails, the error will be emitted only in debug mode and the property won't be set.
Passing null
as the parameter, will remove the value.
Arguments:
Key | Type | Description | Optional |
---|---|---|---|
date | String/date | The date on which the pass will expire | false |
pass.void();
Returns:
Object<Pass> (this)
Description:
It sets directly the pass as voided.
Setting relevance:
pass.beacons(...data: schema.Beacons[]): this;
Returns:
Object<Pass> (this)
Description:
Sets the beacons information in the passes.
If other beacons structures are available in the structure, they will be overwritten.
Passing null
as parameter, will remove the content.
Arguments:
Key | Type | Description | Optional | Default Value |
---|---|---|---|---|
...data | schema.Beacons[] | null |
The beacons structures | false | - |
Example:
pass.beacons({
"major": 55,
"minor": 0,
"proximityUUID": "59da0f96-3fb5-43aa-9028-2bc796c3d0c5"
}, {
"major": 65,
"minor": 46,
"proximityUUID": "fdcbbf48-a4ae-4ffb-9200-f8a373c5c18e",
});
pass.locations(...data: schema.Locations[]): this;
Returns:
Object<Pass> (this)
Description:
Sets the location-relevance information in the passes.
If other location structures are available in the structure, they will be overwritten.
Passing null
as parameter, will remove its content;
Arguments:
Key | Type | Description | Optional | Default Value |
---|---|---|---|---|
...data | schema.Locations[] | null |
The location structures | false | - |
Example:
pass.locations({
"latitude": 66.45725212,
"longitude": 33.010004420
}, {
"longitude": 4.42634523,
"latitude": 5.344233323352
});
pass.relevantDate(date: Date): this;
Returns:
Object<Pass> (this)
Description:
Sets the relevant date for the current pass. Passing null
to the parameter, will remove its content.
Arguments:
Key | Type | Description | Optional | Default Value |
---|---|---|---|---|
date | Date | null |
The relevant date | false | - |
NFC Support:
pass.nfc(data: schema.NFC): this
Returns:
Object<Pass> (this)
Description:
It sets NFC info for the current pass. Passing null
as parameter, will remove its value.
Arguments:
Key | Type | Description | Optional |
---|---|---|---|
data | schema.NFC | null |
NFC structure | false |
See: PassKit Package Format Reference # NFC
Personalization (or Reward Enrollment passes) is supported only if personalization.json
is available and it's a valid json file (checked against a schema), [email protected]
(with 'XX' => x2, x3) is available and NFC is setted.
If these conditions are not met, the personalization gets removed from the output pass.
Notice: I had the possibility to test in no way this feature on any real pass. If you need it and this won't work, feel free to contact me and we will investigate together 😄
pass.props;
Returns:
An object containing all the current props;
Description:
This is a getter: a way to access to the current props before generating a pass. In here are available the props set both from pass.json reading and this package methods usage, along with the valid overrides passed to createPass
. The keys are the same used in pass.json.
It does not contain fields content (primaryFields
, secondaryFields
...) and transitType
, which are still accessible through their own props.
Example:
const currentLocations = pass.props["locations"];
pass.locations({
"latitude": 66.45725212,
"longitude": 33.010004420
}, {
"longitude": 4.42634523,
"latitude": 5.344233323352
},
...currentLocations);
Setting Pass Structure Keys (primaryFields, secondaryFields, ...):
Unlike method-set properties or overrides, to set fields inside areas (primaryFields, secondaryFields, auxiliaryFields, headerFields, backFields), this library make available a dedicated interface that extends native Array, to let you perform all the operations you need on the fields. Fields already available in pass.json, will be automatically loaded in the library. Therefore, reading one of the areas, will also show those that were loaded.
Examples:
pass.headerFields.push({
key: "header1",
label: "Data",
value: "25 mag",
textAlignment: "PKTextAlignmentCenter"
}, {
key: "header2",
label: "Volo",
value: "EZY997",
textAlignment: "PKTextAlignmentCenter"
});
pass.primaryFields.pop();
See: Passkit Package Format Reference # Field Dictionary Keys
pass.transitType = "PKTransitTypeAir";
Description:
Since this property belongs to the "Structure Keys" but is not an "array of field dictionaries" like the other keys on the same level, a setter (and obv. also a getter) got included in this package to check it against a schema (which is like, "is a string and contains one of the following values: PKTransitTypeAir, PKTransitTypeBoat, PKTransitTypeBus, PKTransitTypeGeneric, PKTransitTypeTrain", as described in Passkit Package Format Reference).
Generating the compiled Pass
Generating the pass is the last step of the process (before enjoying 🎉).
Since the file format is .pkpass
(which is a .zip
file with changed MIME), this method will return a Stream
, which can be used to be piped to a webserver response or to be written in the server.
As you can see in examples folder, to send a .pkpass file, a basic webserver uses MIME-type application/vnd.apple.pkpass
.
pass.generate(): Stream;
Returns: Stream
Description:
Creates a pass zip as Stream.
Examples:
const passStream = pass.generate();
doSomethingWithPassStream(stream);
const abstractModel = await createAbstractModel({ ... });
Returns:
Promise<AbstractModel>
Description:
The purpose of this class, is to create a model to be kept in memory during the application runtime. It contains a processed version of the passed model
(already read and splitted) and, if passed, a processed version of the certificates
, along with the chosen overrides.
Since certificates
and overrides
might differ time to time or not available at the moment of the abstract model creation, an additional attribute has been added to createPass
function. It is an object that accepts overrides
and raw certificates
Arguments:
It accepts only one argument: an options
object, which is identical to the first parameter of createPass
. You can refer to that method to compile it correctly.
abstractModel.bundle
Returns:
An object containing processed model.
abstractModel.certificates
Returns:
An object containing processed certificates.
abstractModel.overrides
Returns:
An object containing passed overrides.
Thanks for using this library. ❤️ Every contribution is welcome.