mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
opening links in private browsing mode (windows)
tested on firefox, chrome and internet explorer
This commit is contained in:
parent
bf8bf37eab
commit
d14a4df9e3
|
@ -1,40 +1,50 @@
|
|||
#include "incognitobrowser.hpp"
|
||||
#include "IncognitoBrowser.hpp"
|
||||
|
||||
#include <QProcess>
|
||||
#include <QRegularExpression>
|
||||
#include <QSettings>
|
||||
#include <QVariant>
|
||||
|
||||
#include "debug/Log.hpp"
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
|
||||
namespace chatterino {
|
||||
namespace {
|
||||
QString getAppPath(const QString &executableName)
|
||||
#ifdef Q_OS_WIN
|
||||
QString injectPrivateSwitch(QString command)
|
||||
{
|
||||
auto paths = QStringList{
|
||||
// clang-format off
|
||||
"HKEY_CURRENT_USER\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\" + executableName,
|
||||
"HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\" + executableName
|
||||
// clang-format on
|
||||
// list of command line switches to turn on private browsing in browsers
|
||||
static auto switches = std::vector<std::pair<QString, QString>>{
|
||||
{"firefox", "-private-window"}, {"chrome", "-incognito"},
|
||||
{"vivaldi", "--private"}, {"opera", "-newprivatetab"},
|
||||
{"iexplore", "-private"},
|
||||
};
|
||||
|
||||
for (const auto &path : paths) {
|
||||
auto val = QSettings(path, QSettings::NativeFormat)
|
||||
.value("Default")
|
||||
.toString();
|
||||
if (!val.isNull()) {
|
||||
return val;
|
||||
// transform into regex and replacement string
|
||||
std::vector<std::pair<QRegularExpression, QString>> replacers;
|
||||
for (const auto &switch_ : switches) {
|
||||
replacers.emplace_back(
|
||||
QRegularExpression("(" + switch_.first + "\\.exe\"?).*"),
|
||||
"\\1 " + switch_.second);
|
||||
|
||||
log("(" + switch_.first + "\\.exe\"?).*");
|
||||
}
|
||||
|
||||
// try to find matching regex and apply it
|
||||
for (const auto &replacement : replacers) {
|
||||
if (replacement.first.match(command).hasMatch()) {
|
||||
command.replace(replacement.first, replacement.second);
|
||||
return command;
|
||||
}
|
||||
}
|
||||
|
||||
// couldn't match any browser -> unknown browser
|
||||
return QString();
|
||||
}
|
||||
} // namespace
|
||||
|
||||
void openLinkIncognito(const QString &link)
|
||||
{
|
||||
auto browserChoice = QSettings("HKEY_CURRENT_"
|
||||
QString getCommand(const QString &link)
|
||||
{
|
||||
// get default browser prog id
|
||||
auto browserId = QSettings("HKEY_CURRENT_"
|
||||
"USER\\Software\\Microsoft\\Windows\\Shell\\"
|
||||
"Associations\\UrlAssociatio"
|
||||
"ns\\http\\UserChoice",
|
||||
|
@ -42,33 +52,44 @@ void openLinkIncognito(const QString &link)
|
|||
.value("Progid")
|
||||
.toString();
|
||||
|
||||
if (!browserChoice.isNull()) {
|
||||
if (browserChoice == "FirefoxURL") {
|
||||
// Firefox
|
||||
auto path = getAppPath("firefox.exe");
|
||||
// get default browser start command
|
||||
auto command = QSettings("HKEY_CLASSES_ROOT\\" + browserId +
|
||||
"\\shell\\open\\command",
|
||||
QSettings::NativeFormat)
|
||||
.value("Default")
|
||||
.toString();
|
||||
if (command.isNull()) return QString();
|
||||
|
||||
QProcess::startDetached(path, {"-private-window", link});
|
||||
} else if (browserChoice == "ChromeHTML") {
|
||||
// Chrome
|
||||
auto path = getAppPath("chrome.exe");
|
||||
log(command);
|
||||
|
||||
QProcess::startDetached(path, {"-incognito", link});
|
||||
}
|
||||
// Possible implementation for MS Edge.
|
||||
// Doesn't quite work yet.
|
||||
/*
|
||||
else if (browserChoice == "AppXq0fevzme2pys62n3e0fbqa7peapykr8v") {
|
||||
// Edge
|
||||
QProcess::startDetached("C:\\Windows\\System32\\cmd.exe",
|
||||
{"/c", "start",
|
||||
"shell:AppsFolder\Microsoft.MicrosoftEdge_"
|
||||
"8wekyb3d8bbwe!MicrosoftEdge",
|
||||
"-private", link});
|
||||
}
|
||||
*/
|
||||
// inject switch to enable private browsing
|
||||
command = injectPrivateSwitch(command);
|
||||
if (command.isNull()) return QString();
|
||||
|
||||
// link
|
||||
command += " " + link;
|
||||
|
||||
return command;
|
||||
}
|
||||
#endif
|
||||
} // namespace
|
||||
|
||||
bool supportsIncognitoLinks()
|
||||
{
|
||||
#ifdef Q_OS_WIN
|
||||
return !getCommand("").isNull();
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
void openLinkIncognito(const QString &link)
|
||||
{
|
||||
#ifdef Q_OS_WIN
|
||||
auto command = getCommand(link);
|
||||
|
||||
QProcess::startDetached(command);
|
||||
#endif
|
||||
}
|
||||
|
||||
} // namespace chatterino
|
||||
|
||||
#endif
|
||||
|
|
|
@ -2,13 +2,9 @@
|
|||
|
||||
#include <QtGlobal>
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
|
||||
// only supported on windows right now
|
||||
# define INCOGNITO_LINKS_SUPPORTED
|
||||
|
||||
namespace chatterino {
|
||||
void openLinkIncognito(const QString &link);
|
||||
}
|
||||
|
||||
#endif
|
||||
bool supportsIncognitoLinks();
|
||||
void openLinkIncognito(const QString &link);
|
||||
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
#include "singletons/Theme.hpp"
|
||||
#include "singletons/WindowManager.hpp"
|
||||
#include "util/DistanceBetweenPoints.hpp"
|
||||
#include "util/IncognitoBrowser.hpp"
|
||||
#include "widgets/Scrollbar.hpp"
|
||||
#include "widgets/TooltipWidget.hpp"
|
||||
#include "widgets/dialogs/UserInfoPopup.hpp"
|
||||
|
@ -1222,6 +1223,10 @@ void ChannelView::addContextMenuItems(
|
|||
|
||||
menu->addAction("Open link",
|
||||
[url] { QDesktopServices::openUrl(QUrl(url)); });
|
||||
if (supportsIncognitoLinks()) {
|
||||
menu->addAction("Open link incognito",
|
||||
[url] { openLinkIncognito(url); });
|
||||
}
|
||||
menu->addAction("Copy link",
|
||||
[url] { QApplication::clipboard()->setText(url); });
|
||||
|
||||
|
@ -1256,15 +1261,8 @@ void ChannelView::addContextMenuItems(
|
|||
R"(^(?:https?:\/\/)?(?:www\.|go\.)?twitch\.tv\/(?<username>[a-z0-9_]{3,}))",
|
||||
QRegularExpression::CaseInsensitiveOption);
|
||||
static QSet<QString> ignoredUsernames{
|
||||
"videos",
|
||||
"settings",
|
||||
"directory",
|
||||
"jobs",
|
||||
"friends",
|
||||
"inventory",
|
||||
"payments",
|
||||
"subscriptions",
|
||||
"messages",
|
||||
"videos", "settings", "directory", "jobs", "friends",
|
||||
"inventory", "payments", "subscriptions", "messages",
|
||||
};
|
||||
|
||||
auto twitchMatch =
|
||||
|
|
|
@ -469,10 +469,7 @@ void SplitContainer::paintEvent(QPaintEvent *)
|
|||
|
||||
if (notebook != nullptr) {
|
||||
if (notebook->getPageCount() > 1) {
|
||||
text +=
|
||||
"\n\nTip: After adding a split you can hold <Ctrl+Alt> to "
|
||||
"move it or split it "
|
||||
"further.";
|
||||
text += "\n\nAfter adding hold <Ctrl+Alt> to move or split it.";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue