This commit is contained in:
Mars 2025-03-11 20:09:17 -04:00
parent c3b829b68f
commit 8d81b770a5
4 changed files with 30 additions and 44 deletions

View file

@ -31,7 +31,7 @@ fn Config::getInstance() -> Config {
try { try {
const fs::path configPath = GetConfigPath(); const fs::path configPath = GetConfigPath();
if (!fs::exists(configPath)) { if (!fs::exists(configPath)) {
DEBUG_LOG("Config file not found, using defaults"); WARN_LOG("Config file not found, using defaults");
return Config {}; return Config {};
} }

View file

@ -12,7 +12,7 @@
#include "src/util/macros.h" #include "src/util/macros.h"
#include "weather.h" #include "weather.h"
using Location = std::variant<std::string, Coords>; using Location = std::variant<string, Coords>;
struct General { struct General {
string name = []() -> string { string name = []() -> string {
@ -26,29 +26,17 @@ struct General {
if (const char* envUser = getenv("USER")) if (const char* envUser = getenv("USER"))
return envUser; return envUser;
#endif
return "User"; return "User";
#endif
}(); }();
static fn fromToml(const toml::table& tbl) -> General { static fn fromToml(const toml::table& tbl) -> General {
General gen; General gen;
if (auto name = tbl["name"].value<std::string>()) {
if (std::optional<string> name = tbl["name"].value<string>())
gen.name = *name; gen.name = *name;
} else {
#ifdef _WIN32
std::array<char, 256> username;
DWORD size = sizeof(username);
g.name = GetUserNameA(username.data(), &size) ? username.data() : "User";
#else
if (struct passwd* pwd = getpwuid(getuid()); pwd) {
gen.name = pwd->pw_name;
} else if (const char* envUser = getenv("USER")) {
gen.name = envUser;
} else {
gen.name = "User";
}
#endif
}
return gen; return gen;
} }
}; };
@ -64,22 +52,22 @@ struct NowPlaying {
}; };
struct Weather { struct Weather {
bool enabled = false; bool enabled = false;
bool show_town_name = false; bool show_town_name = false;
Location location; Location location;
std::string api_key; string api_key;
std::string units; string units;
static fn fromToml(const toml::table& tbl) -> Weather { static fn fromToml(const toml::table& tbl) -> Weather {
Weather weather; Weather weather;
weather.enabled = tbl["enabled"].value<bool>().value_or(false); weather.enabled = tbl["enabled"].value<bool>().value_or(false);
weather.show_town_name = tbl["show_town_name"].value<bool>().value_or(false); weather.show_town_name = tbl["show_town_name"].value<bool>().value_or(false);
weather.api_key = tbl["api_key"].value<std::string>().value_or(""); weather.api_key = tbl["api_key"].value<string>().value_or("");
weather.units = tbl["units"].value<std::string>().value_or("metric"); weather.units = tbl["units"].value<string>().value_or("metric");
if (auto location = tbl["location"]) { if (auto location = tbl["location"]) {
if (location.is_string()) { if (location.is_string()) {
weather.location = location.value<std::string>().value(); weather.location = location.value<string>().value();
} else if (location.is_table()) { } else if (location.is_table()) {
const auto* coord = location.as_table(); const auto* coord = location.as_table();
Coords coords; Coords coords;

View file

@ -4,7 +4,6 @@
#include <filesystem> #include <filesystem>
#include <fmt/core.h> #include <fmt/core.h>
#include <fstream> #include <fstream>
#include <nlohmann/json.hpp>
#include "weather.h" #include "weather.h"
@ -12,11 +11,10 @@
#include "src/util/macros.h" #include "src/util/macros.h"
namespace fs = std::filesystem; namespace fs = std::filesystem;
using namespace nlohmann;
using namespace std::string_literals; using namespace std::string_literals;
template <typename T> template <typename T>
using Result = std::expected<T, std::string>; using Result = std::expected<T, string>;
namespace { namespace {
constexpr glz::opts glaze_opts = { .error_on_unknown_keys = false }; constexpr glz::opts glaze_opts = { .error_on_unknown_keys = false };
@ -46,9 +44,9 @@ namespace {
DEBUG_LOG("Reading from cache file..."); DEBUG_LOG("Reading from cache file...");
try { try {
const std::string content((std::istreambuf_iterator<char>(ifs)), std::istreambuf_iterator<char>()); const string content((std::istreambuf_iterator<char>(ifs)), std::istreambuf_iterator<char>());
WeatherOutput result; WeatherOutput result;
glz::error_ctx errc = glz::read<glaze_opts>(result, content); glz::error_ctx errc = glz::read<glaze_opts>(result, content);
if (errc.ec != glz::error_code::none) if (errc.ec != glz::error_code::none)
return std::unexpected("JSON parse error: " + glz::format_error(errc, content)); return std::unexpected("JSON parse error: " + glz::format_error(errc, content));
@ -74,7 +72,7 @@ namespace {
if (!ofs.is_open()) if (!ofs.is_open())
return std::unexpected("Failed to open temp file: " + tempPath.string()); return std::unexpected("Failed to open temp file: " + tempPath.string());
std::string jsonStr; string jsonStr;
glz::error_ctx errc = glz::write_json(data, jsonStr); glz::error_ctx errc = glz::write_json(data, jsonStr);
if (errc.ec != glz::error_code::none) if (errc.ec != glz::error_code::none)
@ -97,16 +95,16 @@ namespace {
} catch (const std::exception& e) { return std::unexpected("File operation error: "s + e.what()); } } catch (const std::exception& e) { return std::unexpected("File operation error: "s + e.what()); }
} }
fn WriteCallback(void* contents, const size_t size, const size_t nmemb, std::string* str) -> size_t { fn WriteCallback(void* contents, const size_t size, const size_t nmemb, string* str) -> size_t {
const size_t totalSize = size * nmemb; const size_t totalSize = size * nmemb;
str->append(static_cast<char*>(contents), totalSize); str->append(static_cast<char*>(contents), totalSize);
return totalSize; return totalSize;
} }
fn MakeApiRequest(const std::string& url) -> const Result<WeatherOutput> { fn MakeApiRequest(const string& url) -> const Result<WeatherOutput> {
DEBUG_LOG("Making API request to URL: {}", url); DEBUG_LOG("Making API request to URL: {}", url);
CURL* curl = curl_easy_init(); CURL* curl = curl_easy_init();
std::string responseBuffer; string responseBuffer;
if (!curl) if (!curl)
return std::unexpected("Failed to initialize cURL"); return std::unexpected("Failed to initialize cURL");
@ -162,12 +160,12 @@ fn Weather::getWeatherInfo() const -> WeatherOutput {
return *result; return *result;
}; };
if (std::holds_alternative<std::string>(location)) { if (std::holds_alternative<string>(location)) {
const auto& city = std::get<std::string>(location); const auto& city = std::get<string>(location);
char* escaped = curl_easy_escape(nullptr, city.c_str(), static_cast<int>(city.length())); char* escaped = curl_easy_escape(nullptr, city.c_str(), static_cast<int>(city.length()));
DEBUG_LOG("Requesting city: {}", escaped); DEBUG_LOG("Requesting city: {}", escaped);
const std::string apiUrl = const string apiUrl =
fmt::format("https://api.openweathermap.org/data/2.5/weather?q={}&appid={}&units={}", escaped, api_key, units); fmt::format("https://api.openweathermap.org/data/2.5/weather?q={}&appid={}&units={}", escaped, api_key, units);
curl_free(escaped); curl_free(escaped);
@ -177,7 +175,7 @@ fn Weather::getWeatherInfo() const -> WeatherOutput {
const auto& [lat, lon] = std::get<Coords>(location); const auto& [lat, lon] = std::get<Coords>(location);
DEBUG_LOG("Requesting coordinates: lat={:.3f}, lon={:.3f}", lat, lon); DEBUG_LOG("Requesting coordinates: lat={:.3f}, lon={:.3f}", lat, lon);
const std::string apiUrl = fmt::format( const string apiUrl = fmt::format(
"https://api.openweathermap.org/data/2.5/weather?lat={:.3f}&lon={:.3f}&appid={}&units={}", lat, lon, api_key, units "https://api.openweathermap.org/data/2.5/weather?lat={:.3f}&lon={:.3f}&appid={}&units={}", lat, lon, api_key, units
); );

View file

@ -7,7 +7,7 @@
// NOLINTBEGIN(readability-identifier-naming) // NOLINTBEGIN(readability-identifier-naming)
struct Condition { struct Condition {
std::string description; string description;
struct glaze { struct glaze {
using T = Condition; using T = Condition;
@ -31,7 +31,7 @@ struct Coords {
struct WeatherOutput { struct WeatherOutput {
Main main; Main main;
std::string name; string name;
std::vector<Condition> weather; std::vector<Condition> weather;
usize dt; usize dt;