// 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 . import MessagesPuppeteer from "./puppet.js" import { emitLines, promisify } from "./util.js" export default class Client { /** * @param {PuppetAPI} manager * @param {import("net").Socket} socket * @param {number} connID * @param {?string} [userID] * @param {?MessagesPuppeteer} [puppet] */ constructor(manager, socket, connID, userID = null, puppet = null) { this.manager = manager this.socket = socket this.connID = connID this.userID = userID this.puppet = puppet this.stopped = false this.notificationID = 0 this.maxCommandID = 0 } log(...text) { if (this.userID) { console.log(`[API/${this.userID}/${this.connID}]`, ...text) } else { console.log(`[API/${this.connID}]`, ...text) } } start() { this.log("Received connection", this.connID) emitLines(this.socket) this.socket.on("line", line => this.handleLine(line) .catch(err => this.log("Error handling line:", err))) this.socket.on("end", this.handleEnd) setTimeout(() => { if (!this.userID && !this.stopped) { this.log("Didn't receive register request within 3 seconds, terminating") this.stop() } }, 3000) } stop() { if (this.stopped) { return } this.stopped = true return promisify(cb => this.socket.end(cb)) } handleEnd = () => { this.stopped = true if (this.userID && this.manager.clients.get(this.userID) === this) { this.manager.clients.delete(this.userID) } this.log(`Connection closed (user: ${this.userID})`) } /** * Write JSON data to the socket. * * @param {object} data - The data to write. * @return {Promise} */ _write(data) { return promisify(cb => this.socket.write(JSON.stringify(data) + "\n", cb)) } sendMessage(message) { return this._write({ id: --this.notificationID, command: "message", message, }) } sendQRCode(url) { return this._write({ id: --this.notificationID, command: "qr", url, }) } handleStart = async (req) => { if (this.puppet !== null) { return { started: false, is_logged_in: await this.puppet.isLoggedIn() } } this.log("Opening new puppeteer for", this.userID) this.puppet = new MessagesPuppeteer(this.userID, `./profiles/${this.userID}`, this) this.manager.puppets.set(this.userID, this.puppet) await this.puppet.start(!!req.debug) return { started: true, is_logged_in: await this.puppet.isLoggedIn() } } handleStop = async () => { if (this.puppet === null) { return { stopped: false } } this.log("Closing puppeteer for", this.userID) this.manager.puppets.delete(this.userID) await this.puppet.stop() this.puppet = null return { stopped: true } } handleUnknownCommand = () => { throw new Error("Unknown command") } handleRegister = async (req) => { this.userID = req.user_id this.log("Registered socket", this.connID, "->", this.userID) if (this.manager.clients.has(this.userID)) { const oldClient = this.manager.clients.get(this.userID) this.manager.clients.set(this.userID, this) this.log("Terminating previous socket", oldClient.connID, "for", this.userID) await oldClient.stop() } else { this.manager.clients.set(this.userID, this) } this.puppet = this.manager.puppets.get(this.userID) || null if (this.puppet) { this.puppet.client = this } return { client_exists: this.puppet !== null } } async handleLine(line) { if (this.stopped) { this.log("Ignoring line, client is stopped") return } const req = JSON.parse(line) if (!req.command || !req.id) { console.log("Invalid request, terminating", this.connID) await this.stop() return } if (req.id <= this.maxCommandID) { this.log("Ignoring old request", req.id) return } this.log("Received request", req.id, "with command", req.command) this.maxCommandID = req.id let handler if (!this.userID) { if (req.command !== "register") { this.log("First request wasn't a register request, terminating") await this.stop() return } else if (!req.user_id) { this.log("Register request didn't contain user ID, terminating") await this.stop() return } handler = this.handleRegister } else { handler = { start: this.handleStart, stop: this.handleStop, login: () => this.puppet.waitForLogin(), send: req => this.puppet.sendMessage(req.chat_id, req.text), get_chats: () => this.puppet.getRecentChats(), get_chat: req => this.puppet.getChatInfo(req.chat_id), get_messages: req => this.puppet.getMessages(req.chat_id), }[req.command] || this.handleUnknownCommand } const resp = { id: req.id } try { resp.command = "response" resp.response = await handler(req) } catch (err) { resp.command = "error" resp.error = err.toString() this.log("Error handling request", req.id, err) } await this._write(resp) } }