2020-08-17 15:03:10 -04:00
|
|
|
// mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer
|
|
|
|
// Copyright (C) 2020 Tulir Asokan
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
// Definitions and docs for methods that the Puppeteer script exposes for the content script
|
|
|
|
/**
|
|
|
|
* @param {string} text - The date string to parse
|
|
|
|
* @param {Date} [ref] - Reference date to parse relative times
|
|
|
|
* @param {{[forwardDate]: boolean}} [option] - Extra options for parser
|
|
|
|
* @return {Promise<Date>}
|
|
|
|
*/
|
2020-08-24 15:24:19 -04:00
|
|
|
window.__chronoParseDate = function (text, ref, option) {}
|
2020-08-17 15:03:10 -04:00
|
|
|
/**
|
2020-08-24 16:00:32 -04:00
|
|
|
* @param {string[]} changes - The hrefs of the chats that changed.
|
2020-08-24 15:24:19 -04:00
|
|
|
* @return {Promise<void>}
|
2020-08-17 15:03:10 -04:00
|
|
|
*/
|
2020-08-24 15:24:19 -04:00
|
|
|
window.__mautrixReceiveChanges = function (changes) {}
|
2020-08-17 15:03:10 -04:00
|
|
|
/**
|
|
|
|
* @param {string} url - The URL for the QR code.
|
2020-08-24 15:24:19 -04:00
|
|
|
* @return {Promise<void>}
|
2020-08-17 15:03:10 -04:00
|
|
|
*/
|
2020-08-24 15:24:19 -04:00
|
|
|
window.__mautrixReceiveQR = function (url) {}
|
2020-08-28 12:34:13 -04:00
|
|
|
/**
|
|
|
|
* @param {number} id - The ID of the message that was sent
|
|
|
|
* @return {Promise<void>}
|
|
|
|
*/
|
|
|
|
window.__mautrixReceiveMessageID = function(id) {}
|
2020-08-17 15:03:10 -04:00
|
|
|
|
|
|
|
class MautrixController {
|
|
|
|
constructor() {
|
|
|
|
this.chatListObserver = null
|
|
|
|
this.qrCodeObserver = null
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a date string.
|
|
|
|
*
|
|
|
|
* @param {string} text - The string to parse
|
2020-08-28 09:38:06 -04:00
|
|
|
* @param {Date} [ref] - Reference date to parse relative times
|
|
|
|
* @param {{[forwardDate]: boolean}} [option] - Extra options for parser
|
2020-08-17 15:03:10 -04:00
|
|
|
* @return {Promise<null|Date>} - The date, or null if parsing failed.
|
|
|
|
* @private
|
|
|
|
*/
|
2020-08-28 09:38:06 -04:00
|
|
|
async _tryParseDate(text, ref, option) {
|
|
|
|
const parsed = await window.__chronoParseDate(text, ref, option)
|
2020-08-17 15:03:10 -04:00
|
|
|
if (parsed) {
|
|
|
|
return new Date(parsed)
|
|
|
|
}
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a date separator (mws-relative-timestamp)
|
|
|
|
*
|
2020-08-28 09:38:06 -04:00
|
|
|
* @param {string} text - The text in the mws-relative-timestamp element.
|
2020-08-17 15:03:10 -04:00
|
|
|
* @return {?Date} - The value in the date separator.
|
|
|
|
* @private
|
|
|
|
*/
|
2020-08-28 09:38:06 -04:00
|
|
|
async _parseDate(text) {
|
2020-08-17 15:03:10 -04:00
|
|
|
if (!text) {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
text = text
|
|
|
|
.replace(/[^\w\d\s,:.-]/g, "")
|
|
|
|
.replace(/\s{2,}/g, " ")
|
|
|
|
.trim()
|
|
|
|
const now = new Date()
|
|
|
|
let newDate = await this._tryParseDate(text)
|
|
|
|
if (!newDate || newDate > now) {
|
|
|
|
const lastWeek = new Date()
|
|
|
|
lastWeek.setDate(lastWeek.getDate() - 7)
|
|
|
|
newDate = await this._tryParseDate(text, lastWeek, { forwardDate: true })
|
|
|
|
}
|
|
|
|
return newDate <= now ? newDate : null
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef MessageData
|
|
|
|
* @type {object}
|
2020-08-18 09:47:06 -04:00
|
|
|
* @property {number} id - The ID of the message. Seems to be sequential.
|
|
|
|
* @property {number} timestamp - The unix timestamp of the message. Not very accurate.
|
|
|
|
* @property {boolean} is_outgoing - Whether or not this user sent the message.
|
|
|
|
* @property {string} [text] - The text in the message.
|
|
|
|
* @property {string} [image] - The URL to the image in the message.
|
2020-08-17 15:03:10 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a message element (mws-message-wrapper)
|
|
|
|
*
|
|
|
|
* @param {Date} date - The most recent date indicator.
|
|
|
|
* @param {Element} element - The message element.
|
|
|
|
* @return {MessageData}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_parseMessage(date, element) {
|
|
|
|
const messageData = {
|
|
|
|
id: +element.getAttribute("msg-id"),
|
|
|
|
timestamp: date ? date.getTime() : null,
|
2020-08-18 09:47:06 -04:00
|
|
|
is_outgoing: element.getAttribute("is-outgoing") === "true",
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
messageData.text = element.querySelector("mws-text-message-part .text-msg")?.innerText
|
|
|
|
if (element.querySelector("mws-image-message-part .image-msg")) {
|
|
|
|
messageData.image = true
|
|
|
|
}
|
|
|
|
return messageData
|
|
|
|
}
|
|
|
|
|
2020-08-28 12:34:13 -04:00
|
|
|
waitForMessage(elem) {
|
|
|
|
return new Promise(resolve => {
|
|
|
|
let msgID = null
|
|
|
|
const observer = new MutationObserver(changes => {
|
|
|
|
for (const change of changes) {
|
|
|
|
if (change.type === "attributes" && change.attributeName === "msg-id") {
|
|
|
|
msgID = +elem.getAttribute("msg-id")
|
|
|
|
window.__mautrixReceiveMessageID(msgID)
|
|
|
|
} else if (change.type === "childList"
|
|
|
|
&& change.target.nodeName.toLowerCase() === "mws-relative-timestamp"
|
|
|
|
&& change.addedNodes.length > 0
|
|
|
|
&& change.addedNodes[0] instanceof Text) {
|
|
|
|
resolve(msgID)
|
|
|
|
observer.disconnect()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
observer.observe(elem, { attributes: true, attributeFilter: ["msg-id"] })
|
|
|
|
observer.observe(elem.querySelector("mws-message-status"), {
|
|
|
|
childList: true,
|
|
|
|
subtree: true,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-08-17 15:03:10 -04:00
|
|
|
/**
|
|
|
|
* Parse a message list in the given element. The element should probably be the .content div
|
|
|
|
* inside a mws-message-list element.
|
|
|
|
*
|
|
|
|
* @param {Element} element - The message list element.
|
|
|
|
* @return {[MessageData]} - A list of messages.
|
|
|
|
*/
|
|
|
|
async parseMessageList(element) {
|
|
|
|
const messages = []
|
|
|
|
let messageDate = null
|
|
|
|
for (const child of element.children) {
|
|
|
|
switch (child.tagName.toLowerCase()) {
|
2020-08-18 09:47:06 -04:00
|
|
|
case "mws-message-wrapper":
|
2020-08-28 12:34:13 -04:00
|
|
|
if (!child.getAttribute("msg-id").startsWith("tmp_")) {
|
|
|
|
messages.push(this._parseMessage(messageDate, child))
|
|
|
|
}
|
2020-08-18 09:47:06 -04:00
|
|
|
break
|
|
|
|
case "mws-tombstone-message-wrapper":
|
2020-08-24 15:24:19 -04:00
|
|
|
messageDate = await this._parseDate(
|
|
|
|
child.querySelector("mws-relative-timestamp")?.innerText,
|
|
|
|
) || messageDate
|
2020-08-18 09:47:06 -04:00
|
|
|
break
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return messages
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef Participant
|
|
|
|
* @type object
|
|
|
|
* @property {string} id - The unique-ish identifier for the participant
|
|
|
|
* @property {string} name - The contact list name of the participant
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a mw-conversation-details .participants list.
|
|
|
|
*
|
|
|
|
* @param {Element} element - The participant list element.
|
|
|
|
* @return {[Participant]} - The list of participants.
|
|
|
|
*/
|
|
|
|
parseParticipantList(element) {
|
|
|
|
const participants = []
|
|
|
|
for (const participantElem of element.getElementsByClassName("participant")) {
|
|
|
|
const nameElem = participantElem.querySelector(".participant-name")
|
|
|
|
const name = nameElem.innerText.trim()
|
|
|
|
let id = name
|
|
|
|
if (nameElem.nextElementSibling && nameElem.nextElementSibling.hasAttribute("data-e2e-details-participant-number")) {
|
|
|
|
id = nameElem.nextElementSibling.innerText
|
|
|
|
}
|
2020-08-28 09:38:06 -04:00
|
|
|
// For phone numbers, remove the + prefix
|
|
|
|
// For non-number IDs, prepend name_ and force-lowercase
|
|
|
|
id = /^\+\d+$/.test(id) ? id.substr(1) : `name_${id.toLowerCase()}`
|
2020-08-17 15:03:10 -04:00
|
|
|
participants.push({ name, id })
|
|
|
|
}
|
|
|
|
return participants
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef ChatListInfo
|
|
|
|
* @type object
|
|
|
|
* @property {number} id - The ID of the chat.
|
|
|
|
* @property {string} name - The name of the chat.
|
2020-08-18 09:47:06 -04:00
|
|
|
* @property {string} lastMsg - The most recent message in the chat.
|
|
|
|
* May be prefixed by sender name.
|
2020-08-24 16:00:32 -04:00
|
|
|
* @property {string} lastMsgDate - An imprecise date for the most recent message
|
|
|
|
* (e.g. "7:16 PM", "Thu" or "Aug 4")
|
2020-08-17 15:03:10 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a mws-conversation-list-item element.
|
|
|
|
*
|
|
|
|
* @param {Element} element - The element to parse.
|
|
|
|
* @return {ChatListInfo} - The info in the element.
|
|
|
|
*/
|
|
|
|
parseChatListItem(element) {
|
|
|
|
if (element.tagName.toLowerCase() === "mws-conversation-list-item") {
|
|
|
|
element = element.querySelector("a.list-item")
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
id: +element.getAttribute("href").split("/").pop(),
|
|
|
|
name: element.querySelector("h3.name").innerText,
|
|
|
|
lastMsg: element.querySelector("mws-conversation-snippet").innerText,
|
|
|
|
lastMsgDate: element.querySelector("mws-relative-timestamp").innerText,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a mws-conversations-list .conv-container list.
|
|
|
|
* @param {Element} element - The chat list element.
|
|
|
|
* @return {[ChatListInfo]} - The list of chats.
|
|
|
|
*/
|
|
|
|
parseChatList(element) {
|
|
|
|
const chats = []
|
|
|
|
for (const child of element.children) {
|
|
|
|
if (child.tagName.toLowerCase() !== "mws-conversation-list-item") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
chats.push(this.parseChatListItem(child))
|
|
|
|
}
|
|
|
|
return chats
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if an image has been downloaded.
|
|
|
|
*
|
|
|
|
* @param {number} id - The ID of the message whose image to check.
|
|
|
|
* @return {boolean} - Whether or not the image has been downloaded
|
|
|
|
*/
|
|
|
|
imageExists(id) {
|
2020-08-24 15:24:19 -04:00
|
|
|
const imageElement = document.querySelector(
|
|
|
|
`mws-message-wrapper[msg-id="${id}"] mws-image-message-part .image-msg`)
|
|
|
|
return !imageElement.classList.contains("not-rendered")
|
|
|
|
&& imageElement.getAttribute("src") !== ""
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Download an image and return it as a data URL.
|
|
|
|
* Used for downloading the blob: URLs in image messages.
|
|
|
|
*
|
|
|
|
* @param {number} id - The ID of the message whose image to download.
|
|
|
|
* @return {Promise<string>} - The data URL (containing the mime type and base64 data)
|
|
|
|
*/
|
|
|
|
async readImage(id) {
|
2020-08-24 15:24:19 -04:00
|
|
|
const imageElement = document.querySelector(
|
|
|
|
`mws-message-wrapper[msg-id="${id}"] mws-image-message-part .image-msg`)
|
|
|
|
const resp = await fetch(imageElement.getAttribute("src"))
|
2020-08-17 15:03:10 -04:00
|
|
|
const reader = new FileReader()
|
|
|
|
const promise = new Promise((resolve, reject) => {
|
|
|
|
reader.onload = () => resolve(reader.result)
|
|
|
|
reader.onerror = reject
|
|
|
|
})
|
|
|
|
reader.readAsDataURL(await resp.blob())
|
|
|
|
return promise
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {[MutationRecord]} mutations - The mutation records that occurred
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_observeChatListMutations(mutations) {
|
|
|
|
const changedChatIDs = new Set()
|
|
|
|
for (const change of mutations) {
|
|
|
|
console.debug("Chat list mutation:", change)
|
|
|
|
if (!(change.target instanceof Element)
|
|
|
|
|| change.target.tagName.toLowerCase() === "mws-conversation-list-item-menu") {
|
2020-08-24 16:00:32 -04:00
|
|
|
console.debug("Ignoring chat list mutation:", change.target instanceof Element)
|
2020-08-17 15:03:10 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
const chat = this.parseChatListItem(change.target.closest("mws-conversation-list-item"))
|
2020-08-24 16:00:32 -04:00
|
|
|
console.debug("Changed chat list item:", chat)
|
2020-08-17 15:03:10 -04:00
|
|
|
changedChatIDs.add(chat.id)
|
|
|
|
}
|
|
|
|
if (changedChatIDs.size > 0) {
|
|
|
|
console.debug("Dispatching chat list mutations:", changedChatIDs)
|
2020-08-24 16:00:32 -04:00
|
|
|
window.__mautrixReceiveChanges(Array.from(changedChatIDs)).then(
|
|
|
|
() => console.debug("Chat list mutations dispatched"),
|
|
|
|
err => console.error("Error dispatching chat list mutations:", err))
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a mutation observer to the given element.
|
|
|
|
*
|
|
|
|
* @param {Element} element - The DOM element to add the mutation observer to.
|
|
|
|
*/
|
|
|
|
addChatListObserver(element) {
|
|
|
|
if (this.chatListObserver !== null) {
|
|
|
|
this.removeChatListObserver()
|
|
|
|
}
|
2020-08-24 16:00:32 -04:00
|
|
|
this.chatListObserver = new MutationObserver(mutations => {
|
|
|
|
try {
|
|
|
|
this._observeChatListMutations(mutations)
|
|
|
|
} catch (err) {
|
|
|
|
console.error("Error observing chat list mutations:", err)
|
|
|
|
}
|
|
|
|
})
|
2020-08-17 15:03:10 -04:00
|
|
|
this.chatListObserver.observe(element, { childList: true, subtree: true })
|
|
|
|
console.debug("Started chat list observer")
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disconnect the most recently added mutation observer.
|
|
|
|
*/
|
|
|
|
removeChatListObserver() {
|
|
|
|
if (this.chatListObserver !== null) {
|
|
|
|
this.chatListObserver.disconnect()
|
|
|
|
this.chatListObserver = null
|
|
|
|
console.debug("Disconnected chat list observer")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
addQRObserver(element) {
|
|
|
|
if (this.qrCodeObserver !== null) {
|
|
|
|
this.removeQRObserver()
|
|
|
|
}
|
|
|
|
this.qrCodeObserver = new MutationObserver(changes => {
|
|
|
|
for (const change of changes) {
|
|
|
|
if (change.attributeName === "data-qr-code" && change.target instanceof Element) {
|
|
|
|
window.__mautrixReceiveQR(change.target.getAttribute("data-qr-code"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
this.qrCodeObserver.observe(element, {
|
|
|
|
attributes: true,
|
|
|
|
attributeFilter: ["data-qr-code"],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
removeQRObserver() {
|
|
|
|
if (this.qrCodeObserver !== null) {
|
|
|
|
this.qrCodeObserver.disconnect()
|
|
|
|
this.qrCodeObserver = null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window.__mautrixController = new MautrixController()
|