mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
feat(SSH Node): Credentials test (#6279)
This commit is contained in:
parent
8fe8aad6a7
commit
3569d53917
|
@ -1,6 +1,9 @@
|
||||||
import type {
|
import type {
|
||||||
|
ICredentialTestFunctions,
|
||||||
|
ICredentialsDecrypted,
|
||||||
IDataObject,
|
IDataObject,
|
||||||
IExecuteFunctions,
|
IExecuteFunctions,
|
||||||
|
INodeCredentialTestResult,
|
||||||
INodeExecutionData,
|
INodeExecutionData,
|
||||||
INodeType,
|
INodeType,
|
||||||
INodeTypeDescription,
|
INodeTypeDescription,
|
||||||
|
@ -63,6 +66,7 @@ export class Ssh implements INodeType {
|
||||||
{
|
{
|
||||||
name: 'sshPassword',
|
name: 'sshPassword',
|
||||||
required: true,
|
required: true,
|
||||||
|
testedBy: 'sshConnectionTest',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
authentication: ['password'],
|
authentication: ['password'],
|
||||||
|
@ -272,6 +276,60 @@ export class Ssh implements INodeType {
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
methods = {
|
||||||
|
credentialTest: {
|
||||||
|
async sshConnectionTest(
|
||||||
|
this: ICredentialTestFunctions,
|
||||||
|
credential: ICredentialsDecrypted,
|
||||||
|
): Promise<INodeCredentialTestResult> {
|
||||||
|
const credentials = credential.data as IDataObject;
|
||||||
|
const ssh = new NodeSSH();
|
||||||
|
const temporaryFiles: string[] = [];
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (!credentials.privateKey) {
|
||||||
|
await ssh.connect({
|
||||||
|
host: credentials.host as string,
|
||||||
|
username: credentials.username as string,
|
||||||
|
port: credentials.port as number,
|
||||||
|
password: credentials.password as string,
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
const { path } = await tmpFile({ prefix: 'n8n-ssh-' });
|
||||||
|
temporaryFiles.push(path);
|
||||||
|
await writeFile(path, credentials.privateKey as string);
|
||||||
|
|
||||||
|
const options: Config = {
|
||||||
|
host: credentials.host as string,
|
||||||
|
username: credentials.username as string,
|
||||||
|
port: credentials.port as number,
|
||||||
|
privateKey: path,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (credentials.passphrase) {
|
||||||
|
options.passphrase = credentials.passphrase as string;
|
||||||
|
}
|
||||||
|
|
||||||
|
await ssh.connect(options);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
const message = `SSH connection failed: ${error.message}`;
|
||||||
|
return {
|
||||||
|
status: 'Error',
|
||||||
|
message,
|
||||||
|
};
|
||||||
|
} finally {
|
||||||
|
ssh.dispose();
|
||||||
|
for (const tempFile of temporaryFiles) await rm(tempFile);
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
status: 'OK',
|
||||||
|
message: 'Connection successful!',
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||||
const items = this.getInputData();
|
const items = this.getInputData();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue