2018-03-06 04:51:42 +00:00
|
|
|
import fetch from 'node-fetch'
|
2018-02-18 20:03:37 +00:00
|
|
|
|
2018-03-06 05:21:28 +00:00
|
|
|
export async function waitForMastodonUiToStart () {
|
2018-02-18 20:03:37 +00:00
|
|
|
while (true) {
|
|
|
|
try {
|
2019-08-03 20:49:37 +00:00
|
|
|
const html = await ((await fetch('http://127.0.0.1:3035/packs/common.js')).text())
|
2018-03-06 05:21:28 +00:00
|
|
|
if (html) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
console.log('Waiting for Mastodon UI to start up...')
|
2018-04-11 03:15:04 +00:00
|
|
|
await new Promise(resolve => setTimeout(resolve, 5000))
|
2018-03-06 05:21:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
console.log('Mastodon UI started up')
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function waitForMastodonApiToStart () {
|
|
|
|
while (true) {
|
|
|
|
try {
|
2019-08-03 20:49:37 +00:00
|
|
|
const json = await ((await fetch('http://127.0.0.1:3000/api/v1/instance')).json())
|
2018-03-06 05:21:28 +00:00
|
|
|
if (json.uri) {
|
2018-02-18 20:03:37 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
} catch (err) {
|
2018-03-06 05:21:28 +00:00
|
|
|
console.log('Waiting for Mastodon API to start up...')
|
2018-04-11 03:15:04 +00:00
|
|
|
await new Promise(resolve => setTimeout(resolve, 5000))
|
2018-02-18 20:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
2018-03-06 05:21:28 +00:00
|
|
|
console.log('Mastodon API started up')
|
2018-02-18 20:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (require.main === module) {
|
2018-03-06 17:21:17 +00:00
|
|
|
Promise.resolve()
|
|
|
|
.then(waitForMastodonApiToStart)
|
|
|
|
.then(waitForMastodonUiToStart).catch(err => {
|
2018-03-07 07:57:06 +00:00
|
|
|
console.error(err)
|
|
|
|
process.exit(1)
|
|
|
|
})
|
2018-02-18 23:30:42 +00:00
|
|
|
}
|