semaphore/bin/wait-for-mastodon-to-start.js

42 lines
1.0 KiB
JavaScript
Raw Normal View History

2018-03-06 04:51:42 +00:00
import fetch from 'node-fetch'
import esMain from 'es-main'
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 21:49:37 +01: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...')
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 21:49:37 +01: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...')
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 (esMain(import.meta)) {
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
}