Last active
August 26, 2018 15:34
-
-
Save icebob/fe0c35195735f0ac6438a5d30979197a to your computer and use it in GitHub Desktop.
Safe JSON Serializer for Moleculer framework
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ServiceBroker = require("moleculer"); | |
const SafeJSONSerializer = require("./safe-json-serializer.js"); | |
const broker = new ServiceBroker({ | |
logger: true, | |
serializer: new SafeJSONSerializer() | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
const BaseSerializer = require("moleculer").Serializers.Base; | |
/** | |
* Safe JSON serializer for Moleculer | |
* | |
* @class SafeJSONSerializer | |
*/ | |
class SafeJSONSerializer extends BaseSerializer { | |
/** | |
* Serializer a JS object to Buffer | |
* | |
* @param {Object} obj | |
* @param {String} type of packet | |
* @returns {Buffer} | |
* | |
* @memberof Serializer | |
*/ | |
serialize(obj) { | |
const cache = new WeakSet(); | |
return JSON.stringify(obj, (key, value) => { | |
if (typeof value === "object" && value !== null) { | |
if (cache.has(value)) { | |
return "[Circular]"; | |
} | |
cache.add(value); | |
} | |
return value; | |
}); | |
} | |
/** | |
* Deserialize Buffer to JS object | |
* | |
* @param {Buffer} buf | |
* @param {String} type of packet | |
* @returns {Object} | |
* | |
* @memberof Serializer | |
*/ | |
deserialize(buf) { | |
return JSON.parse(buf); | |
} | |
} | |
module.exports = SafeJSONSerializer; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment