Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor repository reading for recursive directory searching #1239

Merged
merged 3 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

import { RepositoryReader } from '../repository/repository';
import { TemplateManager } from '../repository/repository';
import { IntegrationReader } from '../repository/integration';
import path from 'path';
import * as fs from 'fs/promises';
Expand All @@ -27,7 +27,7 @@ describe('The local repository', () => {
});

it('Should pass deep validation for all local integrations.', async () => {
const repository: RepositoryReader = new RepositoryReader(
const repository: TemplateManager = new TemplateManager(
path.join(__dirname, '../__data__/repository')
);
const integrations: IntegrationReader[] = await repository.getIntegrationList();
Expand Down
4 changes: 2 additions & 2 deletions server/adaptors/integrations/__test__/manager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@

import { IntegrationsManager } from '../integrations_manager';
import { SavedObject, SavedObjectsClientContract } from '../../../../../../src/core/server/types';
import { RepositoryReader } from '../repository/repository';
import { TemplateManager } from '../repository/repository';
import { IntegrationInstanceBuilder } from '../integrations_builder';
import { IntegrationReader } from '../repository/integration';
import { SavedObjectsFindResponse } from '../../../../../../src/core/server';

describe('IntegrationsKibanaBackend', () => {
let mockSavedObjectsClient: jest.Mocked<SavedObjectsClientContract>;
let mockRepository: jest.Mocked<RepositoryReader>;
let mockRepository: jest.Mocked<TemplateManager>;
let backend: IntegrationsManager;

beforeEach(() => {
Expand Down
8 changes: 4 additions & 4 deletions server/adaptors/integrations/integrations_manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ import { addRequestToMetric } from '../../common/metrics/metrics_helper';
import { IntegrationsAdaptor } from './integrations_adaptor';
import { SavedObject, SavedObjectsClientContract } from '../../../../../src/core/server/types';
import { IntegrationInstanceBuilder } from './integrations_builder';
import { RepositoryReader } from './repository/repository';
import { TemplateManager } from './repository/repository';

export class IntegrationsManager implements IntegrationsAdaptor {
client: SavedObjectsClientContract;
instanceBuilder: IntegrationInstanceBuilder;
repository: RepositoryReader;
repository: TemplateManager;

constructor(client: SavedObjectsClientContract, repository?: RepositoryReader) {
constructor(client: SavedObjectsClientContract, repository?: TemplateManager) {
this.client = client;
this.repository =
repository ?? new RepositoryReader(path.join(__dirname, '__data__/repository'));
repository ?? new TemplateManager(path.join(__dirname, '__data__/repository'));
this.instanceBuilder = new IntegrationInstanceBuilder(this.client);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,22 @@
*/

import * as fs from 'fs/promises';
import { RepositoryReader } from '../repository';
import { TemplateManager } from '../repository';
import { IntegrationReader } from '../integration';
import { Dirent, Stats } from 'fs';
import path from 'path';

jest.mock('fs/promises');

describe('Repository', () => {
let repository: RepositoryReader;
let repository: TemplateManager;

beforeEach(() => {
repository = new RepositoryReader('path/to/directory');
repository = new TemplateManager('path/to/directory');
});

afterEach(() => {
jest.resetAllMocks();
});

describe('getIntegrationList', () => {
Expand Down
23 changes: 21 additions & 2 deletions server/adaptors/integrations/repository/fs_data_adaptor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,32 @@ export class FileSystemCatalogDataAdaptor implements CatalogDataAdaptor {

async findIntegrations(dirname: string = '.'): Promise<Result<string[]>> {
try {
const files = await fs.readdir(path.join(this.directory, dirname));
return { ok: true, value: files };
const integrations: string[] = [];
await this.collectIntegrationsRecursive(dirname, integrations);
return { ok: true, value: integrations };
} catch (err: any) {
return { ok: false, error: err };
}
}

private async collectIntegrationsRecursive(
dirname: string,
integrations: string[]
): Promise<void> {
const entries = await fs.readdir(path.join(this.directory, dirname));

for (const entry of entries) {
const fullPath = path.join(dirname, entry);
const isDirectory = (await this.getDirectoryType(fullPath)) === 'integration';

if (isDirectory) {
integrations.push(fullPath);
} else if ((await this.getDirectoryType(fullPath)) === 'repository') {
await this.collectIntegrationsRecursive(fullPath, integrations);
}
}
}

async findIntegrationVersions(dirname: string = '.'): Promise<Result<string[]>> {
let files;
const integPath = path.join(this.directory, dirname);
Expand Down
16 changes: 9 additions & 7 deletions server/adaptors/integrations/repository/repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as path from 'path';
import { IntegrationReader } from './integration';
import { FileSystemCatalogDataAdaptor } from './fs_data_adaptor';

export class RepositoryReader {
export class TemplateManager {
reader: CatalogDataAdaptor;
directory: string;

Expand All @@ -24,20 +24,22 @@ export class RepositoryReader {
return [];
}
const integrations = await Promise.all(
folders.value.map((i) => this.getIntegration(path.basename(i)))
folders.value.map((i) =>
this.getIntegration(path.relative(this.directory, path.join(this.directory, i)))
)
);
return integrations.filter((x) => x !== null) as IntegrationReader[];
}

async getIntegration(name: string): Promise<IntegrationReader | null> {
if ((await this.reader.getDirectoryType(name)) !== 'integration') {
console.error(`Requested integration '${name}' does not exist`);
async getIntegration(integPath: string): Promise<IntegrationReader | null> {
if ((await this.reader.getDirectoryType(integPath)) !== 'integration') {
console.error(`Requested integration '${integPath}' does not exist`);
return null;
}
const integ = new IntegrationReader(name, this.reader.join(name));
const integ = new IntegrationReader(integPath, this.reader.join(integPath));
const checkResult = await integ.getConfig();
if (!checkResult.ok) {
console.error(`Integration '${name}' is invalid:`, checkResult.error);
console.error(`Integration '${integPath}' is invalid:`, checkResult.error);
return null;
}
return integ;
Expand Down
Loading