71 lines
2.5 KiB
TypeScript
71 lines
2.5 KiB
TypeScript
import process from 'node:process';
|
|
import { Config, ConfigProvider, Console, Effect, Logger, Layer, LogLevel } from 'effect';
|
|
import { BunContext, BunRuntime } from '@effect/platform-bun';
|
|
import { teardown } from './_shared';
|
|
import path from 'node:path';
|
|
import os from 'node:os';
|
|
import { mkdir } from 'node:fs/promises';
|
|
import { $ } from 'bun';
|
|
import { collectExpectedRunCompanionAssetRelativePaths } from '../src/services/run-companion-modules';
|
|
|
|
/**
|
|
* Usage: `COMPOSIO_INSTALL_DIR=<INSTALL_DIR> bun scripts/build-binary.ts <BINARY_PATH>`
|
|
*/
|
|
export function installBinary() {
|
|
return Effect.gen(function* () {
|
|
const binaryPath = process.argv[2];
|
|
|
|
if (!binaryPath) {
|
|
return yield* Effect.logError('Missing <BINARY_PATH> argument');
|
|
}
|
|
|
|
const defaultInstallDir = path.join(os.homedir(), '.composio');
|
|
const installDir = yield* Config.string('COMPOSIO_INSTALL_DIR').pipe(
|
|
Config.withDefault(defaultInstallDir)
|
|
);
|
|
|
|
yield* Effect.logDebug(`Installing binary in ${installDir}`);
|
|
|
|
yield* Effect.tryPromise(() => mkdir(installDir, { recursive: true }));
|
|
yield* Effect.tryPromise(() => $`cp ${binaryPath} ${installDir}/composio`.quiet());
|
|
|
|
const sourceDirectory = path.dirname(path.resolve(binaryPath));
|
|
const companionRelativePaths = collectExpectedRunCompanionAssetRelativePaths(sourceDirectory);
|
|
|
|
for (const relativePath of companionRelativePaths) {
|
|
const sourcePath = path.join(sourceDirectory, relativePath);
|
|
const targetPath = path.join(installDir, relativePath);
|
|
yield* Effect.tryPromise(async () => {
|
|
if (!(await Bun.file(sourcePath).exists())) {
|
|
throw new Error(`Missing companion module: ${sourcePath}`);
|
|
}
|
|
await $`mkdir -p ${path.dirname(targetPath)}`.quiet();
|
|
await $`cp ${sourcePath} ${targetPath}`.quiet();
|
|
});
|
|
}
|
|
|
|
yield* Console.log('Binary successfully installed in', installDir);
|
|
});
|
|
}
|
|
|
|
const ConfigLive = Effect.gen(function* () {
|
|
const logLevel = yield* Config.logLevel('COMPOSIO_LOG_LEVEL').pipe(
|
|
Config.withDefault(LogLevel.Info)
|
|
);
|
|
|
|
return Logger.minimumLogLevel(logLevel);
|
|
}).pipe(Layer.unwrapEffect, Layer.merge(Layer.setConfigProvider(ConfigProvider.fromEnv())));
|
|
|
|
if (require.main === module) {
|
|
installBinary().pipe(
|
|
Effect.provide(ConfigLive),
|
|
Effect.provide(Logger.pretty),
|
|
Effect.provide(BunContext.layer),
|
|
Effect.scoped,
|
|
Effect.map(() => ({ message: 'Process completed successfully.' })),
|
|
BunRuntime.runMain({
|
|
teardown,
|
|
})
|
|
);
|
|
}
|