2018-03-18 00:45:45 +01:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-03-18 00:45:45 +01:00
|
|
|
|
|
|
|
#include <windows.h>
|
2018-04-25 22:38:10 +02:00
|
|
|
#include <ShlObj.h>
|
2018-03-18 00:45:45 +01:00
|
|
|
#include <shellapi.h>
|
2019-03-03 13:56:54 +01:00
|
|
|
|
2019-07-04 21:33:11 +02:00
|
|
|
#include <optional>
|
2019-02-25 23:08:03 +01:00
|
|
|
#include <string>
|
2018-03-18 00:45:45 +01:00
|
|
|
#include <vector>
|
|
|
|
|
2019-10-06 22:17:00 +02:00
|
|
|
#include "Common/CommonFuncs.h"
|
2019-03-03 13:56:54 +01:00
|
|
|
#include "Common/StringUtil.h"
|
2018-03-18 00:45:45 +01:00
|
|
|
|
2019-02-25 23:08:03 +01:00
|
|
|
#include "UpdaterCommon/UI.h"
|
|
|
|
#include "UpdaterCommon/UpdaterCommon.h"
|
2018-03-28 00:28:40 +02:00
|
|
|
|
2021-03-13 02:10:53 +01:00
|
|
|
// Refer to docs/autoupdate_overview.md for a detailed overview of the autoupdate process
|
|
|
|
|
2018-03-18 00:45:45 +01:00
|
|
|
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR pCmdLine, int nCmdShow)
|
|
|
|
{
|
2018-05-05 23:07:39 +02:00
|
|
|
if (lstrlenW(pCmdLine) == 0)
|
|
|
|
{
|
2022-09-11 08:21:12 +02:00
|
|
|
MessageBoxW(nullptr,
|
|
|
|
L"This updater is not meant to be launched directly. Configure Auto-Update in "
|
|
|
|
"Dolphin's settings instead.",
|
|
|
|
L"Error", MB_ICONERROR);
|
2018-05-05 23:07:39 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-03-03 13:56:54 +01:00
|
|
|
// Test for write permissions
|
2018-04-25 22:38:10 +02:00
|
|
|
bool need_admin = false;
|
|
|
|
|
2023-04-18 18:50:31 +02:00
|
|
|
auto path = Common::GetModuleName(hInstance);
|
2022-11-16 02:41:25 +01:00
|
|
|
if (!path)
|
|
|
|
{
|
|
|
|
UI::Error("Failed to get updater filename.");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2022-11-22 01:36:04 +01:00
|
|
|
const auto test_fh = ::CreateFileW(
|
|
|
|
(std::filesystem::path(*path).parent_path() / "directory_writable_check.tmp").c_str(),
|
|
|
|
GENERIC_WRITE, 0, nullptr, CREATE_ALWAYS,
|
|
|
|
FILE_ATTRIBUTE_TEMPORARY | FILE_FLAG_DELETE_ON_CLOSE, nullptr);
|
2018-03-18 00:45:45 +01:00
|
|
|
|
2022-11-22 01:36:04 +01:00
|
|
|
if (test_fh == INVALID_HANDLE_VALUE)
|
2019-03-03 13:56:54 +01:00
|
|
|
need_admin = true;
|
|
|
|
else
|
2022-11-22 01:36:04 +01:00
|
|
|
CloseHandle(test_fh);
|
2018-03-18 00:45:45 +01:00
|
|
|
|
2018-04-25 22:38:10 +02:00
|
|
|
if (need_admin)
|
|
|
|
{
|
|
|
|
if (IsUserAnAdmin())
|
|
|
|
{
|
2019-03-03 13:56:54 +01:00
|
|
|
MessageBox(nullptr, L"Failed to write to directory despite administrator priviliges.",
|
|
|
|
L"Error", MB_ICONERROR);
|
2018-04-25 22:38:10 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Relaunch the updater as administrator
|
2023-04-15 06:55:53 +02:00
|
|
|
ShellExecuteW(nullptr, L"runas", path->c_str(), pCmdLine, nullptr, SW_SHOW);
|
2018-04-25 22:38:10 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2018-03-28 00:28:40 +02:00
|
|
|
|
2023-05-16 20:23:21 +02:00
|
|
|
std::vector<std::string> args = Common::CommandLineToUtf8Argv(pCmdLine);
|
2018-03-28 00:28:40 +02:00
|
|
|
|
2019-03-03 13:56:54 +01:00
|
|
|
return RunUpdater(args) ? 0 : 1;
|
2018-03-18 00:45:45 +01:00
|
|
|
}
|