2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-12-31 12:59:14 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/platform_util.h"
|
2013-12-31 12:59:14 +00:00
|
|
|
|
2021-09-01 01:04:28 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
|
2013-12-31 12:59:14 +00:00
|
|
|
#include <stdio.h>
|
2024-01-10 22:23:35 +00:00
|
|
|
#include <optional>
|
2021-09-01 01:04:28 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2013-12-31 12:59:14 +00:00
|
|
|
|
2016-10-21 00:08:05 +00:00
|
|
|
#include "base/cancelable_callback.h"
|
2021-09-01 01:04:28 +00:00
|
|
|
#include "base/containers/contains.h"
|
2017-03-29 07:21:38 +00:00
|
|
|
#include "base/environment.h"
|
2015-01-10 01:45:50 +00:00
|
|
|
#include "base/files/file_util.h"
|
2022-02-10 02:58:52 +00:00
|
|
|
#include "base/logging.h"
|
2023-05-11 20:07:39 +00:00
|
|
|
#include "base/memory/raw_ptr.h"
|
2017-03-29 07:21:38 +00:00
|
|
|
#include "base/nix/xdg_util.h"
|
2020-08-24 20:54:50 +00:00
|
|
|
#include "base/no_destructor.h"
|
2021-09-01 01:04:28 +00:00
|
|
|
#include "base/posix/eintr_wrapper.h"
|
2013-12-31 12:59:14 +00:00
|
|
|
#include "base/process/kill.h"
|
|
|
|
#include "base/process/launch.h"
|
2023-11-20 00:00:56 +00:00
|
|
|
#include "base/strings/escape.h"
|
2022-07-11 18:26:18 +00:00
|
|
|
#include "base/strings/string_util.h"
|
2020-08-26 16:34:29 +00:00
|
|
|
#include "base/threading/thread_restrictions.h"
|
2020-08-24 20:54:50 +00:00
|
|
|
#include "components/dbus/thread_linux/dbus_thread_linux.h"
|
|
|
|
#include "content/public/browser/browser_thread.h"
|
|
|
|
#include "dbus/bus.h"
|
|
|
|
#include "dbus/message.h"
|
|
|
|
#include "dbus/object_proxy.h"
|
2020-09-02 17:32:33 +00:00
|
|
|
#include "shell/common/platform_util_internal.h"
|
2022-04-18 04:24:32 +00:00
|
|
|
#include "ui/gtk/gtk_util.h" // nogncheck
|
2013-12-31 12:59:14 +00:00
|
|
|
#include "url/gurl.h"
|
|
|
|
|
2016-09-11 22:05:24 +00:00
|
|
|
#define ELECTRON_TRASH "ELECTRON_TRASH"
|
|
|
|
|
2020-08-24 20:54:50 +00:00
|
|
|
namespace platform_util {
|
|
|
|
void OpenFolder(const base::FilePath& full_path);
|
|
|
|
}
|
|
|
|
|
2013-12-31 12:59:14 +00:00
|
|
|
namespace {
|
|
|
|
|
2021-09-01 01:04:28 +00:00
|
|
|
const char kMethodListActivatableNames[] = "ListActivatableNames";
|
|
|
|
const char kMethodNameHasOwner[] = "NameHasOwner";
|
|
|
|
|
2020-08-24 20:54:50 +00:00
|
|
|
const char kFreedesktopFileManagerName[] = "org.freedesktop.FileManager1";
|
|
|
|
const char kFreedesktopFileManagerPath[] = "/org/freedesktop/FileManager1";
|
|
|
|
|
|
|
|
const char kMethodShowItems[] = "ShowItems";
|
|
|
|
|
2021-09-01 01:04:28 +00:00
|
|
|
const char kFreedesktopPortalName[] = "org.freedesktop.portal.Desktop";
|
|
|
|
const char kFreedesktopPortalPath[] = "/org/freedesktop/portal/desktop";
|
|
|
|
const char kFreedesktopPortalOpenURI[] = "org.freedesktop.portal.OpenURI";
|
|
|
|
|
|
|
|
const char kMethodOpenDirectory[] = "OpenDirectory";
|
|
|
|
|
2020-08-24 20:54:50 +00:00
|
|
|
class ShowItemHelper {
|
|
|
|
public:
|
|
|
|
static ShowItemHelper& GetInstance() {
|
|
|
|
static base::NoDestructor<ShowItemHelper> instance;
|
|
|
|
return *instance;
|
|
|
|
}
|
|
|
|
|
2023-04-26 14:09:54 +00:00
|
|
|
ShowItemHelper() = default;
|
2020-08-24 20:54:50 +00:00
|
|
|
|
|
|
|
ShowItemHelper(const ShowItemHelper&) = delete;
|
|
|
|
ShowItemHelper& operator=(const ShowItemHelper&) = delete;
|
|
|
|
|
|
|
|
void ShowItemInFolder(const base::FilePath& full_path) {
|
|
|
|
if (!bus_) {
|
|
|
|
// Sets up the D-Bus connection.
|
|
|
|
dbus::Bus::Options bus_options;
|
|
|
|
bus_options.bus_type = dbus::Bus::SESSION;
|
|
|
|
bus_options.connection_type = dbus::Bus::PRIVATE;
|
|
|
|
bus_options.dbus_task_runner = dbus_thread_linux::GetTaskRunner();
|
|
|
|
bus_ = base::MakeRefCounted<dbus::Bus>(bus_options);
|
|
|
|
}
|
|
|
|
|
2021-09-01 01:04:28 +00:00
|
|
|
if (!dbus_proxy_) {
|
|
|
|
dbus_proxy_ = bus_->GetObjectProxy(DBUS_SERVICE_DBUS,
|
|
|
|
dbus::ObjectPath(DBUS_PATH_DBUS));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prefer_filemanager_interface_.has_value()) {
|
|
|
|
if (prefer_filemanager_interface_.value()) {
|
|
|
|
ShowItemUsingFileManager(full_path);
|
|
|
|
} else {
|
|
|
|
ShowItemUsingFreedesktopPortal(full_path);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
CheckFileManagerRunning(full_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void CheckFileManagerRunning(const base::FilePath& full_path) {
|
|
|
|
dbus::MethodCall method_call(DBUS_INTERFACE_DBUS, kMethodNameHasOwner);
|
|
|
|
dbus::MessageWriter writer(&method_call);
|
|
|
|
writer.AppendString(kFreedesktopFileManagerName);
|
|
|
|
|
|
|
|
dbus_proxy_->CallMethod(
|
|
|
|
&method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
|
|
|
|
base::BindOnce(&ShowItemHelper::CheckFileManagerRunningResponse,
|
|
|
|
base::Unretained(this), full_path));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckFileManagerRunningResponse(const base::FilePath& full_path,
|
|
|
|
dbus::Response* response) {
|
|
|
|
if (prefer_filemanager_interface_.has_value()) {
|
|
|
|
ShowItemInFolder(full_path);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_running = false;
|
|
|
|
|
|
|
|
if (!response) {
|
|
|
|
LOG(ERROR) << "Failed to call " << kMethodNameHasOwner;
|
|
|
|
} else {
|
|
|
|
dbus::MessageReader reader(response);
|
|
|
|
bool owned = false;
|
|
|
|
|
|
|
|
if (!reader.PopBool(&owned)) {
|
2022-02-21 09:27:45 +00:00
|
|
|
LOG(ERROR) << "Failed to read " << kMethodNameHasOwner << " response";
|
2021-09-01 01:04:28 +00:00
|
|
|
} else if (owned) {
|
|
|
|
is_running = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_running) {
|
|
|
|
prefer_filemanager_interface_ = true;
|
|
|
|
ShowItemInFolder(full_path);
|
|
|
|
} else {
|
|
|
|
CheckFileManagerActivatable(full_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckFileManagerActivatable(const base::FilePath& full_path) {
|
|
|
|
dbus::MethodCall method_call(DBUS_INTERFACE_DBUS,
|
|
|
|
kMethodListActivatableNames);
|
|
|
|
dbus_proxy_->CallMethod(
|
|
|
|
&method_call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
|
|
|
|
base::BindOnce(&ShowItemHelper::CheckFileManagerActivatableResponse,
|
|
|
|
base::Unretained(this), full_path));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckFileManagerActivatableResponse(const base::FilePath& full_path,
|
|
|
|
dbus::Response* response) {
|
|
|
|
if (prefer_filemanager_interface_.has_value()) {
|
|
|
|
ShowItemInFolder(full_path);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is_activatable = false;
|
|
|
|
|
|
|
|
if (!response) {
|
|
|
|
LOG(ERROR) << "Failed to call " << kMethodListActivatableNames;
|
|
|
|
} else {
|
|
|
|
dbus::MessageReader reader(response);
|
|
|
|
std::vector<std::string> names;
|
|
|
|
if (!reader.PopArrayOfStrings(&names)) {
|
|
|
|
LOG(ERROR) << "Failed to read " << kMethodListActivatableNames
|
|
|
|
<< " response";
|
|
|
|
} else if (base::Contains(names, kFreedesktopFileManagerName)) {
|
|
|
|
is_activatable = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
prefer_filemanager_interface_ = is_activatable;
|
|
|
|
ShowItemInFolder(full_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShowItemUsingFreedesktopPortal(const base::FilePath& full_path) {
|
|
|
|
if (!object_proxy_) {
|
|
|
|
object_proxy_ = bus_->GetObjectProxy(
|
|
|
|
kFreedesktopPortalName, dbus::ObjectPath(kFreedesktopPortalPath));
|
|
|
|
}
|
|
|
|
|
|
|
|
base::ScopedFD fd(
|
|
|
|
HANDLE_EINTR(open(full_path.value().c_str(), O_RDONLY | O_CLOEXEC)));
|
|
|
|
if (!fd.is_valid()) {
|
|
|
|
LOG(ERROR) << "Failed to open " << full_path << " for URI portal";
|
|
|
|
|
|
|
|
// If the call fails, at least open the parent folder.
|
|
|
|
platform_util::OpenFolder(full_path.DirName());
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dbus::MethodCall open_directory_call(kFreedesktopPortalOpenURI,
|
|
|
|
kMethodOpenDirectory);
|
|
|
|
dbus::MessageWriter writer(&open_directory_call);
|
|
|
|
|
|
|
|
writer.AppendString("");
|
|
|
|
|
|
|
|
// Note that AppendFileDescriptor() duplicates the fd, so we shouldn't
|
|
|
|
// release ownership of it here.
|
|
|
|
writer.AppendFileDescriptor(fd.get());
|
|
|
|
|
|
|
|
dbus::MessageWriter options_writer(nullptr);
|
|
|
|
writer.OpenArray("{sv}", &options_writer);
|
|
|
|
writer.CloseContainer(&options_writer);
|
|
|
|
|
|
|
|
ShowItemUsingBusCall(&open_directory_call, full_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShowItemUsingFileManager(const base::FilePath& full_path) {
|
|
|
|
if (!object_proxy_) {
|
|
|
|
object_proxy_ =
|
2020-08-24 20:54:50 +00:00
|
|
|
bus_->GetObjectProxy(kFreedesktopFileManagerName,
|
|
|
|
dbus::ObjectPath(kFreedesktopFileManagerPath));
|
|
|
|
}
|
|
|
|
|
|
|
|
dbus::MethodCall show_items_call(kFreedesktopFileManagerName,
|
|
|
|
kMethodShowItems);
|
|
|
|
dbus::MessageWriter writer(&show_items_call);
|
|
|
|
|
|
|
|
writer.AppendArrayOfStrings(
|
2023-11-20 00:00:56 +00:00
|
|
|
{"file://" + base::EscapePath(
|
|
|
|
full_path.value())}); // List of file(s) to highlight.
|
|
|
|
writer.AppendString({}); // startup-id
|
2020-08-24 20:54:50 +00:00
|
|
|
|
2021-09-01 01:04:28 +00:00
|
|
|
ShowItemUsingBusCall(&show_items_call, full_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShowItemUsingBusCall(dbus::MethodCall* call,
|
|
|
|
const base::FilePath& full_path) {
|
|
|
|
object_proxy_->CallMethod(
|
|
|
|
call, dbus::ObjectProxy::TIMEOUT_USE_DEFAULT,
|
2020-08-24 20:54:50 +00:00
|
|
|
base::BindOnce(&ShowItemHelper::ShowItemInFolderResponse,
|
2021-09-01 01:04:28 +00:00
|
|
|
base::Unretained(this), full_path, call->GetMember()));
|
2020-08-24 20:54:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ShowItemInFolderResponse(const base::FilePath& full_path,
|
2021-09-01 01:04:28 +00:00
|
|
|
const std::string& method,
|
2020-08-24 20:54:50 +00:00
|
|
|
dbus::Response* response) {
|
|
|
|
if (response)
|
|
|
|
return;
|
|
|
|
|
2021-09-01 01:04:28 +00:00
|
|
|
LOG(ERROR) << "Error calling " << method;
|
|
|
|
// If the bus call fails, at least open the parent folder.
|
2020-08-24 20:54:50 +00:00
|
|
|
platform_util::OpenFolder(full_path.DirName());
|
|
|
|
}
|
|
|
|
|
|
|
|
scoped_refptr<dbus::Bus> bus_;
|
2023-05-11 20:07:39 +00:00
|
|
|
raw_ptr<dbus::ObjectProxy> dbus_proxy_ = nullptr;
|
|
|
|
raw_ptr<dbus::ObjectProxy> object_proxy_ = nullptr;
|
2021-09-01 01:04:28 +00:00
|
|
|
|
2024-01-10 22:23:35 +00:00
|
|
|
std::optional<bool> prefer_filemanager_interface_;
|
2020-08-24 20:54:50 +00:00
|
|
|
};
|
|
|
|
|
2019-11-08 07:08:43 +00:00
|
|
|
// Descriptions pulled from https://linux.die.net/man/1/xdg-open
|
|
|
|
std::string GetErrorDescription(int error_code) {
|
|
|
|
switch (error_code) {
|
|
|
|
case 1:
|
|
|
|
return "Error in command line syntax";
|
|
|
|
case 2:
|
|
|
|
return "The item does not exist";
|
|
|
|
case 3:
|
|
|
|
return "A required tool could not be found";
|
|
|
|
case 4:
|
|
|
|
return "The action failed";
|
|
|
|
default:
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool XDGUtil(const std::vector<std::string>& argv,
|
2020-08-24 20:54:50 +00:00
|
|
|
const base::FilePath& working_directory,
|
2019-11-08 07:08:43 +00:00
|
|
|
const bool wait_for_exit,
|
|
|
|
platform_util::OpenCallback callback) {
|
2013-12-31 12:59:14 +00:00
|
|
|
base::LaunchOptions options;
|
2020-08-24 20:54:50 +00:00
|
|
|
options.current_directory = working_directory;
|
2014-09-05 13:04:27 +00:00
|
|
|
options.allow_new_privs = true;
|
2013-12-31 12:59:14 +00:00
|
|
|
// xdg-open can fall back on mailcap which eventually might plumb through
|
|
|
|
// to a command that needs a terminal. Set the environment variable telling
|
|
|
|
// it that we definitely don't have a terminal available and that it should
|
|
|
|
// bring up a new terminal if necessary. See "man mailcap".
|
2019-03-22 04:36:39 +00:00
|
|
|
options.environment["MM_NOTTTY"] = "1";
|
2013-12-31 12:59:14 +00:00
|
|
|
|
2015-03-29 12:32:23 +00:00
|
|
|
base::Process process = base::LaunchProcess(argv, options);
|
|
|
|
if (!process.IsValid())
|
|
|
|
return false;
|
|
|
|
|
2018-07-22 13:26:57 +00:00
|
|
|
if (wait_for_exit) {
|
2020-08-26 16:34:29 +00:00
|
|
|
base::ScopedAllowBaseSyncPrimitivesForTesting
|
|
|
|
allow_sync; // required by WaitForExit
|
2018-07-22 13:26:57 +00:00
|
|
|
int exit_code = -1;
|
2019-11-08 07:08:43 +00:00
|
|
|
bool success = process.WaitForExit(&exit_code);
|
|
|
|
if (!callback.is_null())
|
|
|
|
std::move(callback).Run(GetErrorDescription(exit_code));
|
|
|
|
return success ? (exit_code == 0) : false;
|
2016-04-08 07:35:35 +00:00
|
|
|
}
|
2016-04-07 16:04:15 +00:00
|
|
|
|
2018-07-22 13:26:57 +00:00
|
|
|
base::EnsureProcessGetsReaped(std::move(process));
|
|
|
|
return true;
|
2013-12-31 12:59:14 +00:00
|
|
|
}
|
|
|
|
|
2020-08-24 20:54:50 +00:00
|
|
|
bool XDGOpen(const base::FilePath& working_directory,
|
|
|
|
const std::string& path,
|
2019-11-08 07:08:43 +00:00
|
|
|
const bool wait_for_exit,
|
|
|
|
platform_util::OpenCallback callback) {
|
2020-08-24 20:54:50 +00:00
|
|
|
return XDGUtil({"xdg-open", path}, working_directory, wait_for_exit,
|
|
|
|
std::move(callback));
|
2013-12-31 12:59:14 +00:00
|
|
|
}
|
|
|
|
|
2016-04-08 07:32:45 +00:00
|
|
|
bool XDGEmail(const std::string& email, const bool wait_for_exit) {
|
2020-08-24 20:54:50 +00:00
|
|
|
return XDGUtil({"xdg-email", email}, base::FilePath(), wait_for_exit,
|
2019-11-08 07:08:43 +00:00
|
|
|
platform_util::OpenCallback());
|
2013-12-31 12:59:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace platform_util {
|
|
|
|
|
2019-02-27 12:58:23 +00:00
|
|
|
void ShowItemInFolder(const base::FilePath& full_path) {
|
2020-08-24 20:54:50 +00:00
|
|
|
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
|
|
|
ShowItemHelper::GetInstance().ShowItemInFolder(full_path);
|
2013-12-31 12:59:14 +00:00
|
|
|
}
|
|
|
|
|
2019-11-08 07:08:43 +00:00
|
|
|
void OpenPath(const base::FilePath& full_path, OpenCallback callback) {
|
|
|
|
// This is async, so we don't care about the return value.
|
2020-08-24 20:54:50 +00:00
|
|
|
XDGOpen(full_path.DirName(), full_path.value(), true, std::move(callback));
|
|
|
|
}
|
|
|
|
|
|
|
|
void OpenFolder(const base::FilePath& full_path) {
|
|
|
|
if (!base::DirectoryExists(full_path))
|
|
|
|
return;
|
|
|
|
|
|
|
|
XDGOpen(full_path.DirName(), ".", false, platform_util::OpenCallback());
|
2013-12-31 12:59:14 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 20:53:45 +00:00
|
|
|
void OpenExternal(const GURL& url,
|
|
|
|
const OpenExternalOptions& options,
|
2019-11-08 07:08:43 +00:00
|
|
|
OpenCallback callback) {
|
2016-04-07 16:04:15 +00:00
|
|
|
// Don't wait for exit, since we don't want to wait for the browser/email
|
|
|
|
// client window to close before returning
|
2019-11-08 07:08:43 +00:00
|
|
|
if (url.SchemeIs("mailto")) {
|
|
|
|
bool success = XDGEmail(url.spec(), false);
|
|
|
|
std::move(callback).Run(success ? "" : "Failed to open path");
|
|
|
|
} else {
|
2020-08-24 20:54:50 +00:00
|
|
|
bool success = XDGOpen(base::FilePath(), url.spec(), false,
|
|
|
|
platform_util::OpenCallback());
|
2019-11-08 07:08:43 +00:00
|
|
|
std::move(callback).Run(success ? "" : "Failed to open path");
|
|
|
|
}
|
2016-10-13 20:28:11 +00:00
|
|
|
}
|
|
|
|
|
2019-08-13 19:31:53 +00:00
|
|
|
bool MoveItemToTrash(const base::FilePath& full_path, bool delete_on_fail) {
|
2021-06-04 00:23:06 +00:00
|
|
|
auto env = base::Environment::Create();
|
2019-07-23 17:25:58 +00:00
|
|
|
|
|
|
|
// find the trash method
|
2016-09-11 22:05:24 +00:00
|
|
|
std::string trash;
|
2019-07-23 17:25:58 +00:00
|
|
|
if (!env->GetVar(ELECTRON_TRASH, &trash)) {
|
2017-01-28 08:54:26 +00:00
|
|
|
// Determine desktop environment and set accordingly.
|
2019-07-23 17:25:58 +00:00
|
|
|
const auto desktop_env(base::nix::GetDesktopEnvironment(env.get()));
|
2017-03-29 07:21:38 +00:00
|
|
|
if (desktop_env == base::nix::DESKTOP_ENVIRONMENT_KDE4 ||
|
|
|
|
desktop_env == base::nix::DESKTOP_ENVIRONMENT_KDE5) {
|
2017-01-28 08:54:26 +00:00
|
|
|
trash = "kioclient5";
|
2017-03-29 07:21:38 +00:00
|
|
|
} else if (desktop_env == base::nix::DESKTOP_ENVIRONMENT_KDE3) {
|
2017-01-28 08:54:26 +00:00
|
|
|
trash = "kioclient";
|
|
|
|
}
|
2016-09-11 22:05:24 +00:00
|
|
|
}
|
2017-03-29 07:21:38 +00:00
|
|
|
|
2019-07-23 17:25:58 +00:00
|
|
|
// build the invocation
|
2016-09-11 22:05:24 +00:00
|
|
|
std::vector<std::string> argv;
|
2019-07-23 17:25:58 +00:00
|
|
|
const auto& filename = full_path.value();
|
|
|
|
if (trash == "kioclient5" || trash == "kioclient") {
|
|
|
|
argv = {trash, "move", filename, "trash:/"};
|
|
|
|
} else if (trash == "trash-cli") {
|
|
|
|
argv = {"trash-put", filename};
|
|
|
|
} else if (trash == "gvfs-trash") {
|
|
|
|
argv = {"gvfs-trash", filename}; // deprecated, but still exists
|
2016-09-11 22:05:24 +00:00
|
|
|
} else {
|
2019-07-23 17:25:58 +00:00
|
|
|
argv = {"gio", "trash", filename};
|
2016-09-11 22:05:24 +00:00
|
|
|
}
|
2019-07-23 17:25:58 +00:00
|
|
|
|
2020-08-24 20:54:50 +00:00
|
|
|
return XDGUtil(argv, base::FilePath(), true, platform_util::OpenCallback());
|
2013-12-31 12:59:14 +00:00
|
|
|
}
|
|
|
|
|
2020-09-02 17:32:33 +00:00
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
bool PlatformTrashItem(const base::FilePath& full_path, std::string* error) {
|
|
|
|
if (!MoveItemToTrash(full_path, false)) {
|
|
|
|
// TODO(nornagon): at least include the exit code?
|
|
|
|
*error = "Failed to move item to trash";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
|
2013-12-31 12:59:14 +00:00
|
|
|
void Beep() {
|
|
|
|
// echo '\a' > /dev/console
|
2019-01-10 21:43:07 +00:00
|
|
|
FILE* fp = fopen("/dev/console", "a");
|
|
|
|
if (fp == nullptr) {
|
|
|
|
fp = fopen("/dev/tty", "a");
|
|
|
|
}
|
|
|
|
if (fp != nullptr) {
|
|
|
|
fprintf(fp, "\a");
|
|
|
|
fclose(fp);
|
|
|
|
}
|
2013-12-31 12:59:14 +00:00
|
|
|
}
|
|
|
|
|
2018-10-19 18:51:43 +00:00
|
|
|
bool GetDesktopName(std::string* setme) {
|
2019-10-28 22:12:35 +00:00
|
|
|
return base::Environment::Create()->GetVar("CHROME_DESKTOP", setme);
|
2018-10-19 18:51:43 +00:00
|
|
|
}
|
|
|
|
|
2022-07-11 18:26:18 +00:00
|
|
|
std::string GetXdgAppId() {
|
|
|
|
std::string desktop_file_name;
|
|
|
|
if (GetDesktopName(&desktop_file_name)) {
|
|
|
|
const std::string kDesktopExtension{".desktop"};
|
|
|
|
if (base::EndsWith(desktop_file_name, kDesktopExtension,
|
|
|
|
base::CompareCase::INSENSITIVE_ASCII)) {
|
|
|
|
desktop_file_name.resize(desktop_file_name.size() -
|
|
|
|
kDesktopExtension.size());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return desktop_file_name;
|
|
|
|
}
|
|
|
|
|
2013-12-31 12:59:14 +00:00
|
|
|
} // namespace platform_util
|