move hash to utilities folder

This commit is contained in:
H. Saw 2024-04-26 03:00:42 +00:00
parent b4ea93911e
commit 0b7be21d03
3 changed files with 51 additions and 51 deletions

View file

@ -3,14 +3,14 @@ Ask product information to Google Gemini. */
// Import the storage management module.
const secretariat = await import(chrome.runtime.getURL("scripts/secretariat.js"));
import hash from "/scripts/strings/hash.js";
import hash from "/scripts/utils/hash.js";
import texts from "/scripts/strings/read.js";
// Don't forget to set the class as export default.
export default class product {
// Create private variables for explicit use for the storage.
#snip;
#options;
// Create private variables for explicit use for the storage.
#snip;
#options;
/* Initialize a new product with its details.
@ -25,11 +25,11 @@ export default class product {
/* Remove uneeded data or formatting from the URL and the data. */
let clean = (URL) => {
// Remove the protocol from the URL.
// Remove the protocol from the URL.
return((URL.replace(/(^\w+:|^)\/\//, ``).split(`?`))[0]);
}
// Set this product's details as part of the object's properties.
// Set this product's details as part of the object's properties.
this.URL = clean(URL);
this.details = details;
@ -39,22 +39,22 @@ export default class product {
/* Attach the product data to the storage. */
async attach() {
// Add the data digest.
// Add the data digest.
this.#snip = (await hash.digest(this.details, {"output": "Number"}));
// Add the status about this data.
// Add the status about this data.
this.status = {};
this.status[`update`] = !secretariat.compare([`sites`, this.URL, `snip`], this.#snip);
}
async save() {
// Stop when not attached (basically, not entirely initialized).
// Stop when not attached (basically, not entirely initialized).
if (!this.#snip) {throw new ReferenceError((new texts(`error_msg_notattached`)).localized)};
// Save the data to the storage.
await secretariat.write([`sites`, this.URL, `snip`], this.#snip, 1);
// Write the analysis data to the storage.
// Write the analysis data to the storage.
(this[`analysis`]) ? secretariat.write([`sites`, this.URL, `analysis`], this.analysis, 1): false;
};
@ -63,21 +63,21 @@ export default class product {
if (this[`analysis`]) {return(this.analysis)}
else if (this.status ? (!this.status.update) : false) {this.analysis = await secretariat.read([`sites`, this.URL, `analysis`]);}
if ((this.analysis && this.analysis != null && this.analysis != undefined) ? !((typeof this.analysis).includes(`obj`) && !Array.isArray(this.analysis)) : true) {
// Analyze the data.
// Analyze the data.
const gemini = (await import(chrome.runtime.getURL("scripts/AI/gemini.js"))).default;
let analyzer = new gemini (await secretariat.read([`settings`,`analysis`,`api`,`key`]), `gemini-pro`);
// Analyze the data.
// Analyze the data.
let PROMPT = [];
// Add the prompt.
// Add the prompt.
PROMPT.push({"text": ((new texts(`AI_message_prompt`)).localized).concat(JSON.stringify(this.details))});
// Run the analysis.
// Run the analysis.
await analyzer.generate(PROMPT);
if (analyzer.candidate) {
// Remove all markdown formatting.
// Remove all markdown formatting.
this.analysis = JSON.parse(analyzer.candidate.replace(/(```json|```|`)/g, ''));
};
};