2021-08-29 11:58:11 -07:00
|
|
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
|
|
/* eslint-disable no-console */
|
|
|
|
import { Command, flags } from '@oclif/command';
|
2021-01-20 14:51:49 -08:00
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
import { Credentials, UserSettings } from 'n8n-core';
|
2021-02-18 02:52:05 -08:00
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
import { LoggerProxy } from 'n8n-workflow';
|
2021-05-01 20:43:01 -07:00
|
|
|
|
2021-01-20 14:51:49 -08:00
|
|
|
import * as fs from 'fs';
|
2021-08-20 14:48:02 -07:00
|
|
|
import * as glob from 'fast-glob';
|
2021-01-20 14:51:49 -08:00
|
|
|
import * as path from 'path';
|
2021-08-29 11:58:11 -07:00
|
|
|
import { getLogger } from '../../src/Logger';
|
|
|
|
import { Db } from '../../src';
|
2021-01-20 14:51:49 -08:00
|
|
|
|
|
|
|
export class ImportCredentialsCommand extends Command {
|
|
|
|
static description = 'Import credentials';
|
|
|
|
|
|
|
|
static examples = [
|
|
|
|
`$ n8n import:credentials --input=file.json`,
|
|
|
|
`$ n8n import:credentials --separate --input=backups/latest/`,
|
|
|
|
];
|
|
|
|
|
|
|
|
static flags = {
|
|
|
|
help: flags.help({ char: 'h' }),
|
|
|
|
input: flags.string({
|
2021-01-21 01:52:33 -08:00
|
|
|
char: 'i',
|
2021-01-20 14:51:49 -08:00
|
|
|
description: 'Input file name or directory if --separate is used',
|
|
|
|
}),
|
|
|
|
separate: flags.boolean({
|
|
|
|
description: 'Imports *.json files from directory provided by --input',
|
|
|
|
}),
|
|
|
|
};
|
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
2021-01-20 14:51:49 -08:00
|
|
|
async run() {
|
2021-05-01 20:43:01 -07:00
|
|
|
const logger = getLogger();
|
|
|
|
LoggerProxy.init(logger);
|
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-shadow
|
2021-01-20 14:51:49 -08:00
|
|
|
const { flags } = this.parse(ImportCredentialsCommand);
|
|
|
|
|
|
|
|
if (!flags.input) {
|
2021-05-01 20:43:01 -07:00
|
|
|
console.info(`An input file or directory with --input must be provided`);
|
2021-01-20 14:51:49 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags.separate) {
|
|
|
|
if (fs.existsSync(flags.input)) {
|
|
|
|
if (!fs.lstatSync(flags.input).isDirectory()) {
|
2021-05-01 20:43:01 -07:00
|
|
|
console.info(`The paramenter --input must be a directory`);
|
2021-01-20 14:51:49 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
await Db.init();
|
2021-07-01 00:04:24 -07:00
|
|
|
|
|
|
|
// Make sure the settings exist
|
|
|
|
await UserSettings.prepareUserSettings();
|
2021-01-20 14:51:49 -08:00
|
|
|
let i;
|
2021-03-17 13:28:22 -07:00
|
|
|
|
|
|
|
const encryptionKey = await UserSettings.getEncryptionKey();
|
|
|
|
if (encryptionKey === undefined) {
|
|
|
|
throw new Error('No encryption key got found to encrypt the credentials!');
|
|
|
|
}
|
|
|
|
|
2021-01-20 14:51:49 -08:00
|
|
|
if (flags.separate) {
|
2021-08-29 11:58:11 -07:00
|
|
|
const files = await glob(
|
|
|
|
`${flags.input.endsWith(path.sep) ? flags.input : flags.input + path.sep}*.json`,
|
|
|
|
);
|
2021-01-20 14:51:49 -08:00
|
|
|
for (i = 0; i < files.length; i++) {
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
2021-01-20 14:51:49 -08:00
|
|
|
const credential = JSON.parse(fs.readFileSync(files[i], { encoding: 'utf8' }));
|
2021-03-17 13:28:22 -07:00
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
|
2021-03-17 13:28:22 -07:00
|
|
|
if (typeof credential.data === 'object') {
|
|
|
|
// plain data / decrypted input. Should be encrypted first.
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
|
2021-03-17 13:28:22 -07:00
|
|
|
Credentials.prototype.setData.call(credential, credential.data, encryptionKey);
|
|
|
|
}
|
|
|
|
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line no-await-in-loop, @typescript-eslint/no-non-null-assertion
|
2021-01-20 14:51:49 -08:00
|
|
|
await Db.collections.Credentials!.save(credential);
|
|
|
|
}
|
|
|
|
} else {
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
2021-01-20 14:51:49 -08:00
|
|
|
const fileContents = JSON.parse(fs.readFileSync(flags.input, { encoding: 'utf8' }));
|
|
|
|
|
|
|
|
if (!Array.isArray(fileContents)) {
|
|
|
|
throw new Error(`File does not seem to contain credentials.`);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < fileContents.length; i++) {
|
2021-02-18 02:52:05 -08:00
|
|
|
if (typeof fileContents[i].data === 'object') {
|
|
|
|
// plain data / decrypted input. Should be encrypted first.
|
2021-08-29 11:58:11 -07:00
|
|
|
Credentials.prototype.setData.call(
|
|
|
|
fileContents[i],
|
|
|
|
fileContents[i].data,
|
|
|
|
encryptionKey,
|
|
|
|
);
|
2021-02-18 02:52:05 -08:00
|
|
|
}
|
2021-08-29 11:58:11 -07:00
|
|
|
// eslint-disable-next-line no-await-in-loop, @typescript-eslint/no-non-null-assertion
|
2021-01-20 14:51:49 -08:00
|
|
|
await Db.collections.Credentials!.save(fileContents[i]);
|
|
|
|
}
|
|
|
|
}
|
2021-05-01 20:43:01 -07:00
|
|
|
console.info(`Successfully imported ${i} ${i === 1 ? 'credential.' : 'credentials.'}`);
|
|
|
|
process.exit(0);
|
2021-01-20 14:51:49 -08:00
|
|
|
} catch (error) {
|
2021-05-01 20:43:01 -07:00
|
|
|
console.error('An error occurred while exporting credentials. See log messages for details.');
|
|
|
|
logger.error(error.message);
|
2021-01-20 14:51:49 -08:00
|
|
|
this.exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|