2018-02-18 19:42:27 +01:00
|
|
|
const pify = require('pify')
|
2018-02-18 20:53:50 +01:00
|
|
|
const exec = require('child-process-promise').exec
|
|
|
|
const spawn = require('child-process-promise').spawn
|
2018-02-18 19:42:27 +01:00
|
|
|
const dir = __dirname
|
|
|
|
const path = require('path')
|
|
|
|
const fs = require('fs')
|
2018-02-18 20:53:50 +01:00
|
|
|
const stat = pify(fs.stat.bind(fs))
|
2018-02-18 19:42:27 +01:00
|
|
|
const writeFile = pify(fs.writeFile.bind(fs))
|
2018-02-18 20:53:50 +01:00
|
|
|
const mkdirp = pify(require('mkdirp'))
|
2018-02-18 21:03:37 +01:00
|
|
|
const waitForMastodonToStart = require('./wait-for-mastodon-to-start')
|
2018-02-18 19:42:27 +01:00
|
|
|
|
|
|
|
const envFile = `
|
|
|
|
PAPERCLIP_SECRET=foo
|
|
|
|
SECRET_KEY_BASE=bar
|
|
|
|
OTP_SECRET=foobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobar
|
|
|
|
`
|
|
|
|
|
2018-02-18 20:53:50 +01:00
|
|
|
const mastodonDir = path.join(dir, '../mastodon')
|
|
|
|
|
|
|
|
let childProc
|
|
|
|
|
2018-02-19 00:30:42 +01:00
|
|
|
async function cloneMastodon () {
|
2018-02-18 20:53:50 +01:00
|
|
|
try {
|
|
|
|
await stat(mastodonDir)
|
|
|
|
} catch (e) {
|
|
|
|
console.log('Cloning mastodon...')
|
2018-02-18 19:42:27 +01:00
|
|
|
await exec(`git clone https://github.com/tootsuite/mastodon "${mastodonDir}"`)
|
|
|
|
await exec(`git checkout v2.2.0`, {cwd: mastodonDir})
|
|
|
|
await writeFile(path.join(dir, '../mastodon/.env'), envFile, 'utf8')
|
|
|
|
}
|
2018-02-18 20:53:50 +01:00
|
|
|
}
|
|
|
|
|
2018-02-19 00:30:42 +01:00
|
|
|
async function restoreMastodonData () {
|
2018-02-18 20:53:50 +01:00
|
|
|
console.log('Restoring mastodon data...')
|
|
|
|
try {
|
|
|
|
await exec('dropdb mastodon_development', {cwd: mastodonDir})
|
|
|
|
} catch (e) { /* ignore */ }
|
|
|
|
await exec('createdb mastodon_development', {cwd: mastodonDir})
|
|
|
|
|
|
|
|
let dumpFile = path.join(dir, '../fixtures/dump.sql')
|
|
|
|
await exec(`pg_restore -Fc -d mastodon_development "${dumpFile}"`, {cwd: mastodonDir})
|
|
|
|
|
|
|
|
let tgzFile = path.join(dir, '../fixtures/system.tgz')
|
|
|
|
let systemDir = path.join(mastodonDir, 'public/system')
|
|
|
|
await mkdirp(systemDir)
|
|
|
|
await exec(`tar -xzf "${tgzFile}"`, {cwd: systemDir})
|
|
|
|
}
|
|
|
|
|
2018-02-19 00:30:42 +01:00
|
|
|
async function runMastodon () {
|
2018-02-18 20:53:50 +01:00
|
|
|
console.log('Running mastodon...')
|
|
|
|
let cmds = [
|
|
|
|
'gem install bundler',
|
|
|
|
'gem install foreman',
|
|
|
|
'bundle install',
|
|
|
|
'yarn --pure-lockfile'
|
|
|
|
]
|
|
|
|
|
|
|
|
for (let cmd of cmds) {
|
|
|
|
console.log(cmd)
|
|
|
|
await exec(cmd, {cwd: mastodonDir})
|
|
|
|
}
|
|
|
|
const promise = spawn('foreman', ['start'], {cwd: mastodonDir})
|
2018-02-24 23:49:28 +01:00
|
|
|
const log = fs.createWriteStream('mastodon.log', {flags: 'a'})
|
2018-02-18 20:53:50 +01:00
|
|
|
childProc = promise.childProcess
|
2018-02-24 23:49:28 +01:00
|
|
|
childProc.stdout.pipe(log)
|
|
|
|
childProc.stderr.pipe(log)
|
2018-02-18 19:42:27 +01:00
|
|
|
|
2018-02-18 21:03:37 +01:00
|
|
|
await waitForMastodonToStart()
|
2018-02-18 19:42:27 +01:00
|
|
|
}
|
|
|
|
|
2018-02-19 00:30:42 +01:00
|
|
|
async function main () {
|
2018-02-18 20:53:50 +01:00
|
|
|
await cloneMastodon()
|
|
|
|
await restoreMastodonData()
|
|
|
|
await runMastodon()
|
|
|
|
}
|
|
|
|
|
|
|
|
process.on('SIGINT', function () {
|
|
|
|
if (childProc) {
|
|
|
|
console.log('killing child process')
|
|
|
|
childProc.kill()
|
|
|
|
}
|
|
|
|
process.exit(0)
|
|
|
|
})
|
|
|
|
|
2018-02-18 19:42:27 +01:00
|
|
|
main().catch(err => {
|
|
|
|
console.error(err)
|
|
|
|
process.exit(1)
|
|
|
|
})
|