This repository has been archived on 2021-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
backend/src/files.cpp

86 lines
2.1 KiB
C++
Raw Normal View History

/* This file is part of FediBlock-backend.
* Copyright © 2020 tastytea <tastytea@tastytea.de>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "files.hpp"
#include "fs-compat.hpp"
#include <cstdint>
#include <cstdlib>
#include <stdexcept>
#include <string>
2020-07-01 20:51:35 +02:00
namespace FediBlock::files
{
2020-07-01 10:48:38 +02:00
using std::getenv;
using std::runtime_error;
using std::string;
using std::uintmax_t;
string _tmpdir;
fs::path get_tmpdir()
{
if (_tmpdir.empty())
{
_tmpdir = fs::temp_directory_path() / "fediblock-backend-XXXXXX";
if (mkdtemp(&_tmpdir[0]) == nullptr) // mkdtemp() modifies _tmpdir.
{
throw runtime_error{"Could not create temporary directory: "
+ _tmpdir};
}
}
return _tmpdir;
}
void remove_tmpdir()
{
if (fs::remove_all(get_tmpdir()) == static_cast<uintmax_t>(-1))
{
throw runtime_error{"Couldn't remove temporary directory: "
+ get_tmpdir().string()};
}
}
2020-07-01 10:48:38 +02:00
fs::path get_datadir()
{
char *env{getenv("XDG_DATA_HOME")};
if (env != nullptr)
{
const auto path{fs::path(env) / "fediblock-backend"};
fs::create_directories(path);
return path;
}
env = getenv("HOME");
if (env != nullptr)
{
auto path{fs::path(env)};
#if defined(__linux__)
path /= ".local/share/fediblock-backend";
#elif defined(__unix__)
path /= ".fediblock-backend";
#endif
fs::create_directories(path);
return path;
}
throw runtime_error{"Could not find data dir"};
}
2020-07-01 20:51:35 +02:00
} // namespace FediBlock::files