2020-10-14 08:37:03 +08:00
|
|
|
|
#include "qtcommon.h"
|
|
|
|
|
#include "devtools.h"
|
2021-01-15 21:07:23 +08:00
|
|
|
|
#include <ShlObj.h>
|
2020-10-14 08:37:03 +08:00
|
|
|
|
|
|
|
|
|
extern const wchar_t* TRANSLATION_ERROR;
|
2021-01-21 22:07:09 +08:00
|
|
|
|
extern Synchronized<std::wstring> translateTo, translateFrom;
|
2021-01-15 21:07:23 +08:00
|
|
|
|
extern QFormLayout* display;
|
|
|
|
|
extern Settings settings;
|
2020-10-14 08:37:03 +08:00
|
|
|
|
|
|
|
|
|
const char* TRANSLATION_PROVIDER = "DevTools DeepL Translate";
|
2021-01-15 21:07:23 +08:00
|
|
|
|
const char* GET_API_KEY_FROM = nullptr;
|
|
|
|
|
bool translateSelectedOnly = true, rateLimitAll = false, rateLimitSelected = false, useCache = true;
|
2021-01-16 00:32:23 +08:00
|
|
|
|
int tokenCount = 30, tokenRestoreDelay = 60000, maxSentenceSize = 2500;
|
2021-01-15 21:07:23 +08:00
|
|
|
|
|
|
|
|
|
extern const char* CHROME_LOCATION;
|
|
|
|
|
extern const char* START_DEVTOOLS;
|
|
|
|
|
extern const char* STOP_DEVTOOLS;
|
|
|
|
|
extern const char* HEADLESS_MODE;
|
|
|
|
|
extern const char* DEVTOOLS_STATUS;
|
|
|
|
|
extern const char* AUTO_START;
|
|
|
|
|
extern const wchar_t* ERROR_START_CHROME;
|
|
|
|
|
|
|
|
|
|
QStringList languages
|
2020-10-14 08:37:03 +08:00
|
|
|
|
{
|
|
|
|
|
"Chinese (simplified): zh",
|
|
|
|
|
"Dutch: nl",
|
|
|
|
|
"English: en",
|
|
|
|
|
"French: fr",
|
|
|
|
|
"German: de",
|
|
|
|
|
"Italian: it",
|
|
|
|
|
"Japanese: ja",
|
|
|
|
|
"Polish: pl",
|
|
|
|
|
"Portuguese: pt",
|
|
|
|
|
"Russian: ru",
|
|
|
|
|
"Spanish: es",
|
|
|
|
|
};
|
2021-01-21 22:07:09 +08:00
|
|
|
|
std::wstring autoDetectLanguage = L"auto";
|
2020-10-14 08:37:03 +08:00
|
|
|
|
|
2021-01-15 21:07:23 +08:00
|
|
|
|
BOOL WINAPI DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
|
2020-10-14 08:37:03 +08:00
|
|
|
|
{
|
2021-01-15 21:07:23 +08:00
|
|
|
|
switch (ul_reason_for_call)
|
2020-10-23 04:15:45 +08:00
|
|
|
|
{
|
2021-01-15 21:07:23 +08:00
|
|
|
|
case DLL_PROCESS_ATTACH:
|
2020-10-20 07:08:59 +08:00
|
|
|
|
{
|
2021-01-15 21:07:23 +08:00
|
|
|
|
QString chromePath = settings.value(CHROME_LOCATION).toString();
|
|
|
|
|
wchar_t programFiles[MAX_PATH + 100] = {};
|
|
|
|
|
if (chromePath.isEmpty()) for (auto folder : { CSIDL_PROGRAM_FILESX86, CSIDL_PROGRAM_FILES, CSIDL_LOCAL_APPDATA })
|
2020-10-18 21:16:06 +08:00
|
|
|
|
{
|
2021-01-15 21:07:23 +08:00
|
|
|
|
SHGetFolderPathW(NULL, folder, NULL, SHGFP_TYPE_CURRENT, programFiles);
|
|
|
|
|
wcscat_s(programFiles, L"/Google/Chrome/Application/chrome.exe");
|
|
|
|
|
if (std::filesystem::exists(programFiles)) chromePath = S(programFiles);
|
2020-10-18 21:16:06 +08:00
|
|
|
|
}
|
2021-01-15 21:07:23 +08:00
|
|
|
|
auto chromePathEdit = new QLineEdit(chromePath);
|
|
|
|
|
QObject::connect(chromePathEdit, &QLineEdit::textChanged, [chromePathEdit](QString path) { settings.setValue(CHROME_LOCATION, path); });
|
|
|
|
|
display->addRow(CHROME_LOCATION, chromePathEdit);
|
|
|
|
|
auto statusLabel = new QLabel("Stopped");
|
|
|
|
|
auto startButton = new QPushButton(START_DEVTOOLS), stopButton = new QPushButton(STOP_DEVTOOLS);
|
2021-01-19 09:58:21 +08:00
|
|
|
|
auto headlessCheck = new QCheckBox();
|
|
|
|
|
headlessCheck->setChecked(settings.value(HEADLESS_MODE, true).toBool());
|
|
|
|
|
QObject::connect(headlessCheck, &QCheckBox::clicked, [](bool headless) { settings.setValue(HEADLESS_MODE, headless); });
|
|
|
|
|
QObject::connect(startButton, &QPushButton::clicked, [statusLabel, chromePathEdit, headlessCheck] {
|
2021-01-15 21:07:23 +08:00
|
|
|
|
DevTools::Start(
|
|
|
|
|
S(chromePathEdit->text()),
|
2021-01-16 00:32:23 +08:00
|
|
|
|
[statusLabel](QString status)
|
|
|
|
|
{
|
|
|
|
|
QMetaObject::invokeMethod(statusLabel, std::bind(&QLabel::setText, statusLabel, status));
|
|
|
|
|
if (status == "ConnectedState") std::thread([]
|
|
|
|
|
{
|
|
|
|
|
if (HttpRequest httpRequest{
|
|
|
|
|
L"Mozilla/5.0 Textractor",
|
|
|
|
|
L"127.0.0.1",
|
|
|
|
|
L"POST",
|
|
|
|
|
L"/json/version",
|
|
|
|
|
"",
|
|
|
|
|
NULL,
|
|
|
|
|
9222,
|
|
|
|
|
NULL,
|
|
|
|
|
WINHTTP_FLAG_ESCAPE_DISABLE
|
|
|
|
|
})
|
|
|
|
|
if (auto userAgent = Copy(JSON::Parse(httpRequest.response)[L"User-Agent"].String()))
|
|
|
|
|
if (userAgent->find(L"Headless") != std::string::npos)
|
|
|
|
|
DevTools::SendRequest(L"Network.setUserAgentOverride",
|
|
|
|
|
FormatString(LR"({"userAgent":"%s"})", userAgent->replace(userAgent->find(L"Headless"), 8, L"")));
|
|
|
|
|
}).detach();
|
|
|
|
|
},
|
2021-01-19 09:58:21 +08:00
|
|
|
|
headlessCheck->isChecked()
|
2021-01-15 21:07:23 +08:00
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
QObject::connect(stopButton, &QPushButton::clicked, &DevTools::Close);
|
|
|
|
|
auto buttons = new QHBoxLayout();
|
|
|
|
|
buttons->addWidget(startButton);
|
|
|
|
|
buttons->addWidget(stopButton);
|
2021-01-19 09:58:21 +08:00
|
|
|
|
display->addRow(HEADLESS_MODE, headlessCheck);
|
2021-01-16 00:32:23 +08:00
|
|
|
|
auto autoStartButton = new QCheckBox();
|
2021-01-15 21:07:23 +08:00
|
|
|
|
autoStartButton->setChecked(settings.value(AUTO_START, false).toBool());
|
2021-01-16 00:32:23 +08:00
|
|
|
|
QObject::connect(autoStartButton, &QCheckBox::clicked, [](bool autoStart) { settings.setValue(AUTO_START, autoStart); });
|
|
|
|
|
display->addRow(AUTO_START, autoStartButton);
|
|
|
|
|
display->addRow(buttons);
|
2021-01-15 21:07:23 +08:00
|
|
|
|
statusLabel->setFrameStyle(QFrame::Panel | QFrame::Sunken);
|
|
|
|
|
display->addRow(DEVTOOLS_STATUS, statusLabel);
|
2021-01-16 00:32:23 +08:00
|
|
|
|
if (autoStartButton->isChecked()) QMetaObject::invokeMethod(startButton, &QPushButton::click, Qt::QueuedConnection);
|
2021-01-15 21:07:23 +08:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
|
{
|
|
|
|
|
DevTools::Close();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::pair<bool, std::wstring> Translate(const std::wstring& text)
|
|
|
|
|
{
|
|
|
|
|
if (!DevTools::Connected()) return { false, FormatString(L"%s: %s", TRANSLATION_ERROR, ERROR_START_CHROME) };
|
|
|
|
|
// DevTools can't handle concurrent translations yet
|
|
|
|
|
static std::mutex translationMutex;
|
|
|
|
|
std::scoped_lock lock(translationMutex);
|
2021-01-21 22:07:09 +08:00
|
|
|
|
DevTools::SendRequest(L"Page.navigate", FormatString(LR"({"url":"https://www.deepl.com/translator#%s/%s/%s"})", translateFrom.Copy(), translateTo.Copy(), Escape(text)));
|
2021-01-16 00:32:23 +08:00
|
|
|
|
for (int retry = 0; ++retry < 100; Sleep(100))
|
2021-01-21 22:07:09 +08:00
|
|
|
|
if (auto translation = Copy(
|
|
|
|
|
DevTools::SendRequest(L"Runtime.evaluate", LR"({"expression":"document.querySelector('#target-dummydiv').innerHTML","returnByValue":true})")[L"result"][L"value"].String()
|
|
|
|
|
)) if (!translation->empty()) return { true, translation.value() };
|
|
|
|
|
if (auto errorMessage = Copy(
|
|
|
|
|
DevTools::SendRequest(
|
|
|
|
|
L"Runtime.evaluate",
|
|
|
|
|
LR"({"expression":"document.querySelector('div.lmt__system_notification').innerHTML","returnByValue":true})"
|
|
|
|
|
)[L"result"][L"value"].String()
|
|
|
|
|
)) return { false, FormatString(L"%s: %s", TRANSLATION_ERROR, errorMessage.value()) };
|
2021-01-15 21:07:23 +08:00
|
|
|
|
return { false, TRANSLATION_ERROR };
|
2021-01-21 22:07:09 +08:00
|
|
|
|
}
|