2014-07-08 10:24:21 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-01-10 06:05:23 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2014-07-08 10:24:21 +00:00
|
|
|
*/
|
2017-03-05 22:43:35 +00:00
|
|
|
#include "platform/linux/specific_linux.h"
|
2014-07-08 10:24:21 +00:00
|
|
|
|
2016-06-16 17:20:58 +00:00
|
|
|
#include "platform/linux/linux_libs.h"
|
2017-04-13 08:27:10 +00:00
|
|
|
#include "lang/lang_keys.h"
|
2014-07-08 10:24:21 +00:00
|
|
|
#include "mainwidget.h"
|
2017-02-25 18:17:50 +00:00
|
|
|
#include "mainwindow.h"
|
2019-01-05 11:08:02 +00:00
|
|
|
#include "platform/linux/linux_desktop_environment.h"
|
2017-02-28 14:05:30 +00:00
|
|
|
#include "platform/linux/file_utilities_linux.h"
|
2017-03-04 19:36:59 +00:00
|
|
|
#include "platform/platform_notifications_manager.h"
|
2017-03-04 10:23:56 +00:00
|
|
|
#include "storage/localstorage.h"
|
2017-12-11 14:45:29 +00:00
|
|
|
#include "core/crash_reports.h"
|
2018-08-30 07:14:36 +00:00
|
|
|
#include "core/update_checker.h"
|
2015-03-02 12:34:16 +00:00
|
|
|
|
2019-09-08 20:15:42 +00:00
|
|
|
#include <QtWidgets/QApplication>
|
|
|
|
#include <QtWidgets/QDesktopWidget>
|
|
|
|
#include <QtCore/QStandardPaths>
|
|
|
|
#include <QtCore/QProcess>
|
|
|
|
#include <QtCore/QVersionNumber>
|
2019-09-04 07:19:15 +00:00
|
|
|
|
2020-01-21 00:10:10 +00:00
|
|
|
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
|
|
|
#include <QtDBus/QDBusInterface>
|
2020-03-02 07:44:56 +00:00
|
|
|
#include <QtDBus/QDBusConnection>
|
|
|
|
#include <QtDBus/QDBusMessage>
|
|
|
|
#include <QtDBus/QDBusReply>
|
|
|
|
#include <QtDBus/QDBusError>
|
2020-03-03 01:24:13 +00:00
|
|
|
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
2020-01-21 00:10:10 +00:00
|
|
|
|
2014-07-14 05:16:21 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
2014-07-24 16:00:35 +00:00
|
|
|
#include <pwd.h>
|
2014-07-14 05:16:21 +00:00
|
|
|
|
2015-01-15 14:22:15 +00:00
|
|
|
#include <iostream>
|
2016-11-11 07:51:53 +00:00
|
|
|
|
2016-06-16 17:20:58 +00:00
|
|
|
using namespace Platform;
|
2017-02-28 14:05:30 +00:00
|
|
|
using Platform::File::internal::EscapeShell;
|
2015-01-15 14:22:15 +00:00
|
|
|
|
2018-03-18 08:51:14 +00:00
|
|
|
namespace {
|
|
|
|
|
2020-01-29 09:44:37 +00:00
|
|
|
constexpr auto kDesktopFile = ":/misc/telegramdesktop.desktop"_cs;
|
2020-02-10 14:19:38 +00:00
|
|
|
constexpr auto kSnapLauncherDir = "/var/lib/snapd/desktop/applications/"_cs;
|
2020-02-26 11:38:31 +00:00
|
|
|
constexpr auto kIconName = "telegram"_cs;
|
2020-01-21 00:10:10 +00:00
|
|
|
|
|
|
|
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
2020-02-25 02:39:14 +00:00
|
|
|
void SandboxAutostart(bool autostart, bool silent = false) {
|
2020-01-21 00:10:10 +00:00
|
|
|
QVariantMap options;
|
|
|
|
options["reason"] = tr::lng_settings_auto_start(tr::now);
|
|
|
|
options["autostart"] = autostart;
|
|
|
|
options["commandline"] = QStringList({
|
|
|
|
cExeName(),
|
|
|
|
qsl("-autostart")
|
|
|
|
});
|
|
|
|
options["dbus-activatable"] = false;
|
|
|
|
|
2020-03-03 01:24:13 +00:00
|
|
|
auto message = QDBusMessage::createMethodCall(
|
2020-01-21 00:10:10 +00:00
|
|
|
qsl("org.freedesktop.portal.Desktop"),
|
|
|
|
qsl("/org/freedesktop/portal/desktop"),
|
2020-03-03 01:24:13 +00:00
|
|
|
qsl("org.freedesktop.portal.Background"),
|
|
|
|
qsl("RequestBackground"));
|
|
|
|
|
|
|
|
message.setArguments({
|
|
|
|
QString(),
|
|
|
|
options
|
|
|
|
});
|
|
|
|
|
|
|
|
if (silent) {
|
|
|
|
QDBusConnection::sessionBus().send(message);
|
|
|
|
} else {
|
|
|
|
const QDBusReply<void> reply = QDBusConnection::sessionBus().call(
|
|
|
|
message);
|
|
|
|
|
|
|
|
if (!reply.isValid()) {
|
|
|
|
LOG(("Flatpak autostart error: %1").arg(reply.error().message()));
|
2020-02-25 02:39:14 +00:00
|
|
|
}
|
2020-01-30 17:03:20 +00:00
|
|
|
}
|
2020-01-21 00:10:10 +00:00
|
|
|
}
|
2020-03-03 01:24:13 +00:00
|
|
|
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
2020-01-21 00:10:10 +00:00
|
|
|
|
2018-11-12 10:47:45 +00:00
|
|
|
bool RunShellCommand(const QByteArray &command) {
|
2020-01-02 11:25:52 +00:00
|
|
|
auto result = system(command.constData());
|
|
|
|
if (result) {
|
|
|
|
DEBUG_LOG(("App Error: command failed, code: %1, command (in utf8): %2").arg(result).arg(command.constData()));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
DEBUG_LOG(("App Info: command succeeded, command (in utf8): %1").arg(command.constData()));
|
|
|
|
return true;
|
2018-03-18 08:51:14 +00:00
|
|
|
}
|
|
|
|
|
2018-11-12 10:47:45 +00:00
|
|
|
void FallbackFontConfig() {
|
2020-01-31 13:31:08 +00:00
|
|
|
#ifdef TDESKTOP_USE_FONT_CONFIG_FALLBACK
|
2018-11-12 10:47:45 +00:00
|
|
|
const auto custom = cWorkingDir() + "tdata/fc-custom-1.conf";
|
|
|
|
const auto finish = gsl::finally([&] {
|
|
|
|
if (QFile(custom).exists()) {
|
|
|
|
LOG(("Custom FONTCONFIG_FILE: ") + custom);
|
|
|
|
qputenv("FONTCONFIG_FILE", QFile::encodeName(custom));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-11-15 10:05:59 +00:00
|
|
|
QProcess process;
|
|
|
|
process.setProcessChannelMode(QProcess::MergedChannels);
|
|
|
|
process.start("fc-list", QStringList() << "--version");
|
|
|
|
process.waitForFinished();
|
|
|
|
if (process.exitCode() > 0) {
|
|
|
|
LOG(("App Error: Could not start fc-list. Process exited with code: %1.").arg(process.exitCode()));
|
2018-11-12 10:47:45 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-11-15 10:05:59 +00:00
|
|
|
|
|
|
|
QString result(process.readAllStandardOutput());
|
|
|
|
DEBUG_LOG(("Fontconfig version string: ") + result);
|
|
|
|
|
|
|
|
QVersionNumber version = QVersionNumber::fromString(result.split("version ").last());
|
|
|
|
if (version.isNull()) {
|
|
|
|
LOG(("App Error: Could not get version from fc-list output."));
|
2018-11-12 10:47:45 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-11-15 10:05:59 +00:00
|
|
|
|
|
|
|
LOG(("Fontconfig version: %1.").arg(version.toString()));
|
|
|
|
if (version < QVersionNumber::fromString("2.13")) {
|
2018-11-12 13:34:47 +00:00
|
|
|
if (qgetenv("TDESKTOP_FORCE_CUSTOM_FONTCONFIG").isEmpty()) {
|
2018-11-12 10:47:45 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-11-15 10:05:59 +00:00
|
|
|
|
2018-11-12 13:34:47 +00:00
|
|
|
QFile(":/fc/fc-custom.conf").copy(custom);
|
2020-01-31 13:31:08 +00:00
|
|
|
#endif // TDESKTOP_USE_FONT_CONFIG_FALLBACK
|
2018-11-12 10:47:45 +00:00
|
|
|
}
|
|
|
|
|
2020-02-25 02:39:14 +00:00
|
|
|
bool GenerateDesktopFile(
|
|
|
|
const QString &targetPath,
|
|
|
|
const QString &args,
|
|
|
|
bool silent = false) {
|
2020-01-21 00:10:10 +00:00
|
|
|
DEBUG_LOG(("App Info: placing .desktop file to %1").arg(targetPath));
|
|
|
|
if (!QDir(targetPath).exists()) QDir().mkpath(targetPath);
|
|
|
|
|
2020-02-10 14:19:38 +00:00
|
|
|
const auto sourceFile = [&] {
|
|
|
|
if (InSnap()) {
|
|
|
|
return kSnapLauncherDir.utf16() + GetLauncherFilename();
|
|
|
|
} else {
|
|
|
|
return kDesktopFile.utf16();
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
|
2020-01-30 18:41:24 +00:00
|
|
|
const auto targetFile = targetPath + GetLauncherFilename();
|
2020-01-21 00:10:10 +00:00
|
|
|
|
|
|
|
QString fileText;
|
|
|
|
|
2020-02-10 14:19:38 +00:00
|
|
|
QFile source(sourceFile);
|
2020-01-21 00:10:10 +00:00
|
|
|
if (source.open(QIODevice::ReadOnly)) {
|
|
|
|
QTextStream s(&source);
|
|
|
|
fileText = s.readAll();
|
|
|
|
source.close();
|
|
|
|
} else {
|
2020-02-25 02:39:14 +00:00
|
|
|
if (!silent) {
|
|
|
|
LOG(("App Error: Could not open '%1' for read").arg(sourceFile));
|
|
|
|
}
|
2020-01-21 00:10:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QFile target(targetFile);
|
|
|
|
if (target.open(QIODevice::WriteOnly)) {
|
|
|
|
#ifdef DESKTOP_APP_USE_PACKAGED
|
|
|
|
fileText = fileText.replace(
|
2020-02-25 02:39:14 +00:00
|
|
|
QRegularExpression(
|
|
|
|
qsl("^Exec=(.*) -- %u$"),
|
2020-01-21 00:10:10 +00:00
|
|
|
QRegularExpression::MultilineOption),
|
|
|
|
qsl("Exec=\\1")
|
|
|
|
+ (args.isEmpty() ? QString() : ' ' + args));
|
2020-03-03 01:24:13 +00:00
|
|
|
#else // DESKTOP_APP_USE_PACKAGED
|
2020-01-21 00:10:10 +00:00
|
|
|
fileText = fileText.replace(
|
2020-02-25 02:39:14 +00:00
|
|
|
QRegularExpression(
|
|
|
|
qsl("^TryExec=.*$"),
|
2020-01-21 00:10:10 +00:00
|
|
|
QRegularExpression::MultilineOption),
|
|
|
|
qsl("TryExec=")
|
2020-02-25 02:39:14 +00:00
|
|
|
+ QFile::encodeName(cExeDir() + cExeName())
|
|
|
|
.replace('\\', qsl("\\\\")));
|
2020-01-21 00:10:10 +00:00
|
|
|
fileText = fileText.replace(
|
2020-02-25 02:39:14 +00:00
|
|
|
QRegularExpression(
|
|
|
|
qsl("^Exec=.*$"),
|
2020-01-21 00:10:10 +00:00
|
|
|
QRegularExpression::MultilineOption),
|
|
|
|
qsl("Exec=")
|
|
|
|
+ EscapeShell(QFile::encodeName(cExeDir() + cExeName()))
|
2020-02-25 02:39:14 +00:00
|
|
|
.replace('\\', qsl("\\\\"))
|
2020-01-21 00:10:10 +00:00
|
|
|
+ (args.isEmpty() ? QString() : ' ' + args));
|
2020-03-03 01:24:13 +00:00
|
|
|
#endif // !DESKTOP_APP_USE_PACKAGED
|
2020-01-21 00:10:10 +00:00
|
|
|
target.write(fileText.toUtf8());
|
|
|
|
target.close();
|
|
|
|
|
|
|
|
DEBUG_LOG(("App Info: removing old .desktop file"));
|
|
|
|
QFile(qsl("%1telegram.desktop").arg(targetPath)).remove();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|
2020-02-25 02:39:14 +00:00
|
|
|
if (!silent) {
|
|
|
|
LOG(("App Error: Could not open '%1' for write").arg(targetFile));
|
|
|
|
}
|
2020-01-21 00:10:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-18 08:51:14 +00:00
|
|
|
} // namespace
|
|
|
|
|
2017-08-15 17:12:57 +00:00
|
|
|
namespace Platform {
|
|
|
|
|
2018-10-24 08:28:11 +00:00
|
|
|
void SetApplicationIcon(const QIcon &icon) {
|
2019-01-21 13:42:21 +00:00
|
|
|
QApplication::setWindowIcon(icon);
|
2018-10-24 08:28:11 +00:00
|
|
|
}
|
|
|
|
|
2020-01-22 03:12:07 +00:00
|
|
|
bool InSandbox() {
|
2020-03-03 01:24:13 +00:00
|
|
|
static const auto Sandbox = QFileInfo::exists(qsl("/.flatpak-info"));
|
2020-01-22 03:12:07 +00:00
|
|
|
return Sandbox;
|
|
|
|
}
|
|
|
|
|
2020-01-30 18:41:24 +00:00
|
|
|
bool InSnap() {
|
|
|
|
static const auto Snap = qEnvironmentVariableIsSet("SNAP");
|
|
|
|
return Snap;
|
|
|
|
}
|
|
|
|
|
2020-01-29 17:41:42 +00:00
|
|
|
bool IsXDGDesktopPortalPresent() {
|
2020-02-19 14:44:26 +00:00
|
|
|
#ifdef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
|
|
|
static const auto XDGDesktopPortalPresent = false;
|
|
|
|
#else // TDESKTOP_DISABLE_DBUS_INTEGRATION
|
|
|
|
static const auto XDGDesktopPortalPresent = QDBusInterface(
|
|
|
|
"org.freedesktop.portal.Desktop",
|
|
|
|
"/org/freedesktop/portal/desktop").isValid();
|
|
|
|
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
2020-03-03 01:24:13 +00:00
|
|
|
|
2020-01-31 06:34:37 +00:00
|
|
|
return XDGDesktopPortalPresent;
|
|
|
|
}
|
2020-01-29 17:41:42 +00:00
|
|
|
|
2020-02-19 14:44:26 +00:00
|
|
|
bool UseXDGDesktopPortal() {
|
2020-03-03 01:24:13 +00:00
|
|
|
static const auto UsePortal = [&] {
|
|
|
|
const auto envVar = qEnvironmentVariableIsSet("TDESKTOP_USE_PORTAL");
|
|
|
|
const auto portalPresent = IsXDGDesktopPortalPresent();
|
|
|
|
|
|
|
|
return envVar && portalPresent;
|
|
|
|
}();
|
|
|
|
|
2020-02-19 14:44:26 +00:00
|
|
|
return UsePortal;
|
|
|
|
}
|
|
|
|
|
2020-01-31 06:34:37 +00:00
|
|
|
QString ProcessNameByPID(const QString &pid) {
|
2017-08-15 17:12:57 +00:00
|
|
|
constexpr auto kMaxPath = 1024;
|
|
|
|
char result[kMaxPath] = { 0 };
|
2020-01-31 06:34:37 +00:00
|
|
|
auto count = readlink("/proc/" + pid.toLatin1() + "/exe", result, kMaxPath);
|
2017-08-15 17:12:57 +00:00
|
|
|
if (count > 0) {
|
|
|
|
auto filename = QFile::decodeName(result);
|
|
|
|
auto deletedPostfix = qstr(" (deleted)");
|
|
|
|
if (filename.endsWith(deletedPostfix) && !QFileInfo(filename).exists()) {
|
|
|
|
filename.chop(deletedPostfix.size());
|
|
|
|
}
|
|
|
|
return filename;
|
|
|
|
}
|
|
|
|
|
2020-01-31 06:34:37 +00:00
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString CurrentExecutablePath(int argc, char *argv[]) {
|
|
|
|
const auto processName = ProcessNameByPID(qsl("self"));
|
|
|
|
|
2017-08-15 17:12:57 +00:00
|
|
|
// Fallback to the first command line argument.
|
2020-01-31 06:34:37 +00:00
|
|
|
return !processName.isEmpty()
|
|
|
|
? processName
|
|
|
|
: argc
|
|
|
|
? QFile::decodeName(argv[0])
|
|
|
|
: QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString AppRuntimeDirectory() {
|
|
|
|
static const auto RuntimeDirectory = [&] {
|
|
|
|
auto runtimeDir = QStandardPaths::writableLocation(
|
|
|
|
QStandardPaths::RuntimeLocation);
|
|
|
|
|
|
|
|
if (InSandbox()) {
|
2020-03-14 19:52:43 +00:00
|
|
|
const auto flatpakId = [&] {
|
|
|
|
if (!qEnvironmentVariableIsEmpty("FLATPAK_ID")) {
|
|
|
|
return QString::fromLatin1(qgetenv("FLATPAK_ID"));
|
|
|
|
} else {
|
|
|
|
return GetLauncherBasename();
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
|
2020-01-31 06:34:37 +00:00
|
|
|
runtimeDir += qsl("/app/")
|
2020-03-14 19:52:43 +00:00
|
|
|
+ flatpakId;
|
2020-01-31 06:34:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!QFileInfo::exists(runtimeDir)) { // non-systemd distros
|
|
|
|
runtimeDir = QDir::tempPath();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (runtimeDir.isEmpty()) {
|
|
|
|
runtimeDir = qsl("/tmp/");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!runtimeDir.endsWith('/')) {
|
|
|
|
runtimeDir += '/';
|
|
|
|
}
|
|
|
|
|
|
|
|
return runtimeDir;
|
|
|
|
}();
|
|
|
|
|
|
|
|
return RuntimeDirectory;
|
2017-08-15 17:12:57 +00:00
|
|
|
}
|
|
|
|
|
2020-01-22 03:12:07 +00:00
|
|
|
QString SingleInstanceLocalServerName(const QString &hash) {
|
2020-01-31 06:34:37 +00:00
|
|
|
if (InSandbox() || InSnap()) {
|
|
|
|
return AppRuntimeDirectory() + hash;
|
|
|
|
} else {
|
|
|
|
return AppRuntimeDirectory() + hash + '-' + cGUIDStr();
|
2020-01-22 03:12:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-30 18:41:24 +00:00
|
|
|
QString GetLauncherBasename() {
|
|
|
|
static const auto LauncherBasename = [&] {
|
2020-02-20 03:00:26 +00:00
|
|
|
if (InSnap()) {
|
|
|
|
const auto snapNameKey =
|
|
|
|
qEnvironmentVariableIsSet("SNAP_INSTANCE_NAME")
|
|
|
|
? "SNAP_INSTANCE_NAME"
|
|
|
|
: "SNAP_NAME";
|
|
|
|
|
|
|
|
return qsl("%1_%2")
|
|
|
|
.arg(QString::fromLatin1(qgetenv(snapNameKey)))
|
|
|
|
.arg(cExeName());
|
2020-01-30 18:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-02-20 03:00:26 +00:00
|
|
|
const auto possibleBasenames = std::vector<QString>{
|
|
|
|
qsl(MACRO_TO_STRING(TDESKTOP_LAUNCHER_BASENAME)),
|
|
|
|
qsl("Telegram")
|
|
|
|
};
|
|
|
|
|
|
|
|
for (const auto &it : possibleBasenames) {
|
|
|
|
if (!QStandardPaths::locate(
|
|
|
|
QStandardPaths::ApplicationsLocation,
|
|
|
|
it + qsl(".desktop")).isEmpty()) {
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
}
|
2020-02-10 03:58:57 +00:00
|
|
|
|
2020-02-20 03:00:26 +00:00
|
|
|
return possibleBasenames[0];
|
2020-01-30 18:41:24 +00:00
|
|
|
}();
|
|
|
|
|
|
|
|
return LauncherBasename;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString GetLauncherFilename() {
|
|
|
|
static const auto LauncherFilename = GetLauncherBasename()
|
|
|
|
+ qsl(".desktop");
|
|
|
|
return LauncherFilename;
|
|
|
|
}
|
|
|
|
|
2020-02-26 11:38:31 +00:00
|
|
|
QString GetIconName() {
|
|
|
|
static const auto IconName = InSandbox()
|
|
|
|
? GetLauncherBasename()
|
|
|
|
: kIconName.utf16();
|
|
|
|
return IconName;
|
|
|
|
}
|
|
|
|
|
2020-03-02 07:44:56 +00:00
|
|
|
std::optional<crl::time> LastUserInputTime() {
|
|
|
|
// TODO: a fallback pure-X11 implementation, this one covers only major DEs on X11 and Wayland
|
|
|
|
// an example: https://stackoverflow.com/q/9049087
|
|
|
|
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
2020-03-10 08:36:06 +00:00
|
|
|
static auto NotSupported = false;
|
|
|
|
|
|
|
|
if (NotSupported) {
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
|
2020-03-02 07:44:56 +00:00
|
|
|
static const auto message = QDBusMessage::createMethodCall(
|
|
|
|
qsl("org.freedesktop.ScreenSaver"),
|
|
|
|
qsl("/org/freedesktop/ScreenSaver"),
|
|
|
|
qsl("org.freedesktop.ScreenSaver"),
|
|
|
|
qsl("GetSessionIdleTime"));
|
|
|
|
|
|
|
|
const QDBusReply<uint> reply = QDBusConnection::sessionBus().call(
|
|
|
|
message);
|
|
|
|
|
2020-03-14 19:35:51 +00:00
|
|
|
const auto notSupportedErrors = {
|
2020-03-10 08:36:06 +00:00
|
|
|
QDBusError::ServiceUnknown,
|
|
|
|
QDBusError::NotSupported,
|
|
|
|
};
|
|
|
|
|
2020-03-02 07:44:56 +00:00
|
|
|
if (reply.isValid()) {
|
|
|
|
return (crl::now() - static_cast<crl::time>(reply.value()));
|
2020-03-10 08:36:06 +00:00
|
|
|
} else if (ranges::contains(notSupportedErrors, reply.error().type())) {
|
|
|
|
NotSupported = true;
|
|
|
|
} else {
|
|
|
|
if (reply.error().type() == QDBusError::AccessDenied) {
|
|
|
|
NotSupported = true;
|
|
|
|
}
|
|
|
|
|
2020-03-02 07:44:56 +00:00
|
|
|
LOG(("Unable to get last user input time: %1: %2")
|
|
|
|
.arg(reply.error().name())
|
|
|
|
.arg(reply.error().message()));
|
|
|
|
}
|
|
|
|
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
|
|
|
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
|
2017-08-15 17:12:57 +00:00
|
|
|
} // namespace Platform
|
|
|
|
|
2014-07-08 10:24:21 +00:00
|
|
|
namespace {
|
2016-10-18 10:32:33 +00:00
|
|
|
|
|
|
|
QRect _monitorRect;
|
2016-12-01 19:20:33 +00:00
|
|
|
auto _monitorLastGot = 0LL;
|
2016-10-18 10:32:33 +00:00
|
|
|
|
|
|
|
} // namespace
|
2014-07-08 10:24:21 +00:00
|
|
|
|
2014-07-09 05:54:12 +00:00
|
|
|
QRect psDesktopRect() {
|
2019-02-19 06:57:53 +00:00
|
|
|
auto tnow = crl::now();
|
2016-12-01 19:20:33 +00:00
|
|
|
if (tnow > _monitorLastGot + 1000LL || tnow < _monitorLastGot) {
|
2016-10-18 10:32:33 +00:00
|
|
|
_monitorLastGot = tnow;
|
|
|
|
_monitorRect = QApplication::desktop()->availableGeometry(App::wnd());
|
|
|
|
}
|
|
|
|
return _monitorRect;
|
2014-07-08 10:24:21 +00:00
|
|
|
}
|
|
|
|
|
2016-01-30 18:24:42 +00:00
|
|
|
void psWriteDump() {
|
|
|
|
}
|
|
|
|
|
2014-07-14 05:16:21 +00:00
|
|
|
bool _removeDirectory(const QString &path) { // from http://stackoverflow.com/questions/2256945/removing-a-non-empty-directory-programmatically-in-c-or-c
|
2016-10-18 10:32:33 +00:00
|
|
|
QByteArray pathRaw = QFile::encodeName(path);
|
|
|
|
DIR *d = opendir(pathRaw.constData());
|
|
|
|
if (!d) return false;
|
|
|
|
|
|
|
|
while (struct dirent *p = readdir(d)) {
|
|
|
|
/* Skip the names "." and ".." as we don't want to recurse on them. */
|
|
|
|
if (!strcmp(p->d_name, ".") || !strcmp(p->d_name, "..")) continue;
|
|
|
|
|
|
|
|
QString fname = path + '/' + p->d_name;
|
|
|
|
QByteArray fnameRaw = QFile::encodeName(fname);
|
|
|
|
struct stat statbuf;
|
|
|
|
if (!stat(fnameRaw.constData(), &statbuf)) {
|
|
|
|
if (S_ISDIR(statbuf.st_mode)) {
|
|
|
|
if (!_removeDirectory(fname)) {
|
|
|
|
closedir(d);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (unlink(fnameRaw.constData())) {
|
|
|
|
closedir(d);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir(d);
|
|
|
|
|
|
|
|
return !rmdir(pathRaw.constData());
|
2014-07-14 05:16:21 +00:00
|
|
|
}
|
|
|
|
|
2015-06-03 18:13:01 +00:00
|
|
|
void psDeleteDir(const QString &dir) {
|
|
|
|
_removeDirectory(dir);
|
2014-07-08 10:24:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void psActivateProcess(uint64 pid) {
|
|
|
|
// objc_activateProgram();
|
|
|
|
}
|
|
|
|
|
2014-12-04 09:48:46 +00:00
|
|
|
namespace {
|
2016-10-18 10:32:33 +00:00
|
|
|
|
|
|
|
QString getHomeDir() {
|
2018-02-01 18:30:21 +00:00
|
|
|
auto home = QDir::homePath();
|
|
|
|
|
|
|
|
if (home != QDir::rootPath())
|
|
|
|
return home + '/';
|
|
|
|
|
2016-10-18 10:32:33 +00:00
|
|
|
struct passwd *pw = getpwuid(getuid());
|
|
|
|
return (pw && pw->pw_dir && strlen(pw->pw_dir)) ? (QFile::decodeName(pw->pw_dir) + '/') : QString();
|
2014-12-04 09:48:46 +00:00
|
|
|
}
|
|
|
|
|
2016-10-18 10:32:33 +00:00
|
|
|
} // namespace
|
|
|
|
|
2014-12-04 09:48:46 +00:00
|
|
|
QString psAppDataPath() {
|
2016-10-18 10:32:33 +00:00
|
|
|
// Previously we used ~/.TelegramDesktop, so look there first.
|
|
|
|
// If we find data there, we should still use it.
|
|
|
|
auto home = getHomeDir();
|
|
|
|
if (!home.isEmpty()) {
|
|
|
|
auto oldPath = home + qsl(".TelegramDesktop/");
|
|
|
|
auto oldSettingsBase = oldPath + qsl("tdata/settings");
|
2020-02-26 16:12:51 +00:00
|
|
|
if (QFile(oldSettingsBase + '0').exists()
|
|
|
|
|| QFile(oldSettingsBase + '1').exists()
|
|
|
|
|| QFile(oldSettingsBase + 's').exists()) {
|
2016-10-18 10:32:33 +00:00
|
|
|
return oldPath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation) + '/';
|
2014-07-08 10:24:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void psDoCleanup() {
|
|
|
|
try {
|
|
|
|
psAutoStart(false, true);
|
2014-07-18 10:37:34 +00:00
|
|
|
psSendToMenu(false, true);
|
2014-07-08 10:24:21 +00:00
|
|
|
} catch (...) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int psCleanup() {
|
|
|
|
psDoCleanup();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void psDoFixPrevious() {
|
|
|
|
}
|
|
|
|
|
|
|
|
int psFixPrevious() {
|
|
|
|
psDoFixPrevious();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-06-16 12:59:54 +00:00
|
|
|
namespace Platform {
|
2016-01-11 15:43:29 +00:00
|
|
|
|
2016-06-16 12:59:54 +00:00
|
|
|
void start() {
|
2020-02-25 02:39:14 +00:00
|
|
|
LOG(("Launcher filename: %1").arg(GetLauncherFilename()));
|
2018-11-12 10:47:45 +00:00
|
|
|
FallbackFontConfig();
|
2020-01-29 17:41:42 +00:00
|
|
|
|
2020-03-03 01:24:13 +00:00
|
|
|
qputenv("PULSE_PROP_application.name", AppName.utf8());
|
|
|
|
qputenv("PULSE_PROP_application.icon_name", GetIconName().toLatin1());
|
|
|
|
|
2020-02-19 14:44:26 +00:00
|
|
|
#ifdef TDESKTOP_FORCE_GTK_FILE_DIALOG
|
2020-01-29 17:41:42 +00:00
|
|
|
LOG(("Checking for XDG Desktop Portal..."));
|
|
|
|
// this can give us a chance to use a proper file dialog for current session
|
2020-02-19 14:44:26 +00:00
|
|
|
if(IsXDGDesktopPortalPresent()) {
|
2020-01-29 17:41:42 +00:00
|
|
|
LOG(("XDG Desktop Portal is present!"));
|
2020-02-19 14:44:26 +00:00
|
|
|
if(UseXDGDesktopPortal()) {
|
|
|
|
LOG(("Usage of XDG Desktop Portal is enabled."));
|
|
|
|
qputenv("QT_QPA_PLATFORMTHEME", "xdgdesktopportal");
|
|
|
|
} else {
|
|
|
|
LOG(("Usage of XDG Desktop Portal is disabled."));
|
|
|
|
}
|
2020-01-29 17:41:42 +00:00
|
|
|
} else {
|
|
|
|
LOG(("XDG Desktop Portal is not present :("));
|
|
|
|
}
|
2020-02-19 14:44:26 +00:00
|
|
|
#endif // TDESKTOP_FORCE_GTK_FILE_DIALOG
|
2016-06-16 12:59:54 +00:00
|
|
|
}
|
2016-01-11 15:43:29 +00:00
|
|
|
|
2016-06-16 12:59:54 +00:00
|
|
|
void finish() {
|
|
|
|
}
|
2014-09-20 21:31:03 +00:00
|
|
|
|
2020-02-25 02:39:14 +00:00
|
|
|
void RegisterCustomScheme(bool force) {
|
2016-10-18 07:56:38 +00:00
|
|
|
#ifndef TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME
|
2020-03-07 05:54:47 +00:00
|
|
|
const auto home = getHomeDir();
|
2020-02-25 02:39:14 +00:00
|
|
|
if (home.isEmpty() || cExeName().isEmpty())
|
|
|
|
return;
|
|
|
|
|
2020-03-07 05:54:47 +00:00
|
|
|
static const auto disabledByEnv = qEnvironmentVariableIsSet(
|
|
|
|
"TDESKTOP_DISABLE_DESKTOP_FILE_GENERATION");
|
|
|
|
|
2020-02-25 02:39:14 +00:00
|
|
|
// don't update desktop file for alpha version or if updater is disabled
|
2020-03-07 05:54:47 +00:00
|
|
|
if ((cAlphaVersion() || Core::UpdaterDisabled() || disabledByEnv)
|
|
|
|
&& !force)
|
2018-08-30 07:14:36 +00:00
|
|
|
return;
|
2014-12-04 09:48:46 +00:00
|
|
|
|
2020-01-21 00:10:10 +00:00
|
|
|
const auto applicationsPath = QStandardPaths::writableLocation(
|
|
|
|
QStandardPaths::ApplicationsLocation) + '/';
|
|
|
|
|
|
|
|
GenerateDesktopFile(applicationsPath, qsl("-- %u"));
|
2016-10-18 10:32:33 +00:00
|
|
|
|
2020-01-21 00:10:10 +00:00
|
|
|
const auto icons =
|
|
|
|
QStandardPaths::writableLocation(
|
|
|
|
QStandardPaths::GenericDataLocation)
|
2020-02-25 02:39:14 +00:00
|
|
|
+ qsl("/icons/");
|
2014-12-04 09:48:46 +00:00
|
|
|
|
2020-01-21 00:10:10 +00:00
|
|
|
if (!QDir(icons).exists()) QDir().mkpath(icons);
|
2016-10-18 10:32:33 +00:00
|
|
|
|
2020-01-21 00:10:10 +00:00
|
|
|
const auto icon = icons + qsl("telegram.png");
|
|
|
|
auto iconExists = QFile(icon).exists();
|
|
|
|
if (Local::oldSettingsVersion() < 10021 && iconExists) {
|
|
|
|
// Icon was changed.
|
|
|
|
if (QFile(icon).remove()) {
|
|
|
|
iconExists = false;
|
|
|
|
}
|
2016-10-18 10:32:33 +00:00
|
|
|
}
|
2020-01-21 00:10:10 +00:00
|
|
|
if (!iconExists) {
|
|
|
|
if (QFile(qsl(":/gui/art/logo_256.png")).copy(icon)) {
|
2020-02-25 02:39:14 +00:00
|
|
|
DEBUG_LOG(("App Info: Icon copied to '%1'").arg(icon));
|
2016-10-18 10:32:33 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-21 00:10:10 +00:00
|
|
|
|
|
|
|
RunShellCommand("update-desktop-database "
|
|
|
|
+ EscapeShell(QFile::encodeName(applicationsPath)));
|
|
|
|
|
|
|
|
RunShellCommand("xdg-mime default "
|
2020-01-30 18:41:24 +00:00
|
|
|
+ GetLauncherFilename().toLatin1()
|
|
|
|
+ " x-scheme-handler/tg");
|
2016-10-18 07:56:38 +00:00
|
|
|
#endif // !TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME
|
2014-12-03 13:10:32 +00:00
|
|
|
}
|
|
|
|
|
2018-12-23 12:08:48 +00:00
|
|
|
PermissionStatus GetPermissionStatus(PermissionType type) {
|
2018-09-30 15:42:50 +00:00
|
|
|
return PermissionStatus::Granted;
|
|
|
|
}
|
|
|
|
|
2018-12-23 12:08:48 +00:00
|
|
|
void RequestPermission(PermissionType type, Fn<void(PermissionStatus)> resultCallback) {
|
2018-10-17 06:09:59 +00:00
|
|
|
resultCallback(PermissionStatus::Granted);
|
2018-09-30 15:42:50 +00:00
|
|
|
}
|
|
|
|
|
2018-12-23 12:08:48 +00:00
|
|
|
void OpenSystemSettingsForPermission(PermissionType type) {
|
|
|
|
}
|
|
|
|
|
2019-01-05 11:08:02 +00:00
|
|
|
bool OpenSystemSettings(SystemSettingsType type) {
|
|
|
|
if (type == SystemSettingsType::Audio) {
|
2019-01-11 10:07:56 +00:00
|
|
|
auto options = std::vector<QString>();
|
|
|
|
const auto add = [&](const char *option) {
|
|
|
|
options.emplace_back(option);
|
|
|
|
};
|
2019-01-05 11:08:02 +00:00
|
|
|
if (DesktopEnvironment::IsUnity()) {
|
2019-01-11 10:07:56 +00:00
|
|
|
add("unity-control-center sound");
|
2019-01-05 11:08:02 +00:00
|
|
|
} else if (DesktopEnvironment::IsKDE()) {
|
2019-01-11 10:07:56 +00:00
|
|
|
add("kcmshell5 kcm_pulseaudio");
|
|
|
|
add("kcmshell4 phonon");
|
2019-01-05 11:08:02 +00:00
|
|
|
} else if (DesktopEnvironment::IsGnome()) {
|
2019-01-11 10:07:56 +00:00
|
|
|
add("gnome-control-center sound");
|
2020-01-31 06:34:37 +00:00
|
|
|
} else if (DesktopEnvironment::IsMATE()) {
|
|
|
|
add("mate-volume-control");
|
2019-01-05 11:08:02 +00:00
|
|
|
}
|
2020-01-22 13:02:27 +00:00
|
|
|
add("pavucontrol-qt");
|
2019-01-11 10:07:56 +00:00
|
|
|
add("pavucontrol");
|
|
|
|
add("alsamixergui");
|
|
|
|
return ranges::find_if(options, [](const QString &command) {
|
|
|
|
return QProcess::startDetached(command);
|
|
|
|
}) != end(options);
|
2019-01-05 11:08:02 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-18 08:51:14 +00:00
|
|
|
namespace ThirdParty {
|
|
|
|
|
|
|
|
void start() {
|
|
|
|
Libs::start();
|
|
|
|
MainWindow::LibsLoaded();
|
|
|
|
}
|
|
|
|
|
|
|
|
void finish() {
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ThirdParty
|
|
|
|
|
|
|
|
} // namespace Platform
|
|
|
|
|
2015-08-13 15:11:07 +00:00
|
|
|
void psNewVersion() {
|
2018-03-18 08:51:14 +00:00
|
|
|
Platform::RegisterCustomScheme();
|
2015-08-13 15:11:07 +00:00
|
|
|
}
|
|
|
|
|
2015-01-21 10:20:23 +00:00
|
|
|
bool psShowOpenWithMenu(int x, int y, const QString &file) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-07-08 10:24:21 +00:00
|
|
|
void psAutoStart(bool start, bool silent) {
|
2020-03-07 05:54:47 +00:00
|
|
|
const auto home = getHomeDir();
|
2020-02-25 02:39:14 +00:00
|
|
|
if (home.isEmpty() || cExeName().isEmpty())
|
2020-01-21 00:10:10 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (InSandbox()) {
|
|
|
|
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
2020-02-25 02:39:14 +00:00
|
|
|
SandboxAutostart(start, silent);
|
2020-03-03 01:24:13 +00:00
|
|
|
#endif // !DESKTOP_APP_USE_PACKAGED
|
2020-01-21 00:10:10 +00:00
|
|
|
} else {
|
2020-02-10 14:19:38 +00:00
|
|
|
const auto autostart = [&] {
|
|
|
|
if (InSnap()) {
|
|
|
|
QDir realHomeDir(home);
|
|
|
|
realHomeDir.cd(qsl("../../.."));
|
|
|
|
|
|
|
|
return realHomeDir
|
|
|
|
.absoluteFilePath(qsl(".config/autostart/"));
|
|
|
|
} else {
|
|
|
|
return QStandardPaths::writableLocation(
|
|
|
|
QStandardPaths::GenericConfigLocation)
|
2020-02-25 02:39:14 +00:00
|
|
|
+ qsl("/autostart/");
|
2020-02-10 14:19:38 +00:00
|
|
|
}
|
|
|
|
}();
|
2020-01-21 00:10:10 +00:00
|
|
|
|
|
|
|
if (start) {
|
2020-02-25 02:39:14 +00:00
|
|
|
GenerateDesktopFile(autostart, qsl("-autostart"), silent);
|
2020-01-21 00:10:10 +00:00
|
|
|
} else {
|
2020-01-30 18:41:24 +00:00
|
|
|
QFile::remove(autostart + GetLauncherFilename());
|
2020-01-21 00:10:10 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-08 10:24:21 +00:00
|
|
|
}
|
2014-07-18 10:37:34 +00:00
|
|
|
|
|
|
|
void psSendToMenu(bool send, bool silent) {
|
|
|
|
}
|
2014-09-29 02:47:30 +00:00
|
|
|
|
2015-06-03 18:13:01 +00:00
|
|
|
bool linuxMoveFile(const char *from, const char *to) {
|
|
|
|
FILE *ffrom = fopen(from, "rb"), *fto = fopen(to, "wb");
|
|
|
|
if (!ffrom) {
|
|
|
|
if (fto) fclose(fto);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!fto) {
|
|
|
|
fclose(ffrom);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
static const int BufSize = 65536;
|
|
|
|
char buf[BufSize];
|
|
|
|
while (size_t size = fread(buf, 1, BufSize, ffrom)) {
|
|
|
|
fwrite(buf, 1, size, fto);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct stat fst; // from http://stackoverflow.com/questions/5486774/keeping-fileowner-and-permissions-after-copying-file-in-c
|
|
|
|
//let's say this wont fail since you already worked OK on that fp
|
|
|
|
if (fstat(fileno(ffrom), &fst) != 0) {
|
|
|
|
fclose(ffrom);
|
|
|
|
fclose(fto);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
//update to the same uid/gid
|
|
|
|
if (fchown(fileno(fto), fst.st_uid, fst.st_gid) != 0) {
|
|
|
|
fclose(ffrom);
|
|
|
|
fclose(fto);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
//update the permissions
|
|
|
|
if (fchmod(fileno(fto), fst.st_mode) != 0) {
|
|
|
|
fclose(ffrom);
|
|
|
|
fclose(fto);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(ffrom);
|
|
|
|
fclose(fto);
|
|
|
|
|
|
|
|
if (unlink(from)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2016-02-17 16:37:21 +00:00
|
|
|
|
2019-06-21 12:27:46 +00:00
|
|
|
bool psLaunchMaps(const Data::LocationPoint &point) {
|
2016-02-17 16:37:21 +00:00
|
|
|
return false;
|
|
|
|
}
|