41 lines
1.9 KiB
Diff
41 lines
1.9 KiB
Diff
--- a/onionshare_cli/common.py
|
|
+++ b/onionshare_cli/common.py
|
|
@@ -86,33 +86,10 @@ class Common:
|
|
return path
|
|
|
|
def get_tor_paths(self):
|
|
- if self.platform == "Linux":
|
|
- tor_path = shutil.which("tor")
|
|
- if not tor_path:
|
|
- raise CannotFindTor()
|
|
- obfs4proxy_file_path = shutil.which("obfs4proxy")
|
|
- prefix = os.path.dirname(os.path.dirname(tor_path))
|
|
- tor_geo_ip_file_path = os.path.join(prefix, "share/tor/geoip")
|
|
- tor_geo_ipv6_file_path = os.path.join(prefix, "share/tor/geoip6")
|
|
- elif self.platform == "Windows":
|
|
- base_path = self.get_resource_path("tor")
|
|
- tor_path = os.path.join(base_path, "Tor", "tor.exe")
|
|
- obfs4proxy_file_path = os.path.join(base_path, "Tor", "obfs4proxy.exe")
|
|
- tor_geo_ip_file_path = os.path.join(base_path, "Data", "Tor", "geoip")
|
|
- tor_geo_ipv6_file_path = os.path.join(base_path, "Data", "Tor", "geoip6")
|
|
- elif self.platform == "Darwin":
|
|
- tor_path = shutil.which("tor")
|
|
- if not tor_path:
|
|
- raise CannotFindTor()
|
|
- obfs4proxy_file_path = shutil.which("obfs4proxy")
|
|
- prefix = os.path.dirname(os.path.dirname(tor_path))
|
|
- tor_geo_ip_file_path = os.path.join(prefix, "share/tor/geoip")
|
|
- tor_geo_ipv6_file_path = os.path.join(prefix, "share/tor/geoip6")
|
|
- elif self.platform == "BSD":
|
|
- tor_path = "/usr/local/bin/tor"
|
|
- tor_geo_ip_file_path = "/usr/local/share/tor/geoip"
|
|
- tor_geo_ipv6_file_path = "/usr/local/share/tor/geoip6"
|
|
- obfs4proxy_file_path = "/usr/local/bin/obfs4proxy"
|
|
+ tor_path = "@tor@/bin/tor"
|
|
+ tor_geo_ip_file_path = "@geoip@/share/tor/geoip"
|
|
+ tor_geo_ipv6_file_path = "@geoip@/share/tor/geoip6"
|
|
+ obfs4proxy_file_path = "@obfs4@/bin/obfs4proxy"
|
|
|
|
return (
|
|
tor_path,
|