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

Task: Support ttk add plugin #5759

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
42 changes: 36 additions & 6 deletions vscode/microsoft-kiota/src/utilities/deep-linking.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import * as fs from 'fs';
import * as path from 'path';

import { GenerateState } from "../modules/steps/generateSteps";
import { KiotaGenerationLanguage, KiotaPluginType } from "../types/enums";
import { allGenerationLanguagesToString, getSanitizedString, parseGenerationLanguage, parsePluginType } from "../util";
Expand Down Expand Up @@ -34,7 +37,7 @@ export function transformToGenerationConfig(deepLinkParams: Partial<IntegrationP
}
generationConfig.outputPath =
(deepLinkParams.source && deepLinkParams.source?.toLowerCase() === 'ttk')
? createTemporaryFolder()
? determineOutputPath(deepLinkParams)
: undefined;
}
return generationConfig;
Expand All @@ -49,7 +52,8 @@ export interface IntegrationParams {
source: string;
ttkContext: {
lastCommand: string;
}
},
projectPath: string;
};

export function validateDeepLinkQueryParams(queryParameters: Partial<IntegrationParams>):
Expand All @@ -59,6 +63,8 @@ export function validateDeepLinkQueryParams(queryParameters: Partial<Integration
const descriptionurl = queryParameters["descriptionurl"];
const name = getSanitizedString(queryParameters["name"]);
const source = getSanitizedString(queryParameters["source"]);
let projectPath = queryParameters["projectPath"];

let lowercasedKind: string = queryParameters["kind"]?.toLowerCase() ?? "";
let validKind: string | undefined = ["plugin", "client"].indexOf(lowercasedKind) > -1 ? lowercasedKind : undefined;
if (!validKind) {
Expand Down Expand Up @@ -103,14 +109,38 @@ export function validateDeepLinkQueryParams(queryParameters: Partial<Integration
errormsg.push("Invalid parameter 'type' deeplinked. Expected values: " + acceptedPluginTypes.join(","));
}

if (projectPath && !path.isAbsolute(projectPath)) {
projectPath = undefined;
errormsg.push(`The projectPath should be an absolute path. Provided value: ${queryParameters["projectPath"]}`);
}

validQueryParams = {
descriptionurl: descriptionurl,
name: name,
descriptionurl,
name,
kind: validKind,
type: providedType,
language: givenLanguage,
source: source,
ttkContext: queryParameters.ttkContext ? queryParameters.ttkContext : undefined
source,
ttkContext: queryParameters.ttkContext ? queryParameters.ttkContext : undefined,
projectPath
};
return [validQueryParams, errormsg];
}

function determineOutputPath(deepLinkParams: Partial<IntegrationParams>): string | undefined {
if (deepLinkParams.projectPath) {
try {
if (!fs.existsSync(deepLinkParams.projectPath)) {
try {
fs.mkdirSync(deepLinkParams.projectPath);
} catch (err: unknown) {
throw new Error(`Error creating directory: ${(err as Error).message}`);
}
}
return deepLinkParams.projectPath;
} catch (error) {
return createTemporaryFolder();
}
}
return createTemporaryFolder();
}
Loading