mirror of
https://github.com/velocitatem/garlic.git
synced 2026-05-31 16:53:37 +00:00
67 lines
2.3 KiB
JavaScript
67 lines
2.3 KiB
JavaScript
|
|
class Garlic {
|
|
|
|
static clove(body) {
|
|
|
|
let bodyCopy = {...body};
|
|
if (body.props) {
|
|
if (body.props.children) {
|
|
// check if children is an array
|
|
if (Array.isArray(body.props.children)) {
|
|
let newList = []
|
|
for (let i = 0; i < body.props.children.length; i++) {
|
|
// if child is a string, convert it to base64
|
|
if (typeof body.props.children[i] === 'string') {
|
|
newList.push(this.encode(body.props.children[i]));
|
|
} else {
|
|
// if child is not a string, apply this function to it
|
|
newList.push(this.clove(body.props.children[i]));
|
|
}
|
|
}
|
|
bodyCopy = {...bodyCopy, props: {...bodyCopy.props, children: newList}};
|
|
} else {
|
|
// if child is a string, convert it to base64
|
|
if (typeof body.props.children === 'string') {
|
|
bodyCopy = {...body, props: {...body.props, children: this.encode(body.props.children)}};
|
|
} else {
|
|
bodyCopy = {...body, props: {...body.props, children: this.clove(body.props.children)}};
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return bodyCopy;
|
|
}
|
|
|
|
static addSalt(salt) {
|
|
// set a static variable to the salt
|
|
this.salt = "_yummy_" + salt;
|
|
document.salt = salt;
|
|
}
|
|
|
|
static encode(string) {
|
|
return btoa(string+(this.salt || ""));
|
|
}
|
|
static decodeBase64(root) {
|
|
for (let i = 0; i < root.childNodes.length; i++) {
|
|
const child = root.childNodes[i];
|
|
if (child.childNodes.length === 1 && child.childNodes[0].nodeType === 3) {
|
|
const decoded = atob(child.childNodes[0].nodeValue).split("_yummy_")[0];
|
|
child.innerHTML = decoded;
|
|
console.log(child);
|
|
} else {
|
|
this.decodeBase64(child);
|
|
}
|
|
}
|
|
}
|
|
|
|
static peal(document) {
|
|
document.addEventListener("DOMContentLoaded", function(event) {
|
|
Garlic.decodeBase64(document.getElementById("root"));
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
|
|
module.exports = Garlic;
|