// Encoding documentation: // https://en.wikipedia.org/wiki/Code_39#Encoding /* * JS source adapted from https://github.com/lindell/JsBarcode * * The MIT License (MIT) * * Copyright (c) 2016 Johan Lindell (johan@lindell.me) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ const Barcode = require("cards.Barcode.js"); class CODE39 extends Barcode { constructor(data, options){ data = data.toUpperCase(); // Calculate mod43 checksum if enabled if(options.mod43){ data += getCharacter(mod43checksum(data)); } super(data, options); } encode(){ // First character is always a * var result = getEncoding("*"); // Take every character and add the binary representation to the result for(let i = 0; i < this.data.length; i++){ result += getEncoding(this.data[i]) + "0"; } // Last character is always a * result += getEncoding("*"); return { data: result, text: this.text }; } valid(){ return /^[0-9A-Z\-\.\ \$\/\+\%]+$/.test(this.data); } } // All characters. The position in the array is the (checksum) value var characters = [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "-", ".", " ", "$", "/", "+", "%", "*" ]; // The decimal representation of the characters, is converted to the // corresponding binary with the getEncoding function var encodings = [ 20957, 29783, 23639, 30485, 20951, 29813, 23669, 20855, 29789, 23645, 29975, 23831, 30533, 22295, 30149, 24005, 21623, 29981, 23837, 22301, 30023, 23879, 30545, 22343, 30161, 24017, 21959, 30065, 23921, 22385, 29015, 18263, 29141, 17879, 29045, 18293, 17783, 29021, 18269, 17477, 17489, 17681, 20753, 35770 ]; // Get the binary representation of a character by converting the encodings // from decimal to binary function getEncoding(character){ return getBinary(characterValue(character)); } function getBinary(characterValue){ return encodings[characterValue].toString(2); } function getCharacter(characterValue){ return characters[characterValue]; } function characterValue(character){ return characters.indexOf(character); } function mod43checksum(data){ var checksum = 0; for(let i = 0; i < data.length; i++){ checksum += characterValue(data[i]); } checksum = checksum % 43; return checksum; } module.exports = CODE39;