Requests and serving update

Added support for POST Requests with JSON HTTP Body and GET Requests with QueryString,
Renamed res and req in 'response' and 'request',
Added support for pass.json buffer retrieval, editing and direct compression in the zip file,
Introduced function fileStreamToBuffer to simplify the retrivial of pass.json,
Edited pass types names conforming to Apple guide
This commit is contained in:
Alexander Cerutti
2018-05-09 18:12:40 +02:00
parent 1d0ed48084
commit 37e3e69df6
2 changed files with 166 additions and 78 deletions

1
.gitignore vendored
View File

@@ -7,3 +7,4 @@ certificates/passCertificate-exported.p12
certificates/passcertificate.pem certificates/passcertificate.pem
certificates/passkey.pem certificates/passkey.pem
certificates/source-AppleWWDRCA.cer certificates/source-AppleWWDRCA.cer
improvements.rtf

243
index.js
View File

@@ -10,11 +10,13 @@ const async = require("async");
const _configuration = Object.freeze(require("./config.json")); const _configuration = Object.freeze(require("./config.json"));
const instance = express(); const instance = express();
const supportedTypesOfPass = /(boarding|event|coupon|generic|store)/i; const supportedTypesOfPass = /(boardingPass|eventTicket|coupon|generic|storeCard)/i;
const passModelsDir = _configuration.models.dir; const passModelsDir = _configuration.models.dir;
const outputDir = _configuration.output.dir; const outputDir = _configuration.output.dir;
const Certificates = _configuration.certificates; const Certificates = _configuration.certificates;
instance.use(express.json());
/** /**
Apply a filter to arg0 to remove hidden files names (starting with dot) Apply a filter to arg0 to remove hidden files names (starting with dot)
@function removeDotFiles @function removeDotFiles
@@ -30,6 +32,25 @@ function capitalizeFirst(str) {
return str[0].toUpperCase()+str.slice(1); return str[0].toUpperCase()+str.slice(1);
} }
function fileStreamToBuffer(path, ...callbacks) {
let stream = fs.createReadStream(path);
let bufferArray = [];
if (!path || typeof path !== "string") {
throw new Error("fileStreamToBuffer: Argument 0 is not provided or is not a string.");
}
if (!callbacks || !callbacks.length) {
throw new Error("fileStreamToBuffer: Argument 1, at least one function must be provided.");
}
stream
.on("data", chunk => bufferArray.push(chunk))
.on("end", () => callbacks[0](Buffer.concat(bufferArray)))
// calling callbacks 0 or 1, based on the condition
.on("error", (e) => callbacks[Number(callbacks.length > 1)](e));
}
/** /**
Checks if the certificate and the key files originated from che .p12 file are available Checks if the certificate and the key files originated from che .p12 file are available
@@ -138,28 +159,68 @@ function generateManifest(fromObject, manifestUUID) {
}); });
} }
instance.listen(80, "0.0.0.0", function(req, res) { function queryToOptions(query) {
console.log("Listening on 80"); // Some options are not supported since should be included inside the model
}); // Replace null with handlers to check the correctness of the values if needed.
// Handlers should contain check
const supportedOptions = {
serialNumber: null,
userInfo: null,
expirationDate: null,
locations: null,
authenticationToken: null,
barcode: null
};
instance.get("/", function (req, res) { let options = {};
res.send("Hello there!");
});
instance.get("/gen/:type/", function (req, res) { Object.keys(supportedOptions).forEach(function(key) {
if (!supportedTypesOfPass.test(req.params.type)) { if (!!query[key]) {
if (!supportedOptions[key] || typeof supportedOptions[key] !== "function" || typeof supportedOptions[key] === "function" && supportedOptions[key](query[key])) {
options[key] = query[key];
}
}
});
return options;
}
function editPassStructure(object, passBuffer) {
if (!object) {
return Promise.resolve(passBuffer);
}
return new Promise(function(done, reject) {
try {
let passFile = JSON.parse(passBuffer.toString("utf8"));
for (prop in object) {
passFile[prop] = object[prop];
}
return done(Buffer.from(JSON.stringify(passFile)));
} catch(e) {
return reject(e);
}
});
}
function RequestHandler(request, response) {
if (!supportedTypesOfPass.test(request.params.type)) {
// 😊 // 😊
res.set("Content-Type", "application/json"); response.set("Content-Type", "application/json");
res.status(418).send({ ecode: 418, status: false, message: `Model unsupported. Refer to https://apple.co/2KKcCrB for supported pass models.`}); response.status(418).send({ ecode: 418, status: false, message: `Model unsupported. Refer to https://apple.co/2KKcCrB for supported pass models.`});
return; return;
} }
fs.readdir(`${passModelsDir}/${req.params.type}.pass`, {}, function (err, files) { fs.readdir(`${passModelsDir}/${request.params.type}.pass`, function (err, files) {
/* Invalid path for passModelsDir */ /* Invalid path for passModelsDir */
if (err) { if (err) {
// 😊 // 😊
res.set("Content-Type", "application/json"); response.set("Content-Type", "application/json");
res.status(418).send({ ecode: 418, status: false, message: `Model not available for requested type [${res.params.type}]. Provide a folder with specified name and .pass extension.`}); response.status(418).send({ ecode: 418, status: false, message: `Model not available for request type [${request.params.type}]. Provide a folder with specified name and .pass extension.`});
return; return;
} }
@@ -167,88 +228,114 @@ instance.get("/gen/:type/", function (req, res) {
if (!list.length) { if (!list.length) {
// 😊 // 😊
res.set("Content-Type", "application/json"); response.set("Content-Type", "application/json");
res.status(418).send({ ecode: 418, status: false, message: `Model for type [${req.params.type}] has no contents. Refer to https://apple.co/2IhJr0Q `}); response.status(418).send({ ecode: 418, status: false, message: `Model for type [${request.params.type}] has no contents. Refer to https://apple.co/2IhJr0Q`});
return; return;
} }
if (!list.includes("pass.json")) { if (!list.includes("pass.json")) {
// 😊 // 😊
res.set("Content-Type", "application/json"); response.set("Content-Type", "application/json");
res.status(418).send({ ecode: 418, status: false, message: "I'm a tea pot. How am I supposed to serve you pass without pass.json in the chosen model as tea without water?" }); response.status(418).send({ ecode: 418, status: false, message: "I'm a teapot. How am I supposed to serve you pass without pass.json in the chosen model as tea without water?" });
return; return;
} }
// Manifest dictionary let options = (request.method === "POST" ? request.body : (request.method === "GET" ? request.params : {}));
let manifestRaw = {}; fileStreamToBuffer(`${passModelsDir}/${request.params.type}.pass/pass.json`, function _returnBuffer(bufferResult) {
let archive = archiver("zip"); editPassStructure(queryToOptions(options), bufferResult).then(function _afterJSONParse(passFileBuffer) {
// Manifest dictionary
let manifestRaw = {};
let archive = archiver("zip");
async.each(list, function getHashAndArchive(file, callback) { archive.append(passFileBuffer, { name: "pass.json" });
if (file !== "manifest.json" && file !== "signature") { manifestRaw["pass.json"] = crypto.createHash("sha1").update(passFileBuffer).digest("hex").trim();
let passFileStream = fs.createReadStream(`${passModelsDir}/${req.params.type}.pass/${file}`);
let hashFlow = crypto.createHash("sha1");
// adding the files to the zip - i'm not using .directory method because it adds also hidden files like .DS_Store on macOS async.each(list, function getHashAndArchive(file, callback) {
archive.file(`${passModelsDir}/${req.params.type}.pass/${file}`, { name: file }); if (/(manifest|signature|pass)/ig.test(file)) {
// skipping files
passFileStream.on("data", function(data) { return callback();
hashFlow.update(data);
});
passFileStream.on("error", function(e) {
return callback(e);
});
passFileStream.on("end", function() {
manifestRaw[file] = hashFlow.digest("hex").trim();
return callback();
});
} else {
// skipping files
return callback();
}
}, function end(error) {
if (error) {
throw new Error(`Unable to compile manifest. ${error}`);
}
let uuid = UUIDGen();
generateManifest(manifestRaw, uuid)
.then(function(manifestBuffer) {
archive.append(manifestBuffer, { name: "manifest.json" });
generateManifestSignature(uuid)
.then(function(signatureBuffer) {
if (!fs.existsSync("output")) {
fs.mkdirSync("output");
} }
archive.append(signatureBuffer, { name: "signature" }); // adding the files to the zip - i'm not using .directory method because it adds also hidden files like .DS_Store on macOS
let outputWS = fs.createWriteStream(`${outputDir}/${req.params.type}.pkpass`); archive.file(`${passModelsDir}/${request.params.type}.pass/${file}`, { name: file });
archive.pipe(outputWS); let hashFlow = crypto.createHash("sha1");
archive.finalize();
outputWS.on("close", function() { fs.createReadStream(`${passModelsDir}/${request.params.type}.pass/${file}`)
res.status(201).download(`${outputDir}/${req.params.type}.pkpass`, `${req.params.type}.pkpass`, { .on("data", function(data) {
cacheControl: false, hashFlow.update(data);
headers: { })
"Content-type": "application/vnd.apple.pkpass", .on("error", function(e) {
"Content-length": fs.statSync(`${outputDir}/${req.params.type}.pkpass`).size return callback(e);
} })
}); .on("end", function() {
manifestRaw[file] = hashFlow.digest("hex").trim();
return callback();
});
}, function end(error) {
if (error) {
throw new Error(`Unable to compile manifest. ${error}`);
}
let uuid = UUIDGen();
generateManifest(manifestRaw, uuid)
.then(function(manifestBuffer) {
archive.append(manifestBuffer, { name: "manifest.json" });
generateManifestSignature(uuid)
.then(function(signatureBuffer) {
if (!fs.existsSync("output")) {
fs.mkdirSync("output");
}
archive.append(signatureBuffer, { name: "signature" });
let outputWS = fs.createWriteStream(`${outputDir}/${request.params.type}.pkpass`);
archive.pipe(outputWS);
archive.finalize();
outputWS.on("close", function() {
response.status(201).download(`${outputDir}/${request.params.type}.pkpass`, `${request.params.type}.pkpass`, {
cacheControl: false,
headers: {
"Content-type": "application/vnd.apple.pkpass",
"Content-length": fs.statSync(`${outputDir}/${request.params.type}.pkpass`).size
}
});
});
})
.catch(function(buffer) {
throw buffer.toString();
});
})
.catch(function(error) {
throw error;
}); });
})
.catch(function(buffer) {
throw buffer.toString();
}); });
}) })
.catch(function(error) { .catch(function(err) {
throw error; // 😊
response.set("Content-Type", "application/json");
response.status(418).send({ ecode: 418, status: false, message: `Got error while parsing pass.json file: ${err}` });
return;
}); });
}, function _error(e) {
console.log(e)
}); });
}); });
}
instance.listen(80, "0.0.0.0", function(request, response) {
console.log("Listening on 80");
}); });
instance.get("/", function (request, response) {
response.send("Hello there!");
});
instance.get("/gen/:type/", RequestHandler);
instance.post("/gen/:type/", RequestHandler);