mirror of
https://github.com/samanhappy/mcphub.git
synced 2025-12-24 02:39:19 -05:00
146 lines
4.0 KiB
TypeScript
146 lines
4.0 KiB
TypeScript
import { Request, Response } from 'express';
|
|
import config from '../config/index.js';
|
|
import { loadSettings, loadOriginalSettings } from '../config/index.js';
|
|
import { getDataService } from '../services/services.js';
|
|
import { DataService } from '../services/dataService.js';
|
|
import { IUser } from '../types/index.js';
|
|
import { getServerDao } from '../dao/DaoFactory.js';
|
|
|
|
const dataService: DataService = getDataService();
|
|
|
|
/**
|
|
* Get runtime configuration for frontend
|
|
*/
|
|
export const getRuntimeConfig = (req: Request, res: Response): void => {
|
|
try {
|
|
const runtimeConfig = {
|
|
basePath: config.basePath,
|
|
version: config.mcpHubVersion,
|
|
name: config.mcpHubName,
|
|
};
|
|
|
|
res.setHeader('Cache-Control', 'no-cache, no-store, must-revalidate');
|
|
res.setHeader('Pragma', 'no-cache');
|
|
res.setHeader('Expires', '0');
|
|
|
|
res.json({
|
|
success: true,
|
|
data: runtimeConfig,
|
|
});
|
|
} catch (error) {
|
|
console.error('Error getting runtime config:', error);
|
|
res.status(500).json({
|
|
success: false,
|
|
message: 'Failed to get runtime configuration',
|
|
});
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Get public system configuration (only skipAuth setting)
|
|
* This endpoint doesn't require authentication to allow checking if auth should be skipped
|
|
*/
|
|
export const getPublicConfig = (req: Request, res: Response): void => {
|
|
try {
|
|
const settings = loadSettings();
|
|
const skipAuth = settings.systemConfig?.routing?.skipAuth || false;
|
|
let permissions = {};
|
|
if (skipAuth) {
|
|
const user: IUser = {
|
|
username: 'guest',
|
|
password: '',
|
|
isAdmin: true,
|
|
};
|
|
permissions = dataService.getPermissions(user);
|
|
}
|
|
|
|
res.setHeader('Cache-Control', 'no-cache, no-store, must-revalidate');
|
|
res.setHeader('Pragma', 'no-cache');
|
|
res.setHeader('Expires', '0');
|
|
|
|
res.json({
|
|
success: true,
|
|
data: {
|
|
skipAuth,
|
|
permissions,
|
|
},
|
|
});
|
|
} catch (error) {
|
|
console.error('Error getting public config:', error);
|
|
res.status(500).json({
|
|
success: false,
|
|
message: 'Failed to get public configuration',
|
|
});
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Recursively remove null values from an object
|
|
*/
|
|
const removeNullValues = <T>(obj: T): T => {
|
|
if (obj === null || obj === undefined) {
|
|
return obj;
|
|
}
|
|
if (Array.isArray(obj)) {
|
|
return obj.map((item) => removeNullValues(item)) as T;
|
|
}
|
|
if (typeof obj === 'object') {
|
|
const result: Record<string, unknown> = {};
|
|
for (const [key, value] of Object.entries(obj)) {
|
|
if (value !== null) {
|
|
result[key] = removeNullValues(value);
|
|
}
|
|
}
|
|
return result as T;
|
|
}
|
|
return obj;
|
|
};
|
|
|
|
/**
|
|
* Get MCP settings in JSON format for export/copy
|
|
* Supports both full settings and individual server configuration
|
|
*/
|
|
export const getMcpSettingsJson = async (req: Request, res: Response): Promise<void> => {
|
|
try {
|
|
const { serverName } = req.query;
|
|
if (serverName && typeof serverName === 'string') {
|
|
// Return individual server configuration using DAO
|
|
const serverDao = getServerDao();
|
|
const serverConfig = await serverDao.findById(serverName);
|
|
if (!serverConfig) {
|
|
res.status(404).json({
|
|
success: false,
|
|
message: `Server '${serverName}' not found`,
|
|
});
|
|
return;
|
|
}
|
|
|
|
// Remove the 'name' field from config as it's used as the key
|
|
const { name, ...configWithoutName } = serverConfig;
|
|
// Remove null values from the config
|
|
const cleanedConfig = removeNullValues(configWithoutName);
|
|
res.json({
|
|
success: true,
|
|
data: {
|
|
mcpServers: {
|
|
[name]: cleanedConfig,
|
|
},
|
|
},
|
|
});
|
|
} else {
|
|
// Return full settings
|
|
const settings = loadOriginalSettings();
|
|
res.json({
|
|
success: true,
|
|
data: settings,
|
|
});
|
|
}
|
|
} catch (error) {
|
|
console.error('Error getting MCP settings JSON:', error);
|
|
res.status(500).json({
|
|
success: false,
|
|
message: 'Failed to get MCP settings',
|
|
});
|
|
}
|
|
};
|