2024-07-01 12:25:28 +08:00
|
|
|
import vscode from 'vscode';
|
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
|
|
|
import os from 'os';
|
|
|
|
import QuickAccessTreeProvider from './views/quick-access-tree';
|
|
|
|
import SIHome from './home';
|
2024-06-27 01:20:37 +08:00
|
|
|
import * as utils from './utils';
|
|
|
|
|
2024-07-01 12:25:28 +08:00
|
|
|
const {NodeSSH} = require('node-ssh')
|
2024-06-27 01:20:37 +08:00
|
|
|
|
|
|
|
class SuperIDEExtension {
|
|
|
|
constructor() {
|
|
|
|
this.siHome = undefined;
|
|
|
|
this.context = undefined;
|
|
|
|
this.subscriptions = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
async activate(context) {
|
|
|
|
this.context = context;
|
2024-07-01 12:25:28 +08:00
|
|
|
this.siHome = new SIHome(context);
|
2024-06-27 01:20:37 +08:00
|
|
|
|
|
|
|
this.subscriptions.push(
|
|
|
|
vscode.window.registerTreeDataProvider(
|
|
|
|
'superide.quickAccess',
|
|
|
|
new QuickAccessTreeProvider()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
this.registerGlobalCommands();
|
|
|
|
|
|
|
|
this.startSuperIDEHome();
|
|
|
|
}
|
|
|
|
|
|
|
|
async startSuperIDEHome() {
|
|
|
|
vscode.commands.executeCommand('superide.showHome');
|
|
|
|
}
|
|
|
|
|
2024-07-01 12:25:28 +08:00
|
|
|
// TODO: finish firstConnect (automatically)
|
|
|
|
async connectRemoteContainer() {
|
|
|
|
const host = 'mengning.com.cn';
|
|
|
|
const username = 'linux';
|
|
|
|
const password = 'a7%Xs&&TXG';
|
|
|
|
const port = 31874;
|
|
|
|
|
|
|
|
console.log('Connecting to remote container...');
|
|
|
|
// detect if local ssh config has the host registered
|
|
|
|
// TODO: use remote.SSH.configFile
|
|
|
|
const sshConfigPath = path.join(os.homedir(), '.ssh', 'config');
|
|
|
|
if (fs.existsSync(sshConfigPath)) {
|
|
|
|
const config = fs.readFileSync(sshConfigPath, 'utf8');
|
|
|
|
// TODO: more robust regex
|
|
|
|
if (config.includes(host)) {
|
|
|
|
console.log('Host already registered in local ssh config');
|
|
|
|
// TODO: connect the specified folder
|
|
|
|
} else {
|
|
|
|
// the host has not been registered in the local ssh config
|
|
|
|
|
|
|
|
// connect the host and add the public key to the remote authorized_keys
|
|
|
|
const defaultPublicKeyPath = path.join(os.homedir(), '.ssh', 'id_rsa.pub');
|
|
|
|
// TODO: if there is no public key, generate one
|
|
|
|
const publicKey = fs.readFileSync(defaultPublicKeyPath, 'utf8');
|
|
|
|
|
|
|
|
await this.firstConnect(
|
|
|
|
host,
|
|
|
|
username,
|
|
|
|
password,
|
|
|
|
port,
|
|
|
|
publicKey
|
|
|
|
)
|
|
|
|
|
|
|
|
// append the host to the local ssh config file
|
|
|
|
const sshConfigContent =
|
|
|
|
`\n
|
|
|
|
Host ${host}
|
|
|
|
HostName ${host}
|
|
|
|
Port ${port}
|
|
|
|
User ${username}
|
|
|
|
PreferredAuthentications publickey
|
|
|
|
IdentityFile ~/.ssh/id_rsa
|
|
|
|
`;
|
|
|
|
// append the host to the local ssh config file
|
|
|
|
fs.writeFileSync(sshConfigPath, sshConfigContent, { encoding: 'utf8', flag: 'a' });
|
|
|
|
console.log('Host registered in local ssh config');
|
|
|
|
|
|
|
|
// connect the host with remote-ssh extension
|
|
|
|
await vscode.commands.executeCommand('opensshremotes.openEmptyWindowInCurrentWindow', host)
|
|
|
|
.then(() => {
|
|
|
|
console.log('Connected to host');
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
console.error('Error connecting to host: ', error);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async firstConnect(host, username, password, port, publicKey) {
|
2024-06-27 01:20:37 +08:00
|
|
|
const ssh = new NodeSSH();
|
|
|
|
ssh.connect({
|
|
|
|
host: host,
|
|
|
|
username: username,
|
|
|
|
password: password,
|
|
|
|
port: port
|
|
|
|
}).then(() => {
|
|
|
|
console.log('Connected successfully');
|
2024-07-01 12:25:28 +08:00
|
|
|
ssh.execCommand(`mkdir -p ~/.ssh &&
|
|
|
|
echo '${publicKey}' >> ~/.ssh/authorized_keys`, )
|
2024-06-27 01:20:37 +08:00
|
|
|
.then(result => {
|
|
|
|
if (result.stdout) console.log('STDOUT: ' + result.stdout);
|
|
|
|
if (result.stderr) console.log('STDERR: ' + result.stderr);
|
|
|
|
});
|
|
|
|
}).catch(error => {
|
|
|
|
console.log('Error: ', error);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
registerGlobalCommands() {
|
|
|
|
this.subscriptions.push(
|
2024-07-01 12:25:28 +08:00
|
|
|
vscode.commands.registerCommand('superide.showHome', (url) =>
|
|
|
|
this.siHome.toggle(url)
|
|
|
|
),
|
|
|
|
vscode.commands.registerCommand('superide.connectRemoteContainer', () =>
|
|
|
|
this.connectRemoteContainer()
|
2024-06-27 01:20:37 +08:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
disposeSubscriptions() {
|
|
|
|
utils.disposeSubscriptions(this.subscriptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
deactivate() {
|
|
|
|
this.disposeSubscriptions();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const extension = new SuperIDEExtension();
|
|
|
|
|
|
|
|
export function activate(context) {
|
|
|
|
extension.activate(context);
|
|
|
|
return extension;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function deactivate() {
|
|
|
|
extension.deactivate();
|
|
|
|
}
|