Fix license compliance and fix things up, add reverse proxy, fix some security flaws with HttpUtils
Some checks failed
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-arm64:latest, aarch64-linux-gnu, arm64) (push) Successful in 2m37s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-arm:latest, arm-linux-gnueabihf, arm7) (push) Successful in 2m37s
Build and Deploy on Tag / 🔨 Build for PowerPC (push) Successful in 2m58s
Build and Deploy on Tag / 🔨 Build win32 and update the tap 🍺 (push) Failing after 3m36s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-riscv64:latest, riscv64-linux-gnu, riscv64) (push) Successful in 2m19s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-x64:latest, x86_64-linux-gnu, amd64) (push) Successful in 2m21s
Build and Deploy on Tag / 🔨 Build for everything else (git.tesses.org/tesses50/linux-x86:latest, i386-linux-gnu, 386) (push) Successful in 2m6s

This commit is contained in:
2026-08-31 20:57:18 -05:00
parent 313e75b14c
commit 3bce736834
41 changed files with 2227 additions and 384 deletions

View File

@@ -24,13 +24,47 @@
#include "VFSFix.hpp"
namespace Tesses::Framework::Filesystem::Helpers {
/** @brief Read all of the text from a file
* @param vfs the VFS you want to use
* @param path the path to the file in the VFS
* @param text the file's contents
*/
void ReadAllText(std::shared_ptr<VFS> vfs, VFSPath path, std::string &text);
/**
* @brief Read all of the lines from a file
*
* @param vfs the VFS you want to use
* @param path the path to the file in the VFS
* @param lines the file's lines
*/
void ReadAllLines(std::shared_ptr<VFS> vfs, VFSPath path,
std::vector<std::string> &lines);
/**
* @brief Read all of the bytes from a file
*
* @param vfs the VFS you want to use
* @param path the path to the file in the VFS
* @param array the file's contents
*/
void ReadAllBytes(std::shared_ptr<VFS> vfs, VFSPath path,
std::vector<uint8_t> &array);
/**
* @brief Read all of the text from a file
*
* @param vfs the VFS you want to use
* @param path the path to the file in the VFS
* @return std::string the file's contents
*/
std::string ReadAllText(std::shared_ptr<VFS> vfs, VFSPath path);
/**
* @brief Read all of the lines from a file
*
* @param vfs the VFS you want to use
* @param path the path to the file in the VFS
* @return std::vector<std::string> the file's lines
*/
std::vector<std::string> ReadAllLines(std::shared_ptr<VFS> vfs, VFSPath path);
std::vector<uint8_t> ReadAllBytes(std::shared_ptr<VFS> vfs, VFSPath path);
void WriteAllText(std::shared_ptr<VFS> vfs, VFSPath path,
const std::string &text);