-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
118 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import fs from 'node:fs/promises'; | ||
import { join } from 'node:path'; | ||
import { execa } from 'execa'; | ||
import { inject, injectable } from 'inversify'; | ||
import { InstallToolBaseService } from '../install-tool/install-tool-base.service'; | ||
import { | ||
CompressionService, | ||
EnvService, | ||
HttpService, | ||
PathService, | ||
} from '../services'; | ||
|
||
@injectable() | ||
export class InstallBunService extends InstallToolBaseService { | ||
readonly name = 'bun'; | ||
|
||
private get ghArch(): string { | ||
switch (this.envSvc.arch) { | ||
case 'arm64': | ||
return 'aarch64'; | ||
case 'amd64': | ||
return 'x64'; | ||
} | ||
} | ||
|
||
constructor( | ||
@inject(EnvService) envSvc: EnvService, | ||
@inject(PathService) pathSvc: PathService, | ||
@inject(HttpService) private http: HttpService, | ||
@inject(CompressionService) private compress: CompressionService, | ||
) { | ||
super(pathSvc, envSvc); | ||
} | ||
|
||
override async install(version: string): Promise<void> { | ||
const baseUrl = `https://github.com/oven-sh/bun/releases/download/bun-v${version}/`; | ||
const filename = `bun-linux-${this.ghArch}.zip`; | ||
|
||
const checksumFile = await this.http.download({ | ||
url: `${baseUrl}SHASUMS256.txt`, | ||
}); | ||
const expectedChecksum = (await fs.readFile(checksumFile, 'utf-8')) | ||
.split('\n') | ||
.find((l) => l.includes(filename)) | ||
?.split(' ')[0]; | ||
|
||
const file = await this.http.download({ | ||
url: `${baseUrl}${filename}`, | ||
checksumType: 'sha256', | ||
expectedChecksum, | ||
}); | ||
|
||
// TODO: create recursive | ||
if (!(await this.pathSvc.findToolPath(this.name))) { | ||
await this.pathSvc.createToolPath(this.name); | ||
} | ||
|
||
const path = join( | ||
await this.pathSvc.createVersionedToolPath(this.name, version), | ||
'bin', | ||
); | ||
await fs.mkdir(path); | ||
await this.compress.extract({ | ||
file, | ||
cwd: path, | ||
strip: 1, | ||
}); | ||
} | ||
|
||
override async link(version: string): Promise<void> { | ||
const src = join(this.pathSvc.versionedToolPath(this.name, version), 'bin'); | ||
|
||
await this.shellwrapper({ srcDir: src }); | ||
} | ||
|
||
override async test(_version: string): Promise<void> { | ||
await execa(this.name, ['--version'], { stdio: ['inherit', 'inherit', 1] }); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
export const NoPrepareTools = [ | ||
'bower', | ||
'bun', | ||
'bundler', | ||
'cocoapods', | ||
'corepack', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters