refactor: repository index

This commit is contained in:
Ravinou 2025-03-28 17:40:10 +01:00
commit cb2032f309
No known key found for this signature in database
GPG key ID: EEEE670C40F6A4D7
2 changed files with 54 additions and 76 deletions

View file

@ -1,76 +0,0 @@
import { promises as fs } from 'fs';
import path from 'path';
import { authOptions } from '../../../auth/[...nextauth]';
import { getServerSession } from 'next-auth/next';
import tokenController from '../../../../../helpers/functions/tokenController';
export default async function handler(req, res) {
if (req.method == 'GET') {
// AUTHENTICATION
const FROM_IP = req.headers['x-forwarded-for'] || 'unknown';
const session = await getServerSession(req, res, authOptions);
const { authorization } = req.headers;
if (!session && !authorization) {
res.status(401).end();
return;
}
try {
if (!session && authorization) {
const API_KEY = authorization.split(' ')[1];
const permissions = await tokenController(API_KEY, FROM_IP);
if (!permissions) {
res.status(401).json({ message: 'Invalid API key' });
return;
}
if (!permissions.read) {
res.status(403).json({ message: 'Insufficient permissions' });
return;
}
}
} catch (error) {
res.status(500).json({ message: 'Internal Server Error' });
return;
}
try {
//Find the absolute path of the json directory
const jsonDirectory = path.join(process.cwd(), '/config');
//Read the json data file data.json
let repoList = await fs.readFile(jsonDirectory + '/repo.json', 'utf8');
//Parse the json data file who has been read
repoList = JSON.parse(repoList);
//Find the ID (req.query.slug) in RepoList and put the repo in a single object (repo).
let repo;
for (let element in repoList) {
if (repoList[element].id == req.query.slug) {
repo = repoList[element];
}
}
//If no repo is found --> 404.
if (!repo) {
res.status(404).json({
message: 'No repository with id #' + req.query.slug,
});
return;
}
// Send the response and return the repo object --> 200
res.status(200).json({ repo });
} catch (error) {
//Log for backend
console.log(error);
//Log for frontend
if (error.code == 'ENOENT') {
res.status(500).json({
message: 'No such file or directory',
});
} else {
res.status(500).json({
message: 'API error, contact the administrator',
});
}
return;
}
}
}

View file

@ -0,0 +1,54 @@
import { authOptions } from '../../../auth/[...nextauth]';
import { getServerSession } from 'next-auth/next';
import { NextApiRequest, NextApiResponse } from 'next';
import { BorgWarehouseApiResponse } from '~/types/api/error.types';
import ApiResponse from '~/helpers/functions/apiResponse';
import { getRepoList, tokenController } from '~/helpers/functions';
import { Repository } from '~/types/domain/config.types';
export default async function handler(
req: NextApiRequest,
res: NextApiResponse<BorgWarehouseApiResponse | { repo: Repository }>
) {
if (req.method !== 'GET') {
return ApiResponse.methodNotAllowed(res);
}
const session = await getServerSession(req, res, authOptions);
const { authorization } = req.headers;
if (!session && !authorization) {
return ApiResponse.unauthorized(res);
}
try {
if (!session && authorization) {
const permissions = await tokenController(req.headers);
if (!permissions) {
return ApiResponse.unauthorized(res, 'Invalid API key');
}
if (!permissions.read) {
return ApiResponse.forbidden(res, 'Insufficient permissions');
}
}
} catch (error) {
return ApiResponse.serverError(res);
}
try {
const repoList = await getRepoList();
const slug = req.query.slug;
if (!slug || Array.isArray(slug)) {
return ApiResponse.badRequest(res, 'Missing slug or slug is malformed');
}
const repo = repoList.find((repo) => repo.id === parseInt(slug as string, 10));
if (!repo) {
return ApiResponse.notFound(res, 'No repository with id #' + req.query.slug);
}
return res.status(200).json({ repo });
} catch (error) {
return ApiResponse.serverError(res);
}
}