2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2020-04-19 19:57:05 +02:00
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2020-05-26 14:52:44 +03:00
|
|
|
#include <AK/LexicalPath.h>
|
2020-04-19 19:57:05 +02:00
|
|
|
#include <AK/String.h>
|
|
|
|
#include <AK/StringBuilder.h>
|
|
|
|
#include <LibCore/StandardPaths.h>
|
2019-05-28 11:53:16 +02:00
|
|
|
#include <pwd.h>
|
2019-05-25 16:58:22 -07:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2020-04-19 19:57:05 +02:00
|
|
|
namespace Core {
|
|
|
|
|
|
|
|
String StandardPaths::home_directory()
|
2019-05-26 10:14:03 -07:00
|
|
|
{
|
|
|
|
if (auto* home_env = getenv("HOME"))
|
2020-05-26 14:52:44 +03:00
|
|
|
return LexicalPath::canonicalized_path(home_env);
|
2019-05-26 10:14:03 -07:00
|
|
|
|
2019-08-03 08:32:07 +02:00
|
|
|
auto* pwd = getpwuid(getuid());
|
|
|
|
String path = pwd ? pwd->pw_dir : "/";
|
|
|
|
endpwent();
|
2020-05-26 14:52:44 +03:00
|
|
|
return LexicalPath::canonicalized_path(path);
|
2020-04-19 19:57:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
String StandardPaths::desktop_directory()
|
|
|
|
{
|
|
|
|
StringBuilder builder;
|
|
|
|
builder.append(home_directory());
|
2022-07-11 17:32:29 +00:00
|
|
|
builder.append("/Desktop"sv);
|
2020-05-26 14:52:44 +03:00
|
|
|
return LexicalPath::canonicalized_path(builder.to_string());
|
2020-04-19 19:57:05 +02:00
|
|
|
}
|
|
|
|
|
2020-05-05 23:56:57 +02:00
|
|
|
String StandardPaths::downloads_directory()
|
|
|
|
{
|
|
|
|
StringBuilder builder;
|
|
|
|
builder.append(home_directory());
|
2022-07-11 17:32:29 +00:00
|
|
|
builder.append("/Downloads"sv);
|
2020-05-26 14:52:44 +03:00
|
|
|
return LexicalPath::canonicalized_path(builder.to_string());
|
2020-05-05 23:56:57 +02:00
|
|
|
}
|
|
|
|
|
2020-08-05 17:18:59 +02:00
|
|
|
String StandardPaths::config_directory()
|
|
|
|
{
|
|
|
|
StringBuilder builder;
|
|
|
|
builder.append(home_directory());
|
2022-07-11 17:32:29 +00:00
|
|
|
builder.append("/.config"sv);
|
2020-08-05 17:18:59 +02:00
|
|
|
return LexicalPath::canonicalized_path(builder.to_string());
|
|
|
|
}
|
|
|
|
|
2020-04-19 19:57:05 +02:00
|
|
|
String StandardPaths::tempfile_directory()
|
|
|
|
{
|
|
|
|
return "/tmp";
|
|
|
|
}
|
|
|
|
|
2019-05-25 16:58:22 -07:00
|
|
|
}
|