2023-12-15 00:14:56 +01:00
|
|
|
const { v4 } = require("uuid");
|
|
|
|
const fs = require("fs");
|
|
|
|
const { tokenizeString } = require("../../utils/tokenizer");
|
|
|
|
const {
|
|
|
|
createdDate,
|
|
|
|
trashFile,
|
|
|
|
writeToServerDocuments,
|
|
|
|
} = require("../../utils/files");
|
|
|
|
const { default: slugify } = require("slugify");
|
|
|
|
|
|
|
|
async function asTxt({ fullFilePath = "", filename = "" }) {
|
|
|
|
let content = "";
|
|
|
|
try {
|
|
|
|
content = fs.readFileSync(fullFilePath, "utf8");
|
|
|
|
} catch (err) {
|
|
|
|
console.error("Could not read file!", err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!content?.length) {
|
|
|
|
console.error(`Resulting text content was empty for ${filename}.`);
|
|
|
|
trashFile(fullFilePath);
|
2024-01-17 01:04:22 +01:00
|
|
|
return {
|
|
|
|
success: false,
|
|
|
|
reason: `No text content found in ${filename}.`,
|
|
|
|
documents: [],
|
|
|
|
};
|
2023-12-15 00:14:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
console.log(`-- Working ${filename} --`);
|
2023-12-21 04:41:16 +01:00
|
|
|
const data = {
|
2023-12-15 00:14:56 +01:00
|
|
|
id: v4(),
|
|
|
|
url: "file://" + fullFilePath,
|
|
|
|
title: filename,
|
|
|
|
docAuthor: "Unknown", // TODO: Find a better author
|
|
|
|
description: "Unknown", // TODO: Find a better description
|
|
|
|
docSource: "a text file uploaded by the user.",
|
|
|
|
chunkSource: filename,
|
|
|
|
published: createdDate(fullFilePath),
|
|
|
|
wordCount: content.split(" ").length,
|
|
|
|
pageContent: content,
|
|
|
|
token_count_estimate: tokenizeString(content).length,
|
|
|
|
};
|
|
|
|
|
2024-01-17 01:04:22 +01:00
|
|
|
const document = writeToServerDocuments(
|
|
|
|
data,
|
|
|
|
`${slugify(filename)}-${data.id}`
|
|
|
|
);
|
2023-12-15 00:14:56 +01:00
|
|
|
trashFile(fullFilePath);
|
|
|
|
console.log(`[SUCCESS]: ${filename} converted & ready for embedding.\n`);
|
2024-01-17 01:04:22 +01:00
|
|
|
return { success: true, reason: null, documents: [document] };
|
2023-12-15 00:14:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = asTxt;
|