89 lines
2.3 KiB
JavaScript
89 lines
2.3 KiB
JavaScript
#!/usr/bin/env zx
|
|
// @ts-check
|
|
|
|
const {
|
|
cd,
|
|
$,
|
|
os,
|
|
fs,
|
|
path,
|
|
fetch,
|
|
nothrow,
|
|
sleep,
|
|
argv: av,
|
|
} = require('zx-cjs')
|
|
const { homedir } = os
|
|
const { repository } = require('../package.json')
|
|
|
|
const argv = process.argv.slice(2)
|
|
const scpPath = av['scp_path']
|
|
function getOsBuildAssetName() {
|
|
return `release-linux.zip`
|
|
}
|
|
|
|
async function main() {
|
|
cd(path.resolve(homedir(), 'mx'))
|
|
if (!scpPath) {
|
|
const releases = await fetch(
|
|
`https://api.github.com/repos/${repository.directory}/releases`,
|
|
).then((res) => res.json())
|
|
const [latest] = releases
|
|
const tagName = latest.tag_name
|
|
|
|
const res = await fetch(
|
|
`https://api.github.com/repos/${repository.directory}/releases/tags/${tagName}`,
|
|
)
|
|
const data = await res.json()
|
|
const downloadUrl = data.assets.find((asset) =>
|
|
[getOsBuildAssetName(), 'release.zip'].includes(asset.name),
|
|
)?.browser_download_url
|
|
|
|
if (!downloadUrl) {
|
|
throw new Error('no download url found')
|
|
}
|
|
|
|
const buffer = await fetch(
|
|
`https://mirror.ghproxy.com/${downloadUrl}`,
|
|
).then((res) => res.buffer())
|
|
const tmpName = (Math.random() * 10).toString(16)
|
|
fs.writeFileSync(`/tmp/${tmpName}.zip`, buffer, { flag: 'w' })
|
|
|
|
await $`mv ./run ./run.bak`
|
|
|
|
await $`unzip /tmp/${tmpName}.zip -d ./run`
|
|
await $`rm /tmp/${tmpName}.zip`
|
|
} else {
|
|
await $`mv ./run ./run.bak`
|
|
|
|
await $`unzip ${scpPath} -d ./run`
|
|
await $`rm ${scpPath}`
|
|
}
|
|
|
|
await $`rm ./run/ecosystem.config.js`
|
|
await $`cp ./run.bak/ecosystem.config.js ./run/ecosystem.config.js`
|
|
|
|
cd('./run')
|
|
|
|
await nothrow($`pm2 reload ecosystem.config.js -- ${argv}`)
|
|
console.log('等待 8 秒')
|
|
await sleep(8000)
|
|
try {
|
|
await $`curl -f -m 3 localhost:2333/api/v2 -H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36'`
|
|
await $`pm2 save`
|
|
cd(path.resolve(homedir(), 'mx'))
|
|
await $`rm -rf ./run.bak`
|
|
} catch {
|
|
await $`pm2 stop ecosystem.config.js`
|
|
// throw new Error('server is not running')
|
|
console.error('server start error, now rollback...')
|
|
cd(path.resolve(homedir(), 'mx'))
|
|
await $`rm -rf ./run`
|
|
await $`mv ./run.bak ./run`
|
|
cd('./run')
|
|
await $`pm2 delete ecosystem.config.js`
|
|
await $`pm2 start ecosystem.config.js`
|
|
}
|
|
}
|
|
|
|
main()
|