107 lines
No EOL
3.9 KiB
JavaScript
107 lines
No EOL
3.9 KiB
JavaScript
/*
|
|
* ThunderAI [https://micz.it/thunderdbird-addon-thunderai/]
|
|
* Copyright (C) 2024 Mic (m@micz.it)
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
export function getLanguageDisplayName(languageCode) {
|
|
const languageDisplay = new Intl.DisplayNames([languageCode], {type: 'language'});
|
|
let lang_string = languageDisplay.of(languageCode);
|
|
return lang_string.charAt(0).toUpperCase() + lang_string.slice(1);
|
|
}
|
|
|
|
export async function getCurrentIdentity(msgHeader) {
|
|
let identities_array = [];
|
|
let fallback_identity = '';
|
|
let accounts = await browser.accounts.list();
|
|
for (let account of accounts) {
|
|
for (let identity of account.identities) {
|
|
identities_array.push({id: identity.id, email:identity.email})
|
|
if(fallback_identity === '') {
|
|
fallback_identity = {id: identity.id, email:identity.email}
|
|
}
|
|
}
|
|
}
|
|
// check if the author is an identity
|
|
let author = extractEmail(msgHeader.author);
|
|
let author_identity = identities_array.find(identity => identity.email === author);
|
|
if (author_identity) {
|
|
return author_identity.id;
|
|
}
|
|
let correspondents_array = msgHeader.bccList.concat(msgHeader.ccList, msgHeader.recipients);
|
|
correspondents_array = correspondents_array.map(correspondent => {
|
|
correspondent = extractEmail(correspondent);
|
|
return correspondent;
|
|
});
|
|
const matching_identity = correspondents_array.map(correspondent => identities_array.find(identity => identity.email === correspondent)).find(identity => identity !== undefined);
|
|
if(matching_identity) {
|
|
return matching_identity.id;
|
|
} else { // no identity found. using the fallback one
|
|
return fallback_identity.id;
|
|
}
|
|
}
|
|
|
|
function extractEmail(text) {
|
|
const emailRegex = /[\w.-]+@[\w.-]+\.\w+/;
|
|
const match = text.match(emailRegex);
|
|
return match ? match[0] : '';
|
|
}
|
|
|
|
|
|
export async function replaceBody(tabId, text){
|
|
let composeDetails = await messenger.compose.getComposeDetails(tabId);
|
|
let originalHtmlBody = composeDetails.body;
|
|
console.log('originalHtmlBody: ' + originalHtmlBody);
|
|
let fullBody = insertText(text, originalHtmlBody);
|
|
console.log('fullBody: ' + fullBody);
|
|
await messenger.compose.setComposeDetails(tabId, {body: fullBody});
|
|
}
|
|
|
|
|
|
// The following methods are a modified version derived from https://github.com/ali-raheem/Aify/blob/13ff87583bc520fb80f555ab90a90c5c9df797a7/plugin/content_scripts/compose.js
|
|
|
|
const insertText = function (text, fullBody_string) {
|
|
const parser = new DOMParser();
|
|
let fullBody = parser.parseFromString(fullBody_string, "text/html");
|
|
const prefix = fullBody.getElementsByClassName("moz-cite-prefix");
|
|
if (prefix.length > 0) {
|
|
const divider = prefix[0];
|
|
let sibling = divider.previousSibling;
|
|
while (sibling) {
|
|
fullBody.body.removeChild(sibling);
|
|
sibling = divider.previousSibling;
|
|
}
|
|
}
|
|
makeParagraphs(text, function (p) {
|
|
fullBody.body.insertBefore(p, fullBody.body.firstChild);
|
|
});
|
|
return fullBody.body.innerHTML;
|
|
}
|
|
|
|
const makeParagraphs = (text, func) => {
|
|
const chunks = text.split(/\n{2,}/);
|
|
if (chunks.length == 1) {
|
|
return func(document.createTextNode(text));
|
|
}
|
|
const paragraphs = chunks.map((t) => {
|
|
const p = document.createElement("p");
|
|
p.innerText = t;
|
|
return p;
|
|
});
|
|
for (let i = paragraphs.length - 1; i >= 0; i--) {
|
|
func(paragraphs[i]);
|
|
}
|
|
}; |