2021-03-15 01:40:56 -04:00
|
|
|
// matrix-puppeteer-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer
|
2021-02-26 01:28:54 -05:00
|
|
|
// Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti
|
2020-08-17 15:03:10 -04:00
|
|
|
//
|
|
|
|
// 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) {}
|
2021-02-10 02:34:19 -05:00
|
|
|
/**
|
|
|
|
* @return {Promise<void>}
|
|
|
|
*/
|
|
|
|
window.__mautrixSendEmailCredentials = function () {}
|
|
|
|
/**
|
|
|
|
* @param {string} pin - The login PIN.
|
|
|
|
* @return {Promise<void>}
|
|
|
|
*/
|
|
|
|
window.__mautrixReceivePIN = function (pin) {}
|
|
|
|
/**
|
|
|
|
* @param {Element} button - The button to click when a QR code or PIN expires.
|
|
|
|
* @return {Promise<void>}
|
|
|
|
*/
|
|
|
|
window.__mautrixExpiry = function (button) {}
|
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) {}
|
2021-02-25 22:21:11 -05:00
|
|
|
/**
|
|
|
|
* @return {Promise<Element>}
|
|
|
|
*/
|
|
|
|
window.__mautrixGetParticipantsList = function() {}
|
|
|
|
|
|
|
|
const ChatTypeEnum = Object.freeze({
|
|
|
|
DIRECT: 1,
|
|
|
|
GROUP: 2,
|
|
|
|
ROOM: 3,
|
|
|
|
})
|
2020-08-17 15:03:10 -04:00
|
|
|
|
|
|
|
class MautrixController {
|
2021-02-25 22:21:11 -05:00
|
|
|
constructor(ownID) {
|
2020-08-17 15:03:10 -04:00
|
|
|
this.chatListObserver = null
|
2021-02-10 02:34:19 -05:00
|
|
|
this.qrChangeObserver = null
|
|
|
|
this.qrAppearObserver = null
|
|
|
|
this.emailAppearObserver = null
|
|
|
|
this.pinAppearObserver = null
|
|
|
|
this.expiryObserver = null
|
2021-02-25 22:21:11 -05:00
|
|
|
this.ownID = null
|
|
|
|
}
|
|
|
|
|
|
|
|
setOwnID(ownID) {
|
|
|
|
// Remove characters that will conflict with mxid grammar
|
|
|
|
const suffix = ownID.slice(1).replace(":", "_ON_")
|
|
|
|
this.ownID = `_OWN_${suffix}`
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO Commonize with Node context
|
|
|
|
getChatType(id) {
|
|
|
|
switch (id.charAt(0)) {
|
|
|
|
case "u":
|
|
|
|
return ChatTypeEnum.DIRECT
|
|
|
|
case "c":
|
|
|
|
return ChatTypeEnum.GROUP
|
|
|
|
case "r":
|
|
|
|
return ChatTypeEnum.ROOM
|
|
|
|
default:
|
|
|
|
throw `Invalid chat ID: ${id}`
|
|
|
|
}
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
2021-04-06 01:56:46 -04:00
|
|
|
* @return {Promise<?Date>} - The date, or null if parsing failed.
|
2020-08-17 15:03:10 -04:00
|
|
|
* @private
|
|
|
|
*/
|
2020-08-28 09:38:06 -04:00
|
|
|
async _tryParseDate(text, ref, option) {
|
|
|
|
const parsed = await window.__chronoParseDate(text, ref, option)
|
2021-02-20 20:00:32 -05:00
|
|
|
return parsed ? new Date(parsed) : null
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2021-02-20 20:00:32 -05:00
|
|
|
async _tryParseDayDate(text) {
|
2020-08-17 15:03:10 -04:00
|
|
|
if (!text) {
|
|
|
|
return null
|
|
|
|
}
|
2021-02-20 20:00:32 -05:00
|
|
|
text = text.replace(/\. /, "/")
|
2020-08-17 15:03:10 -04:00
|
|
|
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 })
|
|
|
|
}
|
2021-02-20 20:00:32 -05:00
|
|
|
return newDate && newDate <= now ? newDate : null
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
|
2021-02-25 22:21:11 -05:00
|
|
|
/**
|
|
|
|
* Try to match a user against an entry in the friends list to get their ID.
|
|
|
|
*
|
|
|
|
* @param {Element} element - The display name of the user to find the ID for.
|
2021-04-06 01:56:46 -04:00
|
|
|
* @return {?str} - The user's ID if found.
|
2021-02-25 22:21:11 -05:00
|
|
|
*/
|
|
|
|
getUserIdFromFriendsList(senderName) {
|
|
|
|
return document.querySelector(`#contact_wrap_friends > ul > li[title='${senderName}']`)?.getAttribute("data-mid")
|
|
|
|
}
|
|
|
|
|
2020-08-17 15:03:10 -04:00
|
|
|
/**
|
|
|
|
* @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.
|
2021-04-05 03:54:35 -04:00
|
|
|
* @property {?Participant} sender - Full data of the participant who sent the message, if needed and available.
|
|
|
|
* @property {?string} html - The HTML format of the message, if necessary.
|
|
|
|
* @property {?string} image_url - The URL to the image in the message, if it's an image-only message.
|
2020-08-17 15:03:10 -04:00
|
|
|
*/
|
|
|
|
|
2021-03-29 01:25:05 -04:00
|
|
|
_isLoadedImageURL(src) {
|
2021-04-05 03:54:35 -04:00
|
|
|
return src && (src.startsWith("blob:") || src.startsWith("res/"))
|
2021-03-29 01:25:05 -04:00
|
|
|
}
|
|
|
|
|
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.
|
2021-02-25 22:21:11 -05:00
|
|
|
* @param {int} chatType - What kind of chat this message is part of.
|
2020-08-17 15:03:10 -04:00
|
|
|
* @return {MessageData}
|
|
|
|
* @private
|
|
|
|
*/
|
2021-02-25 22:21:11 -05:00
|
|
|
async _tryParseMessage(date, element, chatType) {
|
|
|
|
const is_outgoing = element.classList.contains("mdRGT07Own")
|
|
|
|
let sender = {}
|
|
|
|
|
|
|
|
// TODO Clean up participantsList access...
|
|
|
|
const participantsListSelector = "#_chat_detail_area > .mdRGT02Info ul.mdRGT13Ul"
|
|
|
|
|
|
|
|
// Don't need sender ID for direct chats, since the portal will have it already.
|
|
|
|
if (chatType == ChatTypeEnum.DIRECT) {
|
|
|
|
sender = null
|
|
|
|
} else if (!is_outgoing) {
|
|
|
|
sender.name = element.querySelector(".mdRGT07Body > .mdRGT07Ttl").innerText
|
|
|
|
// Room members are always friends (right?),
|
|
|
|
// so search the friend list for the sender's name
|
|
|
|
// and get their ID from there.
|
|
|
|
sender.id = this.getUserIdFromFriendsList(sender.name)
|
|
|
|
// Group members aren't necessarily friends,
|
|
|
|
// but the participant list includes their ID.
|
|
|
|
if (!sender.id) {
|
|
|
|
await window.__mautrixShowParticipantsList()
|
|
|
|
const participantsList = document.querySelector(participantsListSelector)
|
|
|
|
sender.id = participantsList.querySelector(`img[alt='${senderName}'`).parentElement.parentElement.getAttribute("data-mid")
|
|
|
|
}
|
2021-03-26 02:27:21 -04:00
|
|
|
sender.avatar = this.getParticipantListItemAvatar(element)
|
2021-02-25 22:21:11 -05:00
|
|
|
} else {
|
|
|
|
// TODO Get own ID and store it somewhere appropriate.
|
|
|
|
// Unable to get own ID from a room chat...
|
|
|
|
// if (chatType == ChatTypeEnum.GROUP) {
|
|
|
|
// await window.__mautrixShowParticipantsList()
|
|
|
|
// const participantsList = document.querySelector("#_chat_detail_area > .mdRGT02Info ul.mdRGT13Ul")
|
|
|
|
// // TODO The first member is always yourself, right?
|
|
|
|
// // TODO Cache this so own ID can be used later
|
|
|
|
// sender = participantsList.children[0].getAttribute("data-mid")
|
|
|
|
// }
|
|
|
|
await window.__mautrixShowParticipantsList()
|
|
|
|
const participantsList = document.querySelector(participantsListSelector)
|
|
|
|
sender.name = this.getParticipantListItemName(participantsList.children[0])
|
2021-03-26 02:27:21 -04:00
|
|
|
sender.avatar = this.getParticipantListItemAvatar(participantsList.children[0])
|
2021-02-25 22:21:11 -05:00
|
|
|
sender.id = this.ownID
|
|
|
|
}
|
|
|
|
|
2020-08-17 15:03:10 -04:00
|
|
|
const messageData = {
|
2021-02-20 20:00:32 -05:00
|
|
|
id: +element.getAttribute("data-local-id"),
|
2020-08-17 15:03:10 -04:00
|
|
|
timestamp: date ? date.getTime() : null,
|
2021-02-25 22:21:11 -05:00
|
|
|
is_outgoing: is_outgoing,
|
|
|
|
sender: sender,
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
2021-02-20 20:00:32 -05:00
|
|
|
const messageElement = element.querySelector(".mdRGT07Body > .mdRGT07Msg")
|
|
|
|
if (messageElement.classList.contains("mdRGT07Text")) {
|
2021-04-05 03:54:35 -04:00
|
|
|
messageData.html = messageElement.querySelector(".mdRGT07MsgTextInner")?.innerHTML
|
2021-04-02 03:21:30 -04:00
|
|
|
} else if (
|
2021-04-05 03:54:35 -04:00
|
|
|
messageElement.classList.contains("mdRGT07Image") ||
|
|
|
|
messageElement.classList.contains("mdRGT07Sticker")
|
2021-04-02 03:21:30 -04:00
|
|
|
) {
|
2021-03-28 04:23:07 -04:00
|
|
|
const img = messageElement.querySelector(".mdRGT07MsgImg > img")
|
|
|
|
if (img) {
|
2021-03-29 01:25:05 -04:00
|
|
|
let resolve
|
|
|
|
// TODO Should reject on "#_chat_message_image_failure"
|
|
|
|
let observer = new MutationObserver((changes) => {
|
|
|
|
for (const change of changes) {
|
|
|
|
if (this._isLoadedImageURL(change.target.src) && observer) {
|
|
|
|
observer.disconnect()
|
|
|
|
observer = null
|
|
|
|
resolve(change.target.src)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
observer.observe(img, { attributes: true, attributeFilter: ["src"] })
|
|
|
|
|
|
|
|
if (this._isLoadedImageURL(img.src)) {
|
|
|
|
// Check for this AFTER attaching the observer, in case
|
|
|
|
// the image loaded after the img element was found but
|
|
|
|
// before the observer was attached.
|
2021-03-28 04:23:07 -04:00
|
|
|
messageData.image_url = img.src
|
2021-03-29 01:25:05 -04:00
|
|
|
observer.disconnect()
|
2021-03-28 04:23:07 -04:00
|
|
|
} else {
|
|
|
|
messageData.image_url = await new Promise((realResolve, reject) => {
|
|
|
|
resolve = realResolve
|
|
|
|
setTimeout(() => {
|
|
|
|
if (observer) {
|
|
|
|
observer.disconnect()
|
|
|
|
resolve(img.src)
|
|
|
|
}
|
2021-03-29 01:25:05 -04:00
|
|
|
}, 10000) // Longer timeout for image downloads
|
2021-03-28 04:23:07 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
return messageData
|
|
|
|
}
|
|
|
|
|
2021-02-20 03:47:26 -05:00
|
|
|
|
2021-03-29 01:25:05 -04:00
|
|
|
promiseOwnMessage(timeoutLimitMillis, successSelector, failureSelector=null) {
|
2021-02-20 03:47:26 -05:00
|
|
|
let observer
|
|
|
|
let msgID = -1
|
|
|
|
let resolve
|
2021-03-29 01:25:05 -04:00
|
|
|
let reject
|
2021-02-20 03:47:26 -05:00
|
|
|
|
2021-03-28 03:16:07 -04:00
|
|
|
const resolveMessage = () => {
|
|
|
|
observer.disconnect()
|
|
|
|
observer = null
|
|
|
|
window.__mautrixReceiveMessageID(msgID)
|
|
|
|
resolve(msgID)
|
|
|
|
}
|
|
|
|
|
2021-03-29 01:25:05 -04:00
|
|
|
const rejectMessage = failureElement => {
|
|
|
|
observer.disconnect()
|
|
|
|
observer = null
|
|
|
|
reject(failureElement)
|
|
|
|
}
|
|
|
|
|
|
|
|
const changeCallback = (changes) => {
|
2021-02-20 03:47:26 -05:00
|
|
|
for (const change of changes) {
|
|
|
|
for (const addedNode of change.addedNodes) {
|
|
|
|
if (addedNode.classList.contains("mdRGT07Own")) {
|
2021-03-29 01:25:05 -04:00
|
|
|
const successElement = addedNode.querySelector(successSelector)
|
|
|
|
if (successElement) {
|
|
|
|
console.log("Found success element")
|
|
|
|
console.log(successElement)
|
2021-02-20 20:00:32 -05:00
|
|
|
msgID = +addedNode.getAttribute("data-local-id")
|
2021-03-29 01:25:05 -04:00
|
|
|
if (successElement.classList.contains("MdNonDisp")) {
|
|
|
|
console.log("Invisible success, wait")
|
2021-03-28 03:16:07 -04:00
|
|
|
observer.disconnect()
|
2021-03-29 01:25:05 -04:00
|
|
|
observer = new MutationObserver(getVisibleCallback(true))
|
|
|
|
observer.observe(successElement, { attributes: true, attributeFilter: ["class"] })
|
2021-03-28 03:16:07 -04:00
|
|
|
} else {
|
2021-03-29 01:25:05 -04:00
|
|
|
console.log("Already visible success")
|
2021-03-28 03:16:07 -04:00
|
|
|
resolveMessage()
|
|
|
|
}
|
2021-02-20 03:47:26 -05:00
|
|
|
return
|
2021-03-29 01:25:05 -04:00
|
|
|
} else if (failureSelector) {
|
|
|
|
const failureElement = addedNode.querySelector(failureSelector)
|
|
|
|
if (failureElement) {
|
|
|
|
console.log("Found failure element")
|
|
|
|
console.log(failureElement)
|
|
|
|
if (failureElement.classList.contains("MdNonDisp")) {
|
|
|
|
console.log("Invisible failure, wait")
|
|
|
|
observer.disconnect()
|
|
|
|
observer = new MutationObserver(getVisibleCallback(false))
|
|
|
|
observer.observe(successElement, { attributes: true, attributeFilter: ["class"] })
|
|
|
|
} else {
|
|
|
|
console.log("Already visible failure")
|
|
|
|
rejectMessage(failureElement)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2021-02-20 03:47:26 -05:00
|
|
|
}
|
2020-08-28 12:34:13 -04:00
|
|
|
}
|
|
|
|
}
|
2021-02-20 03:47:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-29 01:25:05 -04:00
|
|
|
const getVisibleCallback = isSuccess => {
|
|
|
|
return changes => {
|
|
|
|
for (const change of changes) {
|
|
|
|
if (!change.target.classList.contains("MdNonDisp")) {
|
|
|
|
console.log(`Waited for visible ${isSuccess ? "success" : "failure"}`)
|
|
|
|
console.log(change.target)
|
|
|
|
isSuccess ? resolveMessage() : rejectMessage(change.target)
|
|
|
|
return
|
|
|
|
}
|
2021-02-20 03:47:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-29 01:25:05 -04:00
|
|
|
observer = new MutationObserver(changeCallback)
|
2021-02-20 03:47:26 -05:00
|
|
|
observer.observe(
|
|
|
|
document.querySelector("#_chat_room_msg_list"),
|
|
|
|
{ childList: true })
|
|
|
|
|
2021-03-29 01:25:05 -04:00
|
|
|
return new Promise((realResolve, realReject) => {
|
2021-02-20 03:47:26 -05:00
|
|
|
resolve = realResolve
|
2021-03-29 01:25:05 -04:00
|
|
|
reject = realReject
|
2021-03-28 03:16:07 -04:00
|
|
|
setTimeout(() => {
|
|
|
|
if (observer) {
|
2021-03-29 01:25:05 -04:00
|
|
|
console.log("Timeout!")
|
2021-03-28 03:16:07 -04:00
|
|
|
observer.disconnect()
|
|
|
|
reject()
|
|
|
|
}
|
2021-03-29 01:25:05 -04:00
|
|
|
}, timeoutLimitMillis)
|
2020-08-28 12:34:13 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-08-17 15:03:10 -04:00
|
|
|
/**
|
2021-02-20 20:00:32 -05:00
|
|
|
* Parse the message list of whatever the currently-viewed chat is.
|
2020-08-17 15:03:10 -04:00
|
|
|
*
|
2021-04-06 01:56:46 -04:00
|
|
|
* @param {?string} chatId - The ID of the currently-viewed chat, if known.
|
2020-08-17 15:03:10 -04:00
|
|
|
* @return {[MessageData]} - A list of messages.
|
|
|
|
*/
|
2021-02-25 22:21:11 -05:00
|
|
|
async parseMessageList(chatId) {
|
|
|
|
if (!chatId) {
|
|
|
|
chatId = this.getChatListItemId(document.querySelector("#_chat_list_body > .ExSelected > div"))
|
|
|
|
}
|
|
|
|
const chatType = this.getChatType(chatId);
|
2021-02-20 20:00:32 -05:00
|
|
|
const msgList = document.querySelector("#_chat_room_msg_list")
|
2020-08-17 15:03:10 -04:00
|
|
|
const messages = []
|
2021-02-20 20:00:32 -05:00
|
|
|
let refDate = null
|
|
|
|
for (const child of msgList.children) {
|
|
|
|
if (child.tagName == "DIV") {
|
|
|
|
if (child.classList.contains("mdRGT10Date")) {
|
|
|
|
refDate = await this._tryParseDayDate(child.firstElementChild.innerText)
|
|
|
|
}
|
|
|
|
else if (child.classList.contains("MdRGT07Cont")) {
|
|
|
|
// TODO :not(.MdNonDisp) to exclude not-yet-posted messages,
|
|
|
|
// but that is unlikely to be a problem here.
|
|
|
|
// Also, offscreen times may have .MdNonDisp on them
|
|
|
|
const timeElement = child.querySelector("time")
|
|
|
|
if (timeElement) {
|
|
|
|
const messageDate = await this._tryParseDate(timeElement.innerText, refDate)
|
2021-02-25 22:21:11 -05:00
|
|
|
messages.push(await this._tryParseMessage(messageDate, child, chatType))
|
2021-02-20 20:00:32 -05:00
|
|
|
}
|
2020-08-28 12:34:13 -04:00
|
|
|
}
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return messages
|
|
|
|
}
|
|
|
|
|
2021-03-26 02:27:21 -04:00
|
|
|
/**
|
|
|
|
* @typedef PathImage
|
|
|
|
* @type object
|
|
|
|
* @property {string} path - The virtual path of the image (behaves like an ID)
|
|
|
|
* @property {string} src - The URL of the image
|
|
|
|
*/
|
|
|
|
|
|
|
|
_getPathImage(img) {
|
|
|
|
if (img && img.src.startsWith("blob:")) {
|
|
|
|
// NOTE Having a blob but no path means the image exists,
|
|
|
|
// but in a form that cannot be uniquely identified.
|
|
|
|
// If instead there is no blob, the image is blank.
|
|
|
|
return {
|
|
|
|
path: img.getAttribute("data-picture-path"),
|
|
|
|
url: img.src,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-17 15:03:10 -04:00
|
|
|
/**
|
|
|
|
* @typedef Participant
|
|
|
|
* @type object
|
2021-03-26 02:27:21 -04:00
|
|
|
* @property {string} id - The member ID for the participant
|
|
|
|
* @property {PathImage} avatar - The path and blob URL of the participant's avatar
|
|
|
|
* @property {string} name - The contact list name of the participant
|
2020-08-17 15:03:10 -04:00
|
|
|
*/
|
|
|
|
|
2021-02-25 22:21:11 -05:00
|
|
|
getParticipantListItemName(element) {
|
|
|
|
return element.querySelector(".mdRGT13Ttl").innerText
|
|
|
|
}
|
|
|
|
|
2021-03-26 02:27:21 -04:00
|
|
|
getParticipantListItemAvatar(element) {
|
|
|
|
return this._getPathImage(element.querySelector(".mdRGT13Img img[src]"))
|
2021-03-23 02:37:30 -04:00
|
|
|
}
|
|
|
|
|
2021-02-25 22:21:11 -05:00
|
|
|
getParticipantListItemId(element) {
|
|
|
|
// TODO Cache own ID
|
|
|
|
return element.getAttribute("data-mid")
|
|
|
|
}
|
|
|
|
|
2020-08-17 15:03:10 -04:00
|
|
|
/**
|
2021-02-16 02:49:54 -05:00
|
|
|
* Parse a group participants list.
|
|
|
|
* TODO Find what works for a *room* participants list...!
|
2020-08-17 15:03:10 -04:00
|
|
|
*
|
|
|
|
* @param {Element} element - The participant list element.
|
|
|
|
* @return {[Participant]} - The list of participants.
|
|
|
|
*/
|
|
|
|
parseParticipantList(element) {
|
2021-02-25 22:21:11 -05:00
|
|
|
// TODO Might need to explicitly exclude own user if double-puppeting is enabled.
|
|
|
|
// TODO The first member is always yourself, right?
|
|
|
|
const ownParticipant = {
|
|
|
|
// TODO Find way to make this work with multiple mxids using the bridge.
|
|
|
|
// One idea is to add real ID as suffix if we're in a group, and
|
|
|
|
// put in the puppet DB table somehow.
|
|
|
|
id: this.ownID,
|
2021-03-26 02:27:21 -04:00
|
|
|
avatar: this.getParticipantListItemAvatar(element.children[0]),
|
2021-02-25 22:21:11 -05:00
|
|
|
name: this.getParticipantListItemName(element.children[0]),
|
|
|
|
}
|
|
|
|
|
|
|
|
return [ownParticipant].concat(Array.from(element.children).slice(1).map(child => {
|
|
|
|
const name = this.getParticipantListItemName(child)
|
|
|
|
const id = this.getParticipantListItemId(child) || this.getUserIdFromFriendsList(name)
|
2021-02-16 02:49:54 -05:00
|
|
|
return {
|
2021-02-25 22:21:11 -05:00
|
|
|
id: id, // NOTE Don't want non-own user's ID to ever be null.
|
2021-03-26 02:27:21 -04:00
|
|
|
avatar: this.getParticipantListItemAvatar(child),
|
2021-02-25 22:21:11 -05:00
|
|
|
name: name,
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
2021-02-25 22:21:11 -05:00
|
|
|
}))
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef ChatListInfo
|
|
|
|
* @type object
|
2021-03-26 02:27:21 -04:00
|
|
|
* @property {number} id - The ID of the chat.
|
|
|
|
* @property {string} name - The name of the chat.
|
|
|
|
* @property {PathImage} icon - The path and blob URL of the chat icon.
|
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
|
|
|
*/
|
|
|
|
|
2021-02-16 02:49:54 -05:00
|
|
|
getChatListItemId(element) {
|
|
|
|
return element.getAttribute("data-chatid")
|
|
|
|
}
|
|
|
|
|
|
|
|
getChatListItemName(element) {
|
|
|
|
return element.querySelector(".mdCMN04Ttl").innerText
|
|
|
|
}
|
|
|
|
|
2021-03-26 02:27:21 -04:00
|
|
|
getChatListItemIcon(element) {
|
|
|
|
return this._getPathImage(element.querySelector(".mdCMN04Img > :not(.mdCMN04ImgInner) > img[src]"))
|
2021-03-23 02:37:30 -04:00
|
|
|
}
|
|
|
|
|
2021-02-16 02:49:54 -05:00
|
|
|
getChatListItemLastMsg(element) {
|
|
|
|
return element.querySelector(".mdCMN04Desc").innerText
|
|
|
|
}
|
|
|
|
|
|
|
|
getChatListItemLastMsgDate(element) {
|
|
|
|
return element.querySelector("time").innerText
|
|
|
|
}
|
|
|
|
|
2020-08-17 15:03:10 -04:00
|
|
|
/**
|
2021-02-16 02:49:54 -05:00
|
|
|
* Parse a conversation list item element.
|
2020-08-17 15:03:10 -04:00
|
|
|
*
|
|
|
|
* @param {Element} element - The element to parse.
|
2021-04-06 01:56:46 -04:00
|
|
|
* @param {?string} knownId - The ID of this element, if it is known.
|
|
|
|
* @return {ChatListInfo} - The info in the element.
|
2020-08-17 15:03:10 -04:00
|
|
|
*/
|
2021-02-21 02:07:48 -05:00
|
|
|
parseChatListItem(element, knownId) {
|
2021-02-25 23:59:25 -05:00
|
|
|
return !element.classList.contains("chatList") ? null : {
|
2021-02-21 02:07:48 -05:00
|
|
|
id: knownId || this.getChatListItemId(element),
|
2021-02-16 02:49:54 -05:00
|
|
|
name: this.getChatListItemName(element),
|
2021-03-26 02:27:21 -04:00
|
|
|
icon: this.getChatListItemIcon(element),
|
2021-02-16 02:49:54 -05:00
|
|
|
lastMsg: this.getChatListItemLastMsg(element),
|
|
|
|
lastMsgDate: this.getChatListItemLastMsgDate(element),
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-02-21 02:07:48 -05:00
|
|
|
* Parse the list of recent/saved chats.
|
2020-08-17 15:03:10 -04:00
|
|
|
* @return {[ChatListInfo]} - The list of chats.
|
|
|
|
*/
|
2021-02-21 02:07:48 -05:00
|
|
|
parseChatList() {
|
|
|
|
const chatList = document.querySelector("#_chat_list_body")
|
|
|
|
return Array.from(chatList.children).map(
|
2021-02-16 02:49:54 -05:00
|
|
|
child => this.parseChatListItem(child.firstElementChild))
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-02-25 23:59:25 -05:00
|
|
|
* TODO
|
2020-08-17 15:03:10 -04:00
|
|
|
* 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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-03-26 02:27:21 -04:00
|
|
|
* Download an image at a given URL and return it as a data URL.
|
2020-08-17 15:03:10 -04:00
|
|
|
*
|
2021-03-26 02:27:21 -04:00
|
|
|
* @param {string} url - The URL of the image to download.
|
2020-08-17 15:03:10 -04:00
|
|
|
* @return {Promise<string>} - The data URL (containing the mime type and base64 data)
|
|
|
|
*/
|
2021-03-26 02:27:21 -04:00
|
|
|
async readImage(url) {
|
|
|
|
const resp = await fetch(url)
|
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) {
|
2021-02-25 23:59:25 -05:00
|
|
|
// TODO Observe *added/removed* chats, not just new messages
|
2020-08-17 15:03:10 -04:00
|
|
|
const changedChatIDs = new Set()
|
|
|
|
for (const change of mutations) {
|
|
|
|
console.debug("Chat list mutation:", change)
|
2021-02-25 23:59:25 -05:00
|
|
|
if (change.target.id == "_chat_list_body") {
|
|
|
|
// TODO
|
|
|
|
// These could be new chats, or they're
|
|
|
|
// existing ones that just moved around.
|
|
|
|
/*
|
|
|
|
for (const node of change.addedNodes) {
|
|
|
|
}
|
|
|
|
*/
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
2021-02-25 23:59:25 -05:00
|
|
|
else if (change.target.tagName == "LI")
|
|
|
|
{
|
|
|
|
for (const node of change.addedNodes) {
|
|
|
|
const chat = this.parseChatListItem(node)
|
|
|
|
if (chat) {
|
|
|
|
console.debug("Changed chat list item:", chat)
|
|
|
|
changedChatIDs.add(chat.id)
|
|
|
|
} else {
|
|
|
|
console.debug("Could not parse node as a chat list item:", node)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// change.removedNodes tells you which chats that had notifications are now read.
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-02-25 23:59:25 -05:00
|
|
|
* Add a mutation observer to the chat list.
|
2020-08-17 15:03:10 -04:00
|
|
|
*/
|
2021-02-25 23:59:25 -05:00
|
|
|
addChatListObserver() {
|
2020-08-17 15:03:10 -04:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
})
|
2021-02-25 23:59:25 -05:00
|
|
|
this.chatListObserver.observe(
|
|
|
|
document.querySelector("#_chat_list_body"),
|
|
|
|
{ childList: true, subtree: true })
|
2020-08-17 15:03:10 -04:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-10 02:34:19 -05:00
|
|
|
addQRChangeObserver(element) {
|
|
|
|
if (this.qrChangeObserver !== null) {
|
|
|
|
this.removeQRChangeObserver()
|
|
|
|
}
|
|
|
|
this.qrChangeObserver = new MutationObserver(changes => {
|
|
|
|
for (const change of changes) {
|
|
|
|
if (change.attributeName === "title" && change.target instanceof Element) {
|
|
|
|
window.__mautrixReceiveQR(change.target.getAttribute("title"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
this.qrChangeObserver.observe(element, {
|
|
|
|
attributes: true,
|
|
|
|
attributeFilter: ["title"],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
removeQRChangeObserver() {
|
|
|
|
if (this.qrChangeObserver !== null) {
|
|
|
|
this.qrChangeObserver.disconnect()
|
|
|
|
this.qrChangeObserver = null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
addQRAppearObserver(element) {
|
|
|
|
if (this.qrAppearObserver !== null) {
|
|
|
|
this.removeQRAppearObserver()
|
|
|
|
}
|
|
|
|
this.qrAppearObserver = new MutationObserver(changes => {
|
|
|
|
for (const change of changes) {
|
|
|
|
for (const node of change.addedNodes) {
|
|
|
|
const qrElement = node.querySelector("#login_qrcode_area div[title]")
|
|
|
|
if (qrElement) {
|
|
|
|
window.__mautrixReceiveQR(qrElement.title)
|
|
|
|
window.__mautrixController.addQRChangeObserver(element)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
this.qrAppearObserver.observe(element, {
|
|
|
|
childList: true,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
removeQRAppearObserver() {
|
|
|
|
if (this.qrAppearObserver !== null) {
|
|
|
|
this.qrAppearObserver.disconnect()
|
|
|
|
this.qrAppearObserver = null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-16 02:49:54 -05:00
|
|
|
addEmailAppearObserver(element) {
|
2021-02-10 02:34:19 -05:00
|
|
|
if (this.emailAppearObserver !== null) {
|
|
|
|
this.removeEmailAppearObserver()
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
2021-02-10 02:34:19 -05:00
|
|
|
this.emailAppearObserver = new MutationObserver(changes => {
|
2020-08-17 15:03:10 -04:00
|
|
|
for (const change of changes) {
|
2021-02-10 02:34:19 -05:00
|
|
|
for (const node of change.addedNodes) {
|
2021-02-11 00:04:25 -05:00
|
|
|
const emailArea = node.querySelector("#login_email_area")
|
2021-02-20 03:48:08 -05:00
|
|
|
if (emailArea && !emailArea.classList.contains("MdNonDisp")) {
|
2021-02-10 02:34:19 -05:00
|
|
|
window.__mautrixSendEmailCredentials()
|
|
|
|
return
|
|
|
|
}
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2021-02-10 02:34:19 -05:00
|
|
|
this.emailAppearObserver.observe(element, {
|
|
|
|
childList: true,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
removeEmailAppearObserver() {
|
|
|
|
if (this.emailAppearObserver !== null) {
|
|
|
|
this.emailAppearObserver.disconnect()
|
|
|
|
this.emailAppearObserver = null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-16 02:49:54 -05:00
|
|
|
addPINAppearObserver(element) {
|
2021-02-10 02:34:19 -05:00
|
|
|
if (this.pinAppearObserver !== null) {
|
|
|
|
this.removePINAppearObserver()
|
|
|
|
}
|
|
|
|
this.pinAppearObserver = new MutationObserver(changes => {
|
|
|
|
for (const change of changes) {
|
|
|
|
for (const node of change.addedNodes) {
|
|
|
|
const pinElement = node.querySelector("div.mdCMN01Code")
|
|
|
|
if (pinElement) {
|
|
|
|
window.__mautrixReceivePIN(pinElement.innerText)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
this.pinAppearObserver.observe(element, {
|
|
|
|
childList: true,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
removePINAppearObserver() {
|
|
|
|
if (this.pinAppearObserver !== null) {
|
|
|
|
this.pinAppearObserver.disconnect()
|
|
|
|
this.pinAppearObserver = null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
addExpiryObserver(element) {
|
|
|
|
if (this.expiryObserver !== null) {
|
|
|
|
this.removeExpiryObserver()
|
|
|
|
}
|
|
|
|
const button = element.querySelector("dialog button")
|
|
|
|
this.expiryObserver = new MutationObserver(changes => {
|
2021-02-20 03:48:08 -05:00
|
|
|
if (changes.length == 1 && !changes[0].target.classList.contains("MdNonDisp")) {
|
2021-02-10 02:34:19 -05:00
|
|
|
window.__mautrixExpiry(button)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
this.expiryObserver.observe(element, {
|
2020-08-17 15:03:10 -04:00
|
|
|
attributes: true,
|
2021-02-10 02:34:19 -05:00
|
|
|
attributeFilter: ["class"],
|
2020-08-17 15:03:10 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-02-10 02:34:19 -05:00
|
|
|
removeExpiryObserver() {
|
|
|
|
if (this.expiryObserver !== null) {
|
|
|
|
this.expiryObserver.disconnect()
|
|
|
|
this.expiryObserver = null
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window.__mautrixController = new MautrixController()
|