2020-01-30 01:31:45 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2020 Ian McInerney <Ian.S.McInerney at ieee.org>
|
2021-07-18 14:06:48 +00:00
|
|
|
* Copyright (C) 2020-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2020-01-30 01:31:45 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <kiplatform/environment.h>
|
|
|
|
#include <wx/intl.h>
|
2021-01-23 02:23:37 +00:00
|
|
|
#include <wx/filename.h>
|
|
|
|
#include <wx/stdpaths.h>
|
2020-01-30 01:31:45 +00:00
|
|
|
#include <wx/string.h>
|
2021-11-11 14:29:25 +00:00
|
|
|
#include <wx/tokenzr.h>
|
2021-06-16 17:57:51 +00:00
|
|
|
#include <wx/app.h>
|
2020-01-30 01:31:45 +00:00
|
|
|
|
|
|
|
#include <Windows.h>
|
|
|
|
#include <shellapi.h>
|
2020-12-16 00:28:58 +00:00
|
|
|
#include <shlwapi.h>
|
2021-11-11 14:29:25 +00:00
|
|
|
#include <winhttp.h>
|
2020-01-30 01:31:45 +00:00
|
|
|
|
2021-03-23 19:09:57 +00:00
|
|
|
|
|
|
|
void KIPLATFORM::ENV::Init()
|
|
|
|
{
|
|
|
|
// No tasks for this platform
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-30 01:31:45 +00:00
|
|
|
bool KIPLATFORM::ENV::MoveToTrash( const wxString& aPath, wxString& aError )
|
|
|
|
{
|
|
|
|
// The filename field must be a double-null terminated string
|
|
|
|
wxString temp = aPath + '\0';
|
|
|
|
|
|
|
|
SHFILEOPSTRUCT fileOp;
|
|
|
|
::ZeroMemory( &fileOp, sizeof( fileOp ) );
|
|
|
|
|
2021-07-18 14:06:48 +00:00
|
|
|
fileOp.hwnd = nullptr; // Set to null since there is no progress dialog
|
2020-01-30 01:31:45 +00:00
|
|
|
fileOp.wFunc = FO_DELETE;
|
|
|
|
fileOp.pFrom = temp.c_str();
|
2021-07-18 14:06:48 +00:00
|
|
|
fileOp.pTo = nullptr; // Set to to NULL since we aren't moving the file
|
2020-01-30 01:31:45 +00:00
|
|
|
fileOp.fFlags = FOF_ALLOWUNDO | FOF_NOERRORUI | FOF_NOCONFIRMATION | FOF_SILENT;
|
|
|
|
|
|
|
|
int eVal = SHFileOperation( &fileOp );
|
|
|
|
|
|
|
|
if( eVal != 0 )
|
|
|
|
{
|
|
|
|
aError = wxString::Format( _( "Error code: %d" ), eVal );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2020-12-16 00:28:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool KIPLATFORM::ENV::IsNetworkPath( const wxString& aPath )
|
|
|
|
{
|
|
|
|
return ::PathIsNetworkPathW( aPath.wc_str() );
|
2021-01-23 02:23:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-28 00:11:39 +00:00
|
|
|
wxString KIPLATFORM::ENV::GetDocumentsPath()
|
2021-01-23 02:23:37 +00:00
|
|
|
{
|
2021-07-18 14:06:48 +00:00
|
|
|
// If called by a python script in stand-alone (outside KiCad), wxStandardPaths::Get()
|
2021-06-16 08:18:39 +00:00
|
|
|
// complains about not existing app. so use a dummy app
|
|
|
|
if( wxTheApp == nullptr )
|
|
|
|
{
|
|
|
|
wxApp dummy;
|
|
|
|
return wxStandardPaths::Get().GetDocumentsDir();
|
|
|
|
}
|
|
|
|
|
2021-01-23 02:23:37 +00:00
|
|
|
return wxStandardPaths::Get().GetDocumentsDir();
|
2021-01-23 04:35:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-28 00:11:39 +00:00
|
|
|
wxString KIPLATFORM::ENV::GetUserConfigPath()
|
2021-01-23 04:35:09 +00:00
|
|
|
{
|
2021-07-18 14:06:48 +00:00
|
|
|
// If called by a python script in stand-alone (outside KiCad), wxStandardPaths::Get()
|
2021-06-16 08:18:39 +00:00
|
|
|
// complains about not existing app. so use a dummy app
|
|
|
|
if( wxTheApp == nullptr )
|
|
|
|
{
|
|
|
|
wxApp dummy;
|
|
|
|
return wxStandardPaths::Get().GetUserConfigDir();
|
|
|
|
}
|
|
|
|
|
2021-01-23 04:35:09 +00:00
|
|
|
return wxStandardPaths::Get().GetUserConfigDir();
|
2021-01-23 16:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-28 00:11:39 +00:00
|
|
|
wxString KIPLATFORM::ENV::GetUserCachePath()
|
2021-01-23 16:59:19 +00:00
|
|
|
{
|
2021-06-09 19:32:58 +00:00
|
|
|
// Unfortunately AppData/Local is the closest analog to "Cache" directories of other platforms
|
2021-01-23 16:59:19 +00:00
|
|
|
|
2021-07-18 14:06:48 +00:00
|
|
|
// Make sure we don't include the "appinfo" (appended app name)
|
2021-06-16 08:18:39 +00:00
|
|
|
|
2021-07-18 14:06:48 +00:00
|
|
|
// If called by a python script in stand-alone (outside KiCad), wxStandardPaths::Get()
|
2021-06-16 08:18:39 +00:00
|
|
|
// complains about not existing app. so use a dummy app
|
|
|
|
if( wxTheApp == nullptr )
|
|
|
|
{
|
|
|
|
wxApp dummy;
|
|
|
|
wxStandardPaths::Get().UseAppInfo( wxStandardPaths::AppInfo_None );
|
|
|
|
|
|
|
|
return wxStandardPaths::Get().GetUserLocalDataDir();
|
|
|
|
}
|
|
|
|
|
2021-01-23 16:59:19 +00:00
|
|
|
wxStandardPaths::Get().UseAppInfo( wxStandardPaths::AppInfo_None );
|
|
|
|
|
|
|
|
return wxStandardPaths::Get().GetUserLocalDataDir();
|
2021-03-23 19:09:57 +00:00
|
|
|
}
|
2021-11-11 14:29:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool KIPLATFORM::ENV::GetSystemProxyConfig( const wxString& aURL, PROXY_CONFIG& aCfg )
|
|
|
|
{
|
2021-11-12 03:47:12 +00:00
|
|
|
// Original source from Microsoft sample (public domain)
|
|
|
|
// https://github.com/microsoft/Windows-classic-samples/blob/main/Samples/WinhttpProxy/cpp/GetProxy.cpp#L844
|
|
|
|
bool autoProxyDetect = false;
|
2021-11-11 14:29:25 +00:00
|
|
|
WINHTTP_CURRENT_USER_IE_PROXY_CONFIG ieProxyConfig = { 0 };
|
|
|
|
WINHTTP_AUTOPROXY_OPTIONS autoProxyOptions = { 0 };
|
|
|
|
WINHTTP_PROXY_INFO autoProxyInfo = { 0 };
|
2021-11-12 03:56:45 +00:00
|
|
|
HINTERNET proxyResolveSession = NULL;
|
2021-11-12 03:47:12 +00:00
|
|
|
bool success = false;
|
2021-11-11 14:29:25 +00:00
|
|
|
|
|
|
|
if( WinHttpGetIEProxyConfigForCurrentUser( &ieProxyConfig ) )
|
|
|
|
{
|
|
|
|
// welcome to the wonderful world of IE
|
|
|
|
// we use the ie config simply to handle it off to the other win32 api
|
|
|
|
if( ieProxyConfig.fAutoDetect )
|
|
|
|
{
|
2021-11-12 03:47:12 +00:00
|
|
|
autoProxyDetect = true;
|
2021-11-11 14:29:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( ieProxyConfig.lpszAutoConfigUrl != NULL )
|
|
|
|
{
|
2021-11-12 03:47:12 +00:00
|
|
|
autoProxyDetect = true;
|
2021-11-11 14:29:25 +00:00
|
|
|
autoProxyOptions.lpszAutoConfigUrl = ieProxyConfig.lpszAutoConfigUrl;
|
|
|
|
}
|
|
|
|
}
|
2021-11-14 02:23:32 +00:00
|
|
|
else if( GetLastError() == ERROR_FILE_NOT_FOUND )
|
2021-11-11 14:29:25 +00:00
|
|
|
{
|
2021-11-14 02:23:32 +00:00
|
|
|
// this is the only error code where we want to continue attempting to find a proxy
|
2021-11-12 03:47:12 +00:00
|
|
|
autoProxyDetect = true;
|
2021-11-11 14:29:25 +00:00
|
|
|
}
|
|
|
|
|
2021-11-12 03:47:12 +00:00
|
|
|
if( autoProxyDetect )
|
2021-11-11 14:29:25 +00:00
|
|
|
{
|
2021-11-12 03:56:45 +00:00
|
|
|
proxyResolveSession =
|
2021-11-12 04:58:34 +00:00
|
|
|
WinHttpOpen( NULL, WINHTTP_ACCESS_TYPE_AUTOMATIC_PROXY, WINHTTP_NO_PROXY_NAME,
|
2021-11-12 03:56:45 +00:00
|
|
|
WINHTTP_NO_PROXY_BYPASS, WINHTTP_FLAG_ASYNC );
|
|
|
|
|
2021-11-12 04:58:34 +00:00
|
|
|
if( proxyResolveSession )
|
2021-11-11 14:29:25 +00:00
|
|
|
{
|
2021-11-12 04:58:34 +00:00
|
|
|
// either we use the ie url or we set the auto detect mode
|
|
|
|
if( autoProxyOptions.lpszAutoConfigUrl != NULL )
|
|
|
|
{
|
|
|
|
autoProxyOptions.dwFlags = WINHTTP_AUTOPROXY_CONFIG_URL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
autoProxyOptions.dwFlags = WINHTTP_AUTOPROXY_AUTO_DETECT;
|
|
|
|
autoProxyOptions.dwAutoDetectFlags =
|
|
|
|
WINHTTP_AUTO_DETECT_TYPE_DHCP | WINHTTP_AUTO_DETECT_TYPE_DNS_A;
|
|
|
|
}
|
2021-11-11 14:29:25 +00:00
|
|
|
|
2021-11-14 02:23:32 +00:00
|
|
|
// dont do auto logon at first, this allows windows to use an cache
|
|
|
|
// per https://docs.microsoft.com/en-us/windows/win32/winhttp/autoproxy-cache
|
|
|
|
autoProxyOptions.fAutoLogonIfChallenged = FALSE;
|
2021-11-11 14:29:25 +00:00
|
|
|
|
2021-11-12 04:58:34 +00:00
|
|
|
autoProxyDetect = WinHttpGetProxyForUrl( proxyResolveSession, aURL.c_str(),
|
|
|
|
&autoProxyOptions, &autoProxyInfo );
|
2021-11-11 14:29:25 +00:00
|
|
|
|
2021-11-14 02:23:32 +00:00
|
|
|
if( !autoProxyDetect && GetLastError() == ERROR_WINHTTP_LOGIN_FAILURE )
|
|
|
|
{
|
|
|
|
autoProxyOptions.fAutoLogonIfChallenged = TRUE;
|
|
|
|
|
|
|
|
// try again with auto login now
|
|
|
|
autoProxyDetect = WinHttpGetProxyForUrl( proxyResolveSession, aURL.c_str(),
|
|
|
|
&autoProxyOptions, &autoProxyInfo );
|
|
|
|
}
|
|
|
|
|
2021-11-12 03:56:45 +00:00
|
|
|
WinHttpCloseHandle( proxyResolveSession );
|
2021-11-11 14:29:25 +00:00
|
|
|
}
|
2021-11-12 04:58:34 +00:00
|
|
|
|
2021-11-11 14:29:25 +00:00
|
|
|
}
|
|
|
|
|
2021-11-12 03:47:12 +00:00
|
|
|
if( autoProxyDetect )
|
2021-11-11 14:29:25 +00:00
|
|
|
{
|
|
|
|
if( autoProxyInfo.dwAccessType == WINHTTP_ACCESS_TYPE_NAMED_PROXY )
|
|
|
|
{
|
|
|
|
// autoProxyInfo will return a list of proxies that are semicolon delimited
|
|
|
|
// todo...maybe figure out better selection logic
|
|
|
|
wxString proxyList = autoProxyInfo.lpszProxy;
|
|
|
|
wxStringTokenizer tokenizer( proxyList, ";" );
|
|
|
|
|
|
|
|
if( tokenizer.HasMoreTokens() )
|
|
|
|
{
|
|
|
|
aCfg.host = tokenizer.GetNextToken();
|
|
|
|
}
|
|
|
|
|
2021-11-12 03:47:12 +00:00
|
|
|
success = true;
|
2021-11-11 14:29:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( ieProxyConfig.lpszProxy != NULL )
|
|
|
|
{
|
|
|
|
// ie proxy configs may return : or :: for an empty proxy
|
|
|
|
|
|
|
|
aCfg.host = ieProxyConfig.lpszProxy;
|
|
|
|
|
|
|
|
if(aCfg.host != ":" && aCfg.host != "::")
|
|
|
|
{
|
2021-11-12 03:47:12 +00:00
|
|
|
success = true;
|
2021-11-11 14:29:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 03:47:12 +00:00
|
|
|
// We have to clean up the strings the win32 api returned
|
|
|
|
if( autoProxyInfo.lpszProxy )
|
|
|
|
{
|
|
|
|
GlobalFree( autoProxyInfo.lpszProxy );
|
|
|
|
autoProxyInfo.lpszProxy = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( autoProxyInfo.lpszProxyBypass )
|
|
|
|
{
|
|
|
|
GlobalFree( autoProxyInfo.lpszProxyBypass );
|
|
|
|
autoProxyInfo.lpszProxyBypass = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ieProxyConfig.lpszAutoConfigUrl != NULL )
|
|
|
|
{
|
|
|
|
GlobalFree( ieProxyConfig.lpszAutoConfigUrl );
|
|
|
|
ieProxyConfig.lpszAutoConfigUrl = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ieProxyConfig.lpszProxy != NULL )
|
|
|
|
{
|
|
|
|
GlobalFree( ieProxyConfig.lpszProxy );
|
|
|
|
ieProxyConfig.lpszProxy = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ieProxyConfig.lpszProxyBypass != NULL )
|
|
|
|
{
|
|
|
|
GlobalFree( ieProxyConfig.lpszProxyBypass );
|
|
|
|
ieProxyConfig.lpszProxyBypass = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return success;
|
2021-11-11 14:29:25 +00:00
|
|
|
}
|