2023-08-15 00:22:55 +02:00
|
|
|
const path = require("path");
|
|
|
|
const fs = require("fs");
|
|
|
|
const { getType } = require("mime");
|
|
|
|
const { v4 } = require("uuid");
|
|
|
|
const { SystemSettings } = require("../../models/systemSettings");
|
2023-10-23 22:10:34 +02:00
|
|
|
const LOGO_FILENAME = "anything-llm.png";
|
2023-08-15 00:22:55 +02:00
|
|
|
|
|
|
|
function validFilename(newFilename = "") {
|
2023-10-23 22:10:34 +02:00
|
|
|
return ![LOGO_FILENAME].includes(newFilename);
|
2023-08-15 00:22:55 +02:00
|
|
|
}
|
|
|
|
|
2023-10-23 22:10:34 +02:00
|
|
|
function getDefaultFilename() {
|
|
|
|
return LOGO_FILENAME;
|
2023-08-15 00:22:55 +02:00
|
|
|
}
|
|
|
|
|
2023-10-23 22:10:34 +02:00
|
|
|
async function determineLogoFilepath(defaultFilename = LOGO_FILENAME) {
|
2023-08-15 00:22:55 +02:00
|
|
|
const currentLogoFilename = await SystemSettings.currentLogoFilename();
|
|
|
|
const basePath = path.join(__dirname, "../../storage/assets");
|
|
|
|
const defaultFilepath = path.join(basePath, defaultFilename);
|
|
|
|
|
|
|
|
if (currentLogoFilename && validFilename(currentLogoFilename)) {
|
|
|
|
customLogoPath = path.join(basePath, currentLogoFilename);
|
|
|
|
return fs.existsSync(customLogoPath) ? customLogoPath : defaultFilepath;
|
|
|
|
}
|
|
|
|
|
|
|
|
return defaultFilepath;
|
|
|
|
}
|
|
|
|
|
|
|
|
function fetchLogo(logoPath) {
|
|
|
|
const mime = getType(logoPath);
|
|
|
|
const buffer = fs.readFileSync(logoPath);
|
|
|
|
return {
|
|
|
|
buffer,
|
|
|
|
size: buffer.length,
|
|
|
|
mime,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
async function renameLogoFile(originalFilename = null) {
|
|
|
|
const extname = path.extname(originalFilename) || ".png";
|
|
|
|
const newFilename = `${v4()}${extname}`;
|
|
|
|
const originalFilepath = path.join(
|
|
|
|
__dirname,
|
|
|
|
`../../storage/assets/${originalFilename}`
|
|
|
|
);
|
|
|
|
const outputFilepath = path.join(
|
|
|
|
__dirname,
|
|
|
|
`../../storage/assets/${newFilename}`
|
|
|
|
);
|
|
|
|
|
|
|
|
fs.renameSync(originalFilepath, outputFilepath);
|
|
|
|
return newFilename;
|
|
|
|
}
|
|
|
|
|
2023-10-23 22:10:34 +02:00
|
|
|
async function removeCustomLogo(logoFilename = LOGO_FILENAME) {
|
2023-08-15 00:22:55 +02:00
|
|
|
if (!logoFilename || !validFilename(logoFilename)) return false;
|
|
|
|
const logoPath = path.join(__dirname, `../../storage/assets/${logoFilename}`);
|
|
|
|
if (fs.existsSync(logoPath)) fs.unlinkSync(logoPath);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
fetchLogo,
|
|
|
|
renameLogoFile,
|
|
|
|
removeCustomLogo,
|
|
|
|
validFilename,
|
|
|
|
getDefaultFilename,
|
|
|
|
determineLogoFilepath,
|
2023-10-23 22:10:34 +02:00
|
|
|
LOGO_FILENAME,
|
2023-08-15 00:22:55 +02:00
|
|
|
};
|