2024-08-29 07:31:17 -07:00
|
|
|
import type { ICredentialType } from 'n8n-workflow';
|
|
|
|
import { CredentialSchema, type InferCredentialSchema } from '../utils/CredentialSchema';
|
|
|
|
|
|
|
|
const sftpCredentialSchema = CredentialSchema.create({
|
|
|
|
host: CredentialSchema.string({ label: 'Host', placeholder: 'localhost' }),
|
|
|
|
port: CredentialSchema.number({ label: 'Port', default: 22 }),
|
|
|
|
username: CredentialSchema.string({ label: 'Username' }),
|
|
|
|
password: CredentialSchema.password(),
|
|
|
|
privateKey: CredentialSchema.password({
|
|
|
|
label: 'Private Key',
|
|
|
|
description:
|
|
|
|
'String that contains a private key for either key-based or hostbased user authentication (OpenSSH format)',
|
|
|
|
}),
|
|
|
|
passphrase: CredentialSchema.password({
|
|
|
|
label: 'Passphrase',
|
|
|
|
description: 'For an encrypted private key, this is the passphrase used to decrypt it',
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
|
|
|
|
export type SftpCredentialSchema = InferCredentialSchema<typeof sftpCredentialSchema>;
|
2020-08-04 00:01:13 -07:00
|
|
|
|
|
|
|
export class Sftp implements ICredentialType {
|
|
|
|
name = 'sftp';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-08-04 00:01:13 -07:00
|
|
|
displayName = 'SFTP';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-09-21 02:11:02 -07:00
|
|
|
documentationUrl = 'ftp';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2024-08-29 07:31:17 -07:00
|
|
|
properties = sftpCredentialSchema.toNodeProperties();
|
2020-08-04 00:01:13 -07:00
|
|
|
}
|