mirror of
https://github.com/Eugeny/tabby
synced 2024-12-17 08:33:27 +00:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import * as fs from 'mz/fs'
|
|
import { Injectable } from '@angular/core'
|
|
import { HostAppService, Platform, LogService, Logger } from 'terminus-core'
|
|
|
|
import { ShellProvider, IShell } from '../api'
|
|
|
|
@Injectable()
|
|
export class LinuxDefaultShellProvider extends ShellProvider {
|
|
private logger: Logger
|
|
|
|
constructor (
|
|
private hostApp: HostAppService,
|
|
log: LogService,
|
|
) {
|
|
super()
|
|
this.logger = log.create('linuxDefaultShell')
|
|
}
|
|
|
|
async provide (): Promise<IShell[]> {
|
|
if (this.hostApp.platform !== Platform.Linux) {
|
|
return []
|
|
}
|
|
let line = (await fs.readFile('/etc/passwd', { encoding: 'utf-8' }))
|
|
.split('\n').find(x => x.startsWith(process.env.LOGNAME + ':'))
|
|
if (!line) {
|
|
this.logger.warn('Could not detect user shell')
|
|
return [{
|
|
id: 'default',
|
|
name: 'User default',
|
|
command: '/bin/sh'
|
|
}]
|
|
} else {
|
|
return [{
|
|
id: 'default',
|
|
name: 'User default',
|
|
command: line.split(':')[6],
|
|
args: ['--login'],
|
|
}]
|
|
}
|
|
}
|
|
}
|