blockstack
Version:
The Blockstack Javascript library for authentication, identity, and storage.
167 lines (140 loc) • 4.73 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.BLOCKSTACK_HANDLER = undefined;
exports.nextYear = nextYear;
exports.nextMonth = nextMonth;
exports.nextHour = nextHour;
exports.updateQueryStringParameter = updateQueryStringParameter;
exports.isLaterVersion = isLaterVersion;
exports.hexStringToECPair = hexStringToECPair;
exports.ecPairToHexString = ecPairToHexString;
exports.ecPairToAddress = ecPairToAddress;
exports.makeUUID4 = makeUUID4;
exports.isSameOriginAbsoluteUrl = isSameOriginAbsoluteUrl;
var _url = require('url');
var _url2 = _interopRequireDefault(_url);
var _bitcoinjsLib = require('bitcoinjs-lib');
var _config = require('./config');
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var BLOCKSTACK_HANDLER = exports.BLOCKSTACK_HANDLER = 'blockstack';
/**
* Time
* @private
*/
function nextYear() {
return new Date(new Date().setFullYear(new Date().getFullYear() + 1));
}
function nextMonth() {
return new Date(new Date().setMonth(new Date().getMonth() + 1));
}
function nextHour() {
return new Date(new Date().setHours(new Date().getHours() + 1));
}
/**
* Query Strings
* @private
*/
function updateQueryStringParameter(uri, key, value) {
var re = new RegExp('([?&])' + key + '=.*?(&|$)', 'i');
var separator = uri.indexOf('?') !== -1 ? '&' : '?';
if (uri.match(re)) {
return uri.replace(re, '$1' + key + '=' + value + '$2');
} else {
return '' + uri + separator + key + '=' + value;
}
}
/**
* Versioning
* @param {string} v1 - the left half of the version inequality
* @param {string} v2 - right half of the version inequality
* @returns {bool} iff v1 >= v2
* @private
*/
function isLaterVersion(v1, v2) {
if (v1 === undefined) {
v1 = '0.0.0';
}
if (v2 === undefined) {
v2 = '0.0.0';
}
var v1tuple = v1.split('.').map(function (x) {
return parseInt(x, 10);
});
var v2tuple = v2.split('.').map(function (x) {
return parseInt(x, 10);
});
for (var index = 0; index < v2.length; index++) {
if (index >= v1.length) {
v2tuple.push(0);
}
if (v1tuple[index] < v2tuple[index]) {
return false;
}
}
return true;
}
function hexStringToECPair(skHex) {
var ecPairOptions = {
network: _config.config.network.layer1,
compressed: true
};
if (skHex.length === 66) {
if (skHex.slice(64) !== '01') {
throw new Error('Improperly formatted private-key hex string. 66-length hex usually ' + 'indicates compressed key, but last byte must be == 1');
}
return _bitcoinjsLib.ECPair.fromPrivateKey(new Buffer(skHex.slice(0, 64), 'hex'), ecPairOptions);
} else if (skHex.length === 64) {
ecPairOptions.compressed = false;
return _bitcoinjsLib.ECPair.fromPrivateKey(new Buffer(skHex, 'hex'), ecPairOptions);
} else {
throw new Error('Improperly formatted private-key hex string: length should be 64 or 66.');
}
}
function ecPairToHexString(secretKey) {
var ecPointHex = secretKey.privateKey.toString('hex');
if (secretKey.compressed) {
return ecPointHex + '01';
} else {
return ecPointHex;
}
}
function ecPairToAddress(keyPair) {
return _bitcoinjsLib.address.toBase58Check(_bitcoinjsLib.crypto.hash160(keyPair.publicKey), keyPair.network.pubKeyHash);
}
/**
* UUIDs
* @private
*/
function makeUUID4() {
var d = new Date().getTime();
if (typeof performance !== 'undefined' && typeof performance.now === 'function') {
d += performance.now(); // use high-precision timer if available
}
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
var r = (d + Math.random() * 16) % 16 | 0;
d = Math.floor(d / 16);
return (c === 'x' ? r : r & 0x3 | 0x8).toString(16);
});
}
/**
* Checks if both urls pass the same origin check & are absolute
* @param {[type]} uri1 first uri to check
* @param {[type]} uri2 second uri to check
* @return {Boolean} true if they pass the same origin check
* @private
*/
function isSameOriginAbsoluteUrl(uri1, uri2) {
var parsedUri1 = _url2.default.parse(uri1);
var parsedUri2 = _url2.default.parse(uri2);
var port1 = parseInt(parsedUri1.port, 10) | 0 || (parsedUri1.protocol === 'https:' ? 443 : 80);
var port2 = parseInt(parsedUri2.port, 10) | 0 || (parsedUri2.protocol === 'https:' ? 443 : 80);
var match = {
scheme: parsedUri1.protocol === parsedUri2.protocol,
hostname: parsedUri1.hostname === parsedUri2.hostname,
port: port1 === port2,
absolute: (uri1.includes('http://') || uri1.includes('https://')) && (uri2.includes('http://') || uri2.includes('https://'))
};
return match.scheme && match.hostname && match.port && match.absolute;
}