#include "singletons/Paths.hpp" #include "singletons/Settings.hpp" #include #include #include #include #include #include "util/CombinePath.hpp" namespace chatterino { Paths *Paths::instance = nullptr; Paths::Paths() { this->instance = this; this->initAppFilePathHash(); this->initCheckPortable(); this->initAppDataDirectory(); this->initSubDirectories(); } bool Paths::createFolder(const QString &folderPath) { return QDir().mkpath(folderPath); } bool Paths::isPortable() { return this->portable_.get(); } QString Paths::cacheDirectory() { static const auto path = [] { QStringSetting cachePathSetting("/cache/path"); cachePathSetting.connect([](const auto &newPath, auto) { QDir().mkpath(newPath); // }); return cachePathSetting; }().getValue(); if (path.isEmpty()) { return this->cacheDirectory_; } return path; } void Paths::initAppFilePathHash() { this->applicationFilePathHash = QCryptographicHash::hash( QCoreApplication::applicationFilePath().toUtf8(), QCryptographicHash::Sha224) .toBase64() .mid(0, 32) .replace("+", "-") .replace("/", "x"); } void Paths::initCheckPortable() { this->portable_ = QFileInfo::exists( combinePath(QCoreApplication::applicationDirPath(), "portable")); } void Paths::initAppDataDirectory() { assert(this->portable_.is_initialized()); // Root path = %APPDATA%/Chatterino or the folder that the executable // resides in this->rootAppDataDirectory = [&]() -> QString { // portable if (this->isPortable()) { return QCoreApplication::applicationDirPath(); } // permanent installation QString path = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation); if (path.isEmpty()) { throw std::runtime_error( "Error finding writable location for settings"); } // create directory Chatterino2 instead of chatterino on windows because the // ladder one is takes by chatterino 1 already #ifdef Q_OS_WIN path.replace("chatterino", "Chatterino"); path += "2"; #endif return path; }(); } void Paths::initSubDirectories() { // required the app data directory to be set first assert(!this->rootAppDataDirectory.isEmpty()); // create settings subdirectories and validate that they are created // properly auto makePath = [&](const std::string &name) -> QString { auto path = combinePath(this->rootAppDataDirectory, QString::fromStdString(name)); if (!QDir().mkpath(path)) { throw std::runtime_error( "Error creating appdata path %appdata%/chatterino/" + name); } return path; }; makePath(""); this->settingsDirectory = makePath("Settings"); this->cacheDirectory_ = makePath("Cache"); this->messageLogDirectory = makePath("Logs"); this->miscDirectory = makePath("Misc"); this->twitchProfileAvatars = makePath("ProfileAvatars"); QDir().mkdir(this->twitchProfileAvatars + "/twitch"); } Paths *getPaths() { return Paths::instance; } } // namespace chatterino