/**
* @license
* Copyright The Closure Library Authors.
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Functions for encoding strings according to MIME
* standards, especially RFC 1522.
*/
goog.provide('goog.i18n.mime');
goog.provide('goog.i18n.mime.encode');
goog.require('goog.array');
goog.require('goog.i18n.uChar');
/**
* Regular expression for matching those characters that are outside the
* range that can be used in the quoted-printable encoding of RFC 1522:
* anything outside the 7-bit ASCII encoding, plus ?, =, _ or space.
* @type {RegExp}
* @private
*/
goog.i18n.mime.NONASCII_ = /[\uD800-\uDBFF][\uDC00-\uDFFF]|[^!-<>@-^`-~]/g;
/**
* Like goog.i18n.NONASCII_ but also omits double-quotes.
* @type {RegExp}
* @private
*/
goog.i18n.mime.NONASCII_NOQUOTE_ =
/[\uD800-\uDBFF][\uDC00-\uDFFF]|[^!#-<>@-^`-~]/g;
/**
* Encodes a string for inclusion in a MIME header. The string is encoded
* in UTF-8 according to RFC 1522, using quoted-printable form.
* @param {string} str The string to encode.
* @param {boolean=} opt_noquote Whether double-quote characters should also
* be escaped (should be true if the result will be placed inside a
* quoted string for a parameter value in a MIME header).
* @return {string} The encoded string.
*/
goog.i18n.mime.encode = function(str, opt_noquote) {
'use strict';
var nonascii =
opt_noquote ? goog.i18n.mime.NONASCII_NOQUOTE_ : goog.i18n.mime.NONASCII_;
if (str.search(nonascii) >= 0) {
str = '=?UTF-8?Q?' +
str.replace(
nonascii,
/**
* @param {string} c The matched char.
* @return {string} The quoted-printable form of utf-8 encoding.
*/
function(c) {
'use strict';
var i = c.charCodeAt(0);
if (i == 32) {
// Special case for space, which can be encoded as _ not =20
return '_';
}
var a = goog.array.concat('', goog.i18n.mime.getHexCharArray(c));
return a.join('=');
}) +
'?=';
}
return str;
};
/**
* Get an array of UTF-8 hex codes for a given character.
* @param {string} c The matched character.
* @return {!Array<string>} A hex array representing the character.
*/
goog.i18n.mime.getHexCharArray = function(c) {
'use strict';
var i = goog.i18n.uChar.toCharCode(c);
var a = [];
// First convert the UCS-2 character into its UTF-8 bytes
if (i < 128) {
a.push(i);
} else if (i <= 0x7ff) {
a.push(0xc0 + ((i >> 6) & 0x3f), 0x80 + (i & 0x3f));
} else if (i <= 0xffff) {
a.push(
0xe0 + ((i >> 12) & 0x3f), 0x80 + ((i >> 6) & 0x3f), 0x80 + (i & 0x3f));
} else {
// Handle code points that take more than 16 bits.
a.push(
0xf0 + ((i >> 18) & 0x3f), 0x80 + ((i >> 12) & 0x3f),
0x80 + ((i >> 6) & 0x3f), 0x80 + (i & 0x3f));
}
// Now convert those bytes into hex strings (don't do anything with
// a[0] as that's got the empty string that lets us use join())
for (i = a.length - 1; i >= 0; --i) {
a[i] = a[i].toString(16);
}
return a;
};