refactor: storage API

This commit is contained in:
Ravinou 2025-03-21 22:16:25 +01:00
commit 35ad73fd23
No known key found for this signature in database
GPG key ID: EEEE670C40F6A4D7
5 changed files with 189 additions and 87 deletions

View file

@ -1,86 +0,0 @@
// This API is design to be used by a cron (of your choice). Call it with curl for example
//(e.g : curl --request POST --url 'http://localhost:3000/api/cronjob/getStorageUsed' --header 'Authorization: Bearer 5173f388c0f4a0df92d1412c3036ddc897c22e4448')
//Lib
import { promises as fs } from 'fs';
import path from 'path';
const util = require('node:util');
const exec = util.promisify(require('node:child_process').exec);
export default async function handler(req, res) {
if (req.headers.authorization == null) {
res.status(401).json({
status: 401,
message: 'Unauthorized',
});
return;
}
const CRONJOB_KEY = process.env.CRONJOB_KEY;
const ACTION_KEY = req.headers.authorization.split(' ')[1];
try {
if (req.method == 'POST' && ACTION_KEY === CRONJOB_KEY) {
//Check the repoList
const jsonDirectory = path.join(process.cwd(), '/config');
let repoList = await fs.readFile(jsonDirectory + '/repo.json', 'utf8');
//Parse the repoList
repoList = JSON.parse(repoList);
//If repoList is empty we stop here.
if (repoList.length === 0) {
res.status(200).json({
success: 'No repositories to analyse yet.',
});
return;
}
////Call the shell : getStorageUsed.sh
//Find the absolute path of the shells directory
const shellsDirectory = path.join(process.cwd(), '/helpers');
//Exec the shell
const { stdout, stderr } = await exec(`${shellsDirectory}/shells/getStorageUsed.sh`);
if (stderr) {
res.status(500).json({
status: 500,
message: 'Error on getting storage, contact the administrator.',
});
return;
}
//Parse the JSON output of getStorageUsed.sh to use it
const storageUsed = JSON.parse(stdout);
//Rebuild a newRepoList with the storageUsed value updated
let newRepoList = repoList;
for (let index in newRepoList) {
const repoFiltered = storageUsed.filter(
(x) => x.name === newRepoList[index].repositoryName
);
if (repoFiltered.length === 1) {
newRepoList[index].storageUsed = repoFiltered[0].size;
}
}
//Stringify the repoList to write it into the json file.
newRepoList = JSON.stringify(newRepoList);
//Write the new json
await fs.writeFile(jsonDirectory + '/repo.json', newRepoList, (err) => {
if (err) console.log(err);
});
res.status(200).json({
success: 'Storage cron has been executed.',
});
} else {
res.status(401).json({
status: 401,
message: 'Unauthorized',
});
}
} catch (err) {
console.log(err);
res.status(500).json({
status: 500,
message: 'API error, contact the administrator.',
});
}
}

View file

@ -0,0 +1,47 @@
import { NextApiRequest, NextApiResponse } from 'next';
import { getRepoList, updateRepoList } from '~/helpers/functions';
import ApiResponse from '~/helpers/functions/apiResponse';
import { getStorageUsed } from '~/helpers/functions/shell.utils';
import { BorgWarehouseApiResponse } from '~/types/api/error.types';
export default async function handler(
req: NextApiRequest,
res: NextApiResponse<BorgWarehouseApiResponse>
) {
if (!req.headers.authorization) {
return ApiResponse.unauthorized(res);
}
const CRONJOB_KEY = process.env.CRONJOB_KEY;
const ACTION_KEY = req.headers.authorization.split(' ')[1];
if (req.method !== 'POST' || ACTION_KEY !== CRONJOB_KEY) {
return ApiResponse.unauthorized(res);
}
try {
//Check the repoList
const repoList = await getRepoList();
if (repoList.length === 0) {
return ApiResponse.success(res, 'Storage cron executed. No repository to check.');
}
const storageUsed = await getStorageUsed();
//Update the storageUsed value of each repository
const updatedRepoList = repoList.map((repo) => {
const repoFiltered = storageUsed.find((x) => x.name === repo.repositoryName);
if (!repoFiltered) return repo;
return {
...repo,
storageUsed: repoFiltered.size,
};
});
await updateRepoList(updatedRepoList);
return ApiResponse.success(res, 'Storage cron has been executed.');
} catch (err) {
console.error(err);
return ApiResponse.serverError(res);
}
}