bolt.diy/pages/api/system/git-info.ts
2025-01-24 01:08:51 +01:00

31 lines
1.0 KiB
TypeScript

import type { NextApiRequest, NextApiResponse } from 'next';
import { execSync } from 'child_process';
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
if (req.method !== 'GET') {
return res.status(405).json({ message: 'Method not allowed' });
}
try {
// Get git information using git commands
const branch = execSync('git rev-parse --abbrev-ref HEAD').toString().trim();
const commit = execSync('git rev-parse HEAD').toString().trim();
const commitTime = execSync('git log -1 --format=%cd').toString().trim();
const author = execSync('git log -1 --format=%an').toString().trim();
const remoteUrl = execSync('git config --get remote.origin.url').toString().trim();
const gitInfo = {
branch,
commit,
commitTime,
author,
remoteUrl,
};
res.status(200).json(gitInfo);
} catch (error) {
console.error('Failed to get git information:', error);
res.status(500).json({ message: 'Failed to get git information' });
}
}