Make username lookup case-insensitive

finger [email protected] (or any mixed-case name) failed because the plan
path was built from the raw username while plan files are lower-case on
disk. Lower-case the requested name before resolving the plan path; the
original spelling is still echoed back when no plan file exists. Add a mock
test asserting Pete -> .../pete.
This commit is contained in:
waffle2k
2026-06-15 15:47:55 -07:00
parent 84fc383137
commit 268ededc19
2 changed files with 26 additions and 1 deletions
+11 -1
View File
@@ -1,4 +1,6 @@
#include "handler.hpp"
#include <algorithm>
#include <cctype>
#include <filesystem>
#include <fstream>
#include <string_view>
@@ -65,8 +67,16 @@ std::string process(const std::string &username, const IFilesystemWrapper &fs,
return std::string("InvalidInput: ") + e.what() + std::string("\r\n");
}
// Plan-file lookup is case-insensitive: normalise the requested name to
// lower-case so e.g. "Pete" resolves the on-disk "pete" plan. Plan filenames
// are always lower-case; the original spelling is still echoed back below
// when no plan exists.
std::string lookup = username;
std::transform(lookup.begin(), lookup.end(), lookup.begin(),
[](unsigned char c) { return std::tolower(c); });
// Attempt to open the plan file (if any) and return the contents as a string
std::filesystem::path planPath = basepath / username;
std::filesystem::path planPath = basepath / lookup;
// Check if the plan file exists using the filesystem wrapper
if (!fs.exists(planPath)) {