mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Undo gobcj++ and move loca server path code for macos into its own Objective-C++ file
This commit is contained in:
parent
bb5559efe2
commit
7f954aeb3e
6 changed files with 46 additions and 22 deletions
2
.github/workflows/codeql.yml
vendored
2
.github/workflows/codeql.yml
vendored
|
@ -36,7 +36,7 @@ jobs:
|
|||
name: Install dependencies
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install build-essential cmake gobjc++
|
||||
sudo apt install build-essential cmake g++
|
||||
sudo apt install qtbase5-dev qtbase5-private-dev qttools5-dev qttools5-dev-tools libqt5svg5-dev libargon2-dev libkeyutils-dev libminizip-dev libbotan-2-dev libqrencode-dev zlib1g-dev asciidoctor libreadline-dev libpcsclite-dev libusb-1.0-0-dev libxi-dev libxtst-dev libqt5x11extras5-dev
|
||||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#endif
|
||||
|
||||
#if defined(Q_OS_MACOS)
|
||||
#include <Foundation/Foundation.h>
|
||||
#include "BrowserSharedMac.h"
|
||||
#endif
|
||||
|
||||
namespace BrowserShared
|
||||
|
@ -58,24 +58,7 @@ namespace BrowserShared
|
|||
// Windows uses named pipes
|
||||
return serverName + "_" + qgetenv("USERNAME");
|
||||
#elif defined(Q_OS_MACOS)
|
||||
NSString *appGroupIdentifier = @"G2S7P7J672.org.keepassxc.KeePassXC";
|
||||
|
||||
// Get the container URL for the app group identifier
|
||||
NSURL *containerURL = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:appGroupIdentifier];
|
||||
|
||||
// Convert the NSURL to a string (path)
|
||||
NSString *containerPath = [containerURL path];
|
||||
|
||||
// Convert NSString to QString
|
||||
QString homePath = QString::fromNSString(containerPath);
|
||||
|
||||
// Make sure the directory exists
|
||||
QDir().mkpath(homePath);
|
||||
|
||||
// The path will become too long therefore we must cut off serverName
|
||||
QString socketPath = homePath + "/KeePassXC.BrowserServer";
|
||||
|
||||
return socketPath;
|
||||
return macOSLocalServerPath();
|
||||
#else // others
|
||||
return QStandardPaths::writableLocation(QStandardPaths::TempLocation) + serverName;
|
||||
#endif
|
6
src/browser/BrowserSharedMac.h
Normal file
6
src/browser/BrowserSharedMac.h
Normal file
|
@ -0,0 +1,6 @@
|
|||
#include <QString>
|
||||
|
||||
namespace BrowserShared
|
||||
{
|
||||
QString macOSLocalServerPath();
|
||||
}
|
25
src/browser/BrowserSharedMac.mm
Normal file
25
src/browser/BrowserSharedMac.mm
Normal file
|
@ -0,0 +1,25 @@
|
|||
#include <Foundation/Foundation.h>
|
||||
#include <QDir>
|
||||
#include <QString>
|
||||
|
||||
namespace BrowserShared
|
||||
{
|
||||
QString macOSLocalServerPath()
|
||||
{
|
||||
NSString *appGroupIdentifier = @"G2S7P7J672.org.keepassxc.KeePassXC";
|
||||
|
||||
// Get the container URL for the app group identifier
|
||||
NSURL *containerURL = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:appGroupIdentifier];
|
||||
|
||||
NSString *containerPath = [containerURL path];
|
||||
|
||||
QString homePath = QString::fromNSString(containerPath);
|
||||
|
||||
QDir().mkpath(homePath);
|
||||
|
||||
// The path will become too long therefore we must cut off serverName
|
||||
QString socketPath = homePath + "/KeePassXC.BrowserServer";
|
||||
|
||||
return socketPath;
|
||||
}
|
||||
}
|
|
@ -27,10 +27,15 @@ if(WITH_XC_BROWSER)
|
|||
BrowserSettingsWidget.cpp
|
||||
BrowserService.cpp
|
||||
BrowserSettings.cpp
|
||||
BrowserShared.mm
|
||||
BrowserShared.cpp
|
||||
CustomTableWidget.cpp
|
||||
NativeMessageInstaller.cpp)
|
||||
|
||||
if(APPLE)
|
||||
list(APPEND browser_SOURCES
|
||||
BrowserSharedMac.mm)
|
||||
endif()
|
||||
|
||||
if(WITH_XC_BROWSER_PASSKEYS)
|
||||
list(APPEND browser_SOURCES
|
||||
BrowserCbor.cpp
|
||||
|
|
|
@ -15,10 +15,15 @@
|
|||
|
||||
if(WITH_XC_BROWSER)
|
||||
set(proxy_SOURCES
|
||||
../browser/BrowserShared.mm
|
||||
../browser/BrowserShared.cpp
|
||||
keepassxc-proxy.cpp
|
||||
NativeMessagingProxy.cpp)
|
||||
|
||||
if(APPLE)
|
||||
list(APPEND proxy_SOURCES
|
||||
../browser/BrowserSharedMac.mm)
|
||||
endif()
|
||||
|
||||
# Alloc must be defined in a static library to prevent clashing with clang ASAN definitions
|
||||
add_library(proxy_alloc STATIC ../core/Alloc.cpp)
|
||||
target_link_libraries(proxy_alloc PRIVATE Qt5::Core ${BOTAN_LIBRARIES})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue