| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- export async function dockerCompose(cmd: string, ...args: string[]) {
- return await fetchJSON(`http://host-admin/docker/compose/${cmd}`, {
- method: 'POST',
- body: JSON.stringify({
- args,
- }),
- })
- }
- export async function mongoInit() {
- return await fetchJSON('http://host-admin/mongo/init', {
- method: 'POST',
- })
- }
- export async function resetData() {
- return await fetchJSON('http://host-admin/reset/data', {
- method: 'POST',
- })
- }
- export async function reconfigure({
- pro = false,
- version = 'latest',
- vars = {},
- withDataDir = false,
- }) {
- return await fetchJSON('http://host-admin/reconfigure', {
- method: 'POST',
- body: JSON.stringify({
- pro,
- version,
- vars,
- withDataDir,
- }),
- })
- }
- async function fetchJSON(
- input: RequestInfo,
- init?: RequestInit
- ): Promise<{ stdout: string; stderr: string }> {
- if (init?.body) {
- init.headers = { 'Content-Type': 'application/json' }
- }
- const res = await fetch(input, init)
- const { error, stdout, stderr } = await res.json()
- if (error) {
- console.error(input, init, 'failed:', error)
- if (stdout) console.log(stdout)
- if (stderr) console.warn(stderr)
- const err = new Error(error.message)
- Object.assign(err, error)
- throw err
- }
- return { stdout, stderr }
- }
- export async function runScript({
- cwd,
- script,
- args = [],
- }: {
- cwd: string
- script: string
- args?: string[]
- }) {
- return await fetchJSON('http://host-admin/run/script', {
- method: 'POST',
- body: JSON.stringify({
- cwd,
- script,
- args,
- }),
- })
- }
|