2018-03-06 04:51:42 +00:00
|
|
|
import { restoreMastodonData } from './restore-mastodon-data'
|
|
|
|
import childProcessPromise from 'child-process-promise'
|
|
|
|
import fs from 'fs'
|
2018-03-06 17:21:17 +00:00
|
|
|
import { waitForMastodonUiToStart, waitForMastodonApiToStart } from './wait-for-mastodon-to-start'
|
2020-11-23 20:45:01 +00:00
|
|
|
import cloneMastodon from './clone-mastodon'
|
2021-03-06 17:06:42 +00:00
|
|
|
import installMastodon from './install-mastodon'
|
|
|
|
import { mastodonDir, env } from './mastodon-config'
|
2018-03-06 04:51:42 +00:00
|
|
|
|
|
|
|
const spawn = childProcessPromise.spawn
|
2018-02-18 19:53:50 +00:00
|
|
|
|
2018-03-07 05:32:56 +00:00
|
|
|
let childProc
|
2018-02-18 19:53:50 +00:00
|
|
|
|
2018-02-18 23:30:42 +00:00
|
|
|
async function runMastodon () {
|
2018-02-18 19:53:50 +00:00
|
|
|
console.log('Running mastodon...')
|
2019-08-03 20:49:37 +00:00
|
|
|
const cwd = mastodonDir
|
2018-08-30 04:42:57 +00:00
|
|
|
const promise = spawn('foreman', ['start'], { cwd, env })
|
2020-11-23 20:45:01 +00:00
|
|
|
// don't bother writing to mastodon.log in CI; we can't read the file anyway
|
|
|
|
const logFile = process.env.CIRCLECI ? '/dev/null' : 'mastodon.log'
|
2020-05-03 02:58:58 +00:00
|
|
|
const log = fs.createWriteStream(logFile, { flags: 'a' })
|
2018-03-07 05:32:56 +00:00
|
|
|
childProc = promise.childProcess
|
|
|
|
childProc.stdout.pipe(log)
|
|
|
|
childProc.stderr.pipe(log)
|
2018-04-11 02:43:36 +00:00
|
|
|
promise.catch(err => {
|
|
|
|
console.error('foreman start failed, see mastodon.log for details')
|
|
|
|
console.error(err)
|
|
|
|
shutdownMastodon()
|
|
|
|
process.exit(1)
|
|
|
|
})
|
2018-02-18 18:42:27 +00:00
|
|
|
}
|
|
|
|
|
2018-02-18 23:30:42 +00:00
|
|
|
async function main () {
|
2018-02-18 19:53:50 +00:00
|
|
|
await cloneMastodon()
|
2021-03-06 17:06:42 +00:00
|
|
|
await installMastodon()
|
2018-02-18 19:53:50 +00:00
|
|
|
await runMastodon()
|
2018-03-06 05:21:28 +00:00
|
|
|
await waitForMastodonApiToStart()
|
2018-03-06 17:04:09 +00:00
|
|
|
await restoreMastodonData()
|
2018-03-06 05:58:29 +00:00
|
|
|
await waitForMastodonUiToStart()
|
2018-02-18 19:53:50 +00:00
|
|
|
}
|
|
|
|
|
2018-03-07 07:57:06 +00:00
|
|
|
function shutdownMastodon () {
|
2018-03-07 05:32:56 +00:00
|
|
|
if (childProc) {
|
|
|
|
console.log('killing child process')
|
|
|
|
childProc.kill()
|
2018-02-18 19:53:50 +00:00
|
|
|
}
|
2018-03-06 17:03:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
process.on('SIGINT', function () {
|
|
|
|
shutdownMastodon()
|
2018-02-18 19:53:50 +00:00
|
|
|
process.exit(0)
|
|
|
|
})
|
|
|
|
|
2018-02-18 18:42:27 +00:00
|
|
|
main().catch(err => {
|
|
|
|
console.error(err)
|
2018-03-06 17:03:59 +00:00
|
|
|
shutdownMastodon()
|
2018-02-18 18:42:27 +00:00
|
|
|
process.exit(1)
|
|
|
|
})
|