mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
Create a group container for macOS sandbox, and on Mac put the Tor data dir in it
This commit is contained in:
parent
0794d7fb90
commit
d8b873a208
@ -4,6 +4,8 @@
|
||||
<dict>
|
||||
<key>com.apple.security.app-sandbox</key>
|
||||
<true/>
|
||||
<key>com.apple.security.network.server</key>
|
||||
<true/>
|
||||
<key>com.apple.security.network.client</key>
|
||||
<true/>
|
||||
<key>com.apple.security.files.user-selected.read-only</key>
|
||||
@ -12,5 +14,9 @@
|
||||
<array>
|
||||
<string>/OnionShare</string>
|
||||
</array>
|
||||
<key>com.apple.security.application-groups</key>
|
||||
<array>
|
||||
<string>com.micahflee.onionshare</string>
|
||||
</array>
|
||||
</dict>
|
||||
</plist>
|
||||
|
@ -166,7 +166,12 @@ class Onion(object):
|
||||
raise BundledTorNotSupported(strings._('settings_error_bundled_tor_not_supported'))
|
||||
|
||||
# Create a torrc for this session
|
||||
self.tor_data_directory = tempfile.TemporaryDirectory()
|
||||
if self.common.platform == 'Darwin':
|
||||
group_container_dir = os.path.expanduser('~/Library/Group Containers/com.micahflee.onionshare')
|
||||
os.makedirs(group_container_dir, exist_ok=True)
|
||||
self.tor_data_directory = tempfile.TemporaryDirectory(dir=group_container_dir)
|
||||
else:
|
||||
self.tor_data_directory = tempfile.TemporaryDirectory()
|
||||
|
||||
if self.common.platform == 'Windows':
|
||||
# Windows needs to use network ports, doesn't support unix sockets
|
||||
|
@ -163,11 +163,7 @@ class Settings(object):
|
||||
Save settings to file.
|
||||
"""
|
||||
self.common.log('Settings', 'save')
|
||||
|
||||
try:
|
||||
os.makedirs(os.path.dirname(self.filename))
|
||||
except:
|
||||
pass
|
||||
os.makedirs(os.path.dirname(self.filename), exist_ok=True)
|
||||
open(self.filename, 'w').write(json.dumps(self._settings))
|
||||
self.common.log('Settings', 'save', 'Settings saved in {}'.format(self.filename))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user