2014-05-17 05:53:58 +00:00
|
|
|
window.textsecure = window.textsecure || {};
|
|
|
|
|
2014-01-12 07:32:13 +00:00
|
|
|
/*********************************
|
|
|
|
*** Type conversion utilities ***
|
|
|
|
*********************************/
|
2014-01-15 07:46:05 +00:00
|
|
|
// Strings/arrays
|
2014-03-06 21:44:59 +00:00
|
|
|
//TODO: Throw all this shit in favor of consistent types
|
2014-07-21 02:06:04 +00:00
|
|
|
//TODO: Namespace
|
2014-01-12 14:07:13 +00:00
|
|
|
var StaticByteBufferProto = new dcodeIO.ByteBuffer().__proto__;
|
2014-01-22 06:23:41 +00:00
|
|
|
var StaticArrayBufferProto = new ArrayBuffer().__proto__;
|
2014-03-06 18:18:11 +00:00
|
|
|
var StaticUint8ArrayProto = new Uint8Array().__proto__;
|
2014-01-12 07:32:13 +00:00
|
|
|
function getString(thing) {
|
2018-05-02 01:54:43 +00:00
|
|
|
if (thing === Object(thing)) {
|
|
|
|
if (thing.__proto__ == StaticUint8ArrayProto)
|
|
|
|
return String.fromCharCode.apply(null, thing);
|
|
|
|
if (thing.__proto__ == StaticArrayBufferProto)
|
|
|
|
return getString(new Uint8Array(thing));
|
|
|
|
if (thing.__proto__ == StaticByteBufferProto)
|
|
|
|
return thing.toString('binary');
|
|
|
|
}
|
|
|
|
return thing;
|
2014-01-12 07:32:13 +00:00
|
|
|
}
|
|
|
|
|
2014-03-05 01:31:15 +00:00
|
|
|
function getStringable(thing) {
|
2018-05-02 01:54:43 +00:00
|
|
|
return (
|
|
|
|
typeof thing == 'string' ||
|
|
|
|
typeof thing == 'number' ||
|
|
|
|
typeof thing == 'boolean' ||
|
|
|
|
(thing === Object(thing) &&
|
|
|
|
(thing.__proto__ == StaticArrayBufferProto ||
|
|
|
|
thing.__proto__ == StaticUint8ArrayProto ||
|
|
|
|
thing.__proto__ == StaticByteBufferProto))
|
|
|
|
);
|
2014-03-05 01:31:15 +00:00
|
|
|
}
|
|
|
|
|
2014-05-25 22:09:07 +00:00
|
|
|
// Number formatting utils
|
2018-05-02 01:54:43 +00:00
|
|
|
window.textsecure.utils = (function() {
|
|
|
|
var self = {};
|
|
|
|
self.unencodeNumber = function(number) {
|
|
|
|
return number.split('.');
|
|
|
|
};
|
2015-01-13 21:33:11 +00:00
|
|
|
|
2018-05-02 01:54:43 +00:00
|
|
|
self.isNumberSane = function(number) {
|
|
|
|
return number[0] == '+' && /^[0-9]+$/.test(number.substring(1));
|
|
|
|
};
|
2014-10-20 00:53:17 +00:00
|
|
|
|
2018-05-02 01:54:43 +00:00
|
|
|
/**************************
|
|
|
|
*** JSON'ing Utilities ***
|
|
|
|
**************************/
|
|
|
|
function ensureStringed(thing) {
|
|
|
|
if (getStringable(thing)) return getString(thing);
|
|
|
|
else if (thing instanceof Array) {
|
|
|
|
var res = [];
|
|
|
|
for (var i = 0; i < thing.length; i++) res[i] = ensureStringed(thing[i]);
|
|
|
|
return res;
|
|
|
|
} else if (thing === Object(thing)) {
|
|
|
|
var res = {};
|
|
|
|
for (var key in thing) res[key] = ensureStringed(thing[key]);
|
|
|
|
return res;
|
|
|
|
} else if (thing === null) {
|
|
|
|
return null;
|
2014-10-20 00:53:17 +00:00
|
|
|
}
|
2018-05-02 01:54:43 +00:00
|
|
|
throw new Error('unsure of how to jsonify object of type ' + typeof thing);
|
|
|
|
}
|
2014-10-20 00:53:17 +00:00
|
|
|
|
2018-05-02 01:54:43 +00:00
|
|
|
self.jsonThing = function(thing) {
|
|
|
|
return JSON.stringify(ensureStringed(thing));
|
|
|
|
};
|
2014-05-25 22:45:22 +00:00
|
|
|
|
2018-05-02 01:54:43 +00:00
|
|
|
return self;
|
|
|
|
})();
|