2017-03-19 00:43:14 +01:00
|
|
|
var hash_util = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
|
|
|
// Some browsers zealously URI-decode the contents of
|
|
|
|
// window.location.hash. So we hide our URI-encoding
|
|
|
|
// by replacing % with . (like MediaWiki).
|
|
|
|
exports.encodeHashComponent = function (str) {
|
|
|
|
return encodeURIComponent(str)
|
|
|
|
.replace(/\./g, '%2E')
|
2017-10-18 19:16:41 +02:00
|
|
|
.replace(/%/g, '.');
|
2017-03-19 00:43:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.encode_operand = function (operator, operand) {
|
2018-06-06 18:50:09 +02:00
|
|
|
if (operator === 'group-pm-with' || operator === 'pm-with' || operator === 'sender') {
|
2017-03-19 00:43:14 +01:00
|
|
|
var slug = people.emails_to_slug(operand);
|
|
|
|
if (slug) {
|
|
|
|
return slug;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-06 18:19:09 +02:00
|
|
|
if (operator === 'stream') {
|
2018-02-15 21:02:47 +01:00
|
|
|
return exports.encode_stream_name(operand);
|
|
|
|
}
|
|
|
|
|
|
|
|
return exports.encodeHashComponent(operand);
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.encode_stream_name = function (operand) {
|
|
|
|
// stream_data prefixes the stream id, but it does not do the
|
|
|
|
// URI encoding piece
|
|
|
|
operand = stream_data.name_to_slug(operand);
|
|
|
|
|
2017-03-19 00:43:14 +01:00
|
|
|
return exports.encodeHashComponent(operand);
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.decodeHashComponent = function (str) {
|
|
|
|
return decodeURIComponent(str.replace(/\./g, '%'));
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.decode_operand = function (operator, operand) {
|
2018-06-06 18:50:09 +02:00
|
|
|
if (operator === 'group-pm-with' || operator === 'pm-with' || operator === 'sender') {
|
2017-03-19 00:43:14 +01:00
|
|
|
var emails = people.slug_to_emails(operand);
|
|
|
|
if (emails) {
|
|
|
|
return emails;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-15 21:02:47 +01:00
|
|
|
operand = exports.decodeHashComponent(operand);
|
|
|
|
|
|
|
|
if (operator === 'stream') {
|
|
|
|
return stream_data.slug_to_name(operand);
|
|
|
|
}
|
|
|
|
|
|
|
|
return operand;
|
2017-03-19 00:43:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
return exports;
|
|
|
|
|
|
|
|
}());
|
|
|
|
if (typeof module !== 'undefined') {
|
|
|
|
module.exports = hash_util;
|
|
|
|
}
|