mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
170 lines
4.5 KiB
TypeScript
170 lines
4.5 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { MCPServerConfig, GeminiCLIExtension } from '@qwen-code/qwen-code-core';
|
|
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
import * as os from 'os';
|
|
|
|
export const EXTENSIONS_DIRECTORY_NAME = path.join('.qwen', 'extensions');
|
|
export const EXTENSIONS_CONFIG_FILENAME = 'gemini-extension.json';
|
|
|
|
export interface Extension {
|
|
path: string;
|
|
config: ExtensionConfig;
|
|
contextFiles: string[];
|
|
}
|
|
|
|
export interface ExtensionConfig {
|
|
name: string;
|
|
version: string;
|
|
mcpServers?: Record<string, MCPServerConfig>;
|
|
contextFileName?: string | string[];
|
|
excludeTools?: string[];
|
|
}
|
|
|
|
export function loadExtensions(workspaceDir: string): Extension[] {
|
|
const allExtensions = [
|
|
...loadExtensionsFromDir(workspaceDir),
|
|
...loadExtensionsFromDir(os.homedir()),
|
|
];
|
|
|
|
const uniqueExtensions = new Map<string, Extension>();
|
|
for (const extension of allExtensions) {
|
|
if (!uniqueExtensions.has(extension.config.name)) {
|
|
uniqueExtensions.set(extension.config.name, extension);
|
|
}
|
|
}
|
|
|
|
return Array.from(uniqueExtensions.values());
|
|
}
|
|
|
|
function loadExtensionsFromDir(dir: string): Extension[] {
|
|
const extensionsDir = path.join(dir, EXTENSIONS_DIRECTORY_NAME);
|
|
if (!fs.existsSync(extensionsDir)) {
|
|
return [];
|
|
}
|
|
|
|
const extensions: Extension[] = [];
|
|
for (const subdir of fs.readdirSync(extensionsDir)) {
|
|
const extensionDir = path.join(extensionsDir, subdir);
|
|
|
|
const extension = loadExtension(extensionDir);
|
|
if (extension != null) {
|
|
extensions.push(extension);
|
|
}
|
|
}
|
|
return extensions;
|
|
}
|
|
|
|
function loadExtension(extensionDir: string): Extension | null {
|
|
if (!fs.statSync(extensionDir).isDirectory()) {
|
|
console.error(
|
|
`Warning: unexpected file ${extensionDir} in extensions directory.`,
|
|
);
|
|
return null;
|
|
}
|
|
|
|
const configFilePath = path.join(extensionDir, EXTENSIONS_CONFIG_FILENAME);
|
|
if (!fs.existsSync(configFilePath)) {
|
|
console.error(
|
|
`Warning: extension directory ${extensionDir} does not contain a config file ${configFilePath}.`,
|
|
);
|
|
return null;
|
|
}
|
|
|
|
try {
|
|
const configContent = fs.readFileSync(configFilePath, 'utf-8');
|
|
const config = JSON.parse(configContent) as ExtensionConfig;
|
|
if (!config.name || !config.version) {
|
|
console.error(
|
|
`Invalid extension config in ${configFilePath}: missing name or version.`,
|
|
);
|
|
return null;
|
|
}
|
|
|
|
const contextFiles = getContextFileNames(config)
|
|
.map((contextFileName) => path.join(extensionDir, contextFileName))
|
|
.filter((contextFilePath) => fs.existsSync(contextFilePath));
|
|
|
|
return {
|
|
path: extensionDir,
|
|
config,
|
|
contextFiles,
|
|
};
|
|
} catch (e) {
|
|
console.error(
|
|
`Warning: error parsing extension config in ${configFilePath}: ${e}`,
|
|
);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
function getContextFileNames(config: ExtensionConfig): string[] {
|
|
if (!config.contextFileName) {
|
|
return ['QWEN.md'];
|
|
} else if (!Array.isArray(config.contextFileName)) {
|
|
return [config.contextFileName];
|
|
}
|
|
return config.contextFileName;
|
|
}
|
|
|
|
export function annotateActiveExtensions(
|
|
extensions: Extension[],
|
|
enabledExtensionNames: string[],
|
|
): GeminiCLIExtension[] {
|
|
const annotatedExtensions: GeminiCLIExtension[] = [];
|
|
|
|
if (enabledExtensionNames.length === 0) {
|
|
return extensions.map((extension) => ({
|
|
name: extension.config.name,
|
|
version: extension.config.version,
|
|
isActive: true,
|
|
path: extension.path,
|
|
}));
|
|
}
|
|
|
|
const lowerCaseEnabledExtensions = new Set(
|
|
enabledExtensionNames.map((e) => e.trim().toLowerCase()),
|
|
);
|
|
|
|
if (
|
|
lowerCaseEnabledExtensions.size === 1 &&
|
|
lowerCaseEnabledExtensions.has('none')
|
|
) {
|
|
return extensions.map((extension) => ({
|
|
name: extension.config.name,
|
|
version: extension.config.version,
|
|
isActive: false,
|
|
path: extension.path,
|
|
}));
|
|
}
|
|
|
|
const notFoundNames = new Set(lowerCaseEnabledExtensions);
|
|
|
|
for (const extension of extensions) {
|
|
const lowerCaseName = extension.config.name.toLowerCase();
|
|
const isActive = lowerCaseEnabledExtensions.has(lowerCaseName);
|
|
|
|
if (isActive) {
|
|
notFoundNames.delete(lowerCaseName);
|
|
}
|
|
|
|
annotatedExtensions.push({
|
|
name: extension.config.name,
|
|
version: extension.config.version,
|
|
isActive,
|
|
path: extension.path,
|
|
});
|
|
}
|
|
|
|
for (const requestedName of notFoundNames) {
|
|
console.error(`Extension not found: ${requestedName}`);
|
|
}
|
|
|
|
return annotatedExtensions;
|
|
}
|