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/>.
|
2020-08-18 09:47:06 -04:00
|
|
|
import process from "process"
|
2020-08-24 09:45:44 -04:00
|
|
|
import fs from "fs"
|
2020-08-17 15:03:10 -04:00
|
|
|
|
2020-08-24 11:26:07 -04:00
|
|
|
import arg from "arg"
|
|
|
|
|
2020-08-18 09:47:06 -04:00
|
|
|
import PuppetAPI from "./api.js"
|
2020-08-24 09:45:44 -04:00
|
|
|
import MessagesPuppeteer from "./puppet.js"
|
2020-08-17 15:03:10 -04:00
|
|
|
|
2020-08-24 11:26:07 -04:00
|
|
|
const args = arg({
|
|
|
|
"--config": String,
|
|
|
|
"--browser": String,
|
2020-08-24 11:53:56 -04:00
|
|
|
"--no-sandbox": Boolean,
|
2020-08-24 11:26:07 -04:00
|
|
|
"-c": "--config",
|
|
|
|
"-b": "--browser",
|
|
|
|
})
|
|
|
|
|
|
|
|
const configPath = args["--config"] || "config.json"
|
|
|
|
MessagesPuppeteer.executablePath = args["--browser"] || MessagesPuppeteer.executablePath
|
2020-08-24 11:53:56 -04:00
|
|
|
MessagesPuppeteer.noSandbox = args["--no-sandbox"]
|
2020-08-24 11:26:07 -04:00
|
|
|
|
2020-08-24 15:24:19 -04:00
|
|
|
console.log("[Main] Reading config from", configPath)
|
2020-08-24 11:26:07 -04:00
|
|
|
const config = JSON.parse(fs.readFileSync(configPath).toString())
|
|
|
|
MessagesPuppeteer.profileDir = config.profile_dir || MessagesPuppeteer.profileDir
|
|
|
|
MessagesPuppeteer.disableDebug = !!config.disable_debug
|
2021-02-04 21:52:14 -05:00
|
|
|
MessagesPuppeteer.url = config.url
|
2021-02-10 02:34:19 -05:00
|
|
|
MessagesPuppeteer.extensionDir = config.extension_dir || MessagesPuppeteer.extensionDir
|
2020-08-24 09:45:44 -04:00
|
|
|
|
|
|
|
const api = new PuppetAPI(config.listen)
|
2020-08-17 15:03:10 -04:00
|
|
|
|
2020-08-18 09:47:06 -04:00
|
|
|
function stop() {
|
2020-08-24 15:24:19 -04:00
|
|
|
api.stop().then(() => {
|
|
|
|
console.log("[Main] Everything stopped")
|
|
|
|
process.exit(0)
|
|
|
|
}, err => {
|
2020-08-18 09:47:06 -04:00
|
|
|
console.error("[Main] Error stopping:", err)
|
|
|
|
process.exit(3)
|
|
|
|
})
|
2020-08-17 15:03:10 -04:00
|
|
|
}
|
|
|
|
|
2020-08-18 09:47:06 -04:00
|
|
|
api.start().then(() => {
|
|
|
|
process.once("SIGINT", stop)
|
|
|
|
process.once("SIGTERM", stop)
|
|
|
|
}, err => {
|
|
|
|
console.error("[Main] Error starting:", err)
|
|
|
|
process.exit(2)
|
|
|
|
})
|