2019-09-10 00:54:28 +00:00
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2013-10-12
|
|
|
|
# Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
#
|
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
|
|
|
|
import os.path as op
|
|
|
|
import logging
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2019-09-10 00:54:28 +00:00
|
|
|
class SpecialFolder:
|
2021-08-21 21:56:27 +00:00
|
|
|
APPDATA = 1
|
|
|
|
CACHE = 2
|
2019-09-10 00:54:28 +00:00
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2019-09-10 00:54:28 +00:00
|
|
|
def open_url(url):
|
2021-08-15 09:10:18 +00:00
|
|
|
"""Open ``url`` with the default browser."""
|
2019-09-10 00:54:28 +00:00
|
|
|
_open_url(url)
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2019-09-10 00:54:28 +00:00
|
|
|
def open_path(path):
|
2021-08-15 09:10:18 +00:00
|
|
|
"""Open ``path`` with its associated application."""
|
2019-09-10 00:54:28 +00:00
|
|
|
_open_path(str(path))
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2019-09-10 00:54:28 +00:00
|
|
|
def reveal_path(path):
|
2021-08-15 09:10:18 +00:00
|
|
|
"""Open the folder containing ``path`` with the default file browser."""
|
2019-09-10 00:54:28 +00:00
|
|
|
_reveal_path(str(path))
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2021-08-18 02:04:09 +00:00
|
|
|
def special_folder_path(special_folder, appname=None, portable=False):
|
2019-09-10 00:54:28 +00:00
|
|
|
"""Returns the path of ``special_folder``.
|
|
|
|
|
|
|
|
``special_folder`` is a SpecialFolder.* const. The result is the special folder for the current
|
|
|
|
application. The running process' application info is used to determine relevant information.
|
|
|
|
|
|
|
|
You can override the application name with ``appname``. This argument is ingored under Qt.
|
|
|
|
"""
|
2021-08-18 02:04:09 +00:00
|
|
|
return _special_folder_path(special_folder, appname, portable=portable)
|
2019-09-10 00:54:28 +00:00
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2019-09-10 00:54:28 +00:00
|
|
|
try:
|
|
|
|
# Normally, we would simply do "from cocoa import proxy", but due to a bug in pytest (currently
|
|
|
|
# at v2.4.2), our test suite is broken when we do that. This below is a workaround until that
|
|
|
|
# bug is fixed.
|
|
|
|
import cocoa
|
2020-01-01 02:16:27 +00:00
|
|
|
|
|
|
|
if not hasattr(cocoa, "proxy"):
|
2019-09-10 00:54:28 +00:00
|
|
|
raise ImportError()
|
|
|
|
proxy = cocoa.proxy
|
|
|
|
_open_url = proxy.openURL_
|
|
|
|
_open_path = proxy.openPath_
|
|
|
|
_reveal_path = proxy.revealPath_
|
|
|
|
|
2021-08-18 02:04:09 +00:00
|
|
|
def _special_folder_path(special_folder, appname=None, portable=False):
|
2021-08-21 21:56:27 +00:00
|
|
|
if special_folder == SpecialFolder.CACHE:
|
2019-09-10 00:54:28 +00:00
|
|
|
base = proxy.getCachePath()
|
|
|
|
else:
|
|
|
|
base = proxy.getAppdataPath()
|
|
|
|
if not appname:
|
2020-01-01 02:16:27 +00:00
|
|
|
appname = proxy.bundleInfo_("CFBundleName")
|
2019-09-10 00:54:28 +00:00
|
|
|
return op.join(base, appname)
|
|
|
|
|
|
|
|
except ImportError:
|
|
|
|
try:
|
|
|
|
from PyQt5.QtCore import QUrl, QStandardPaths
|
|
|
|
from PyQt5.QtGui import QDesktopServices
|
2021-08-24 05:12:23 +00:00
|
|
|
from qtlib.util import get_appdata
|
2021-08-18 02:04:09 +00:00
|
|
|
from core.util import executable_folder
|
2021-08-19 01:51:45 +00:00
|
|
|
from hscommon.plat import ISWINDOWS, ISOSX
|
|
|
|
import subprocess
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2019-09-10 00:54:28 +00:00
|
|
|
def _open_url(url):
|
|
|
|
QDesktopServices.openUrl(QUrl(url))
|
|
|
|
|
|
|
|
def _open_path(path):
|
|
|
|
url = QUrl.fromLocalFile(str(path))
|
|
|
|
QDesktopServices.openUrl(url)
|
|
|
|
|
|
|
|
def _reveal_path(path):
|
2021-08-19 01:51:45 +00:00
|
|
|
if ISWINDOWS:
|
|
|
|
subprocess.run(["explorer", "/select,", op.abspath(path)])
|
|
|
|
elif ISOSX:
|
|
|
|
subprocess.run(["open", "-R", op.abspath(path)])
|
|
|
|
else:
|
|
|
|
_open_path(op.dirname(str(path)))
|
2019-09-10 00:54:28 +00:00
|
|
|
|
2021-08-18 02:04:09 +00:00
|
|
|
def _special_folder_path(special_folder, appname=None, portable=False):
|
2021-08-21 21:56:27 +00:00
|
|
|
if special_folder == SpecialFolder.CACHE:
|
2021-08-18 02:04:09 +00:00
|
|
|
if ISWINDOWS and portable:
|
|
|
|
folder = op.join(executable_folder(), "cache")
|
|
|
|
else:
|
|
|
|
folder = QStandardPaths.standardLocations(QStandardPaths.CacheLocation)[0]
|
2019-09-10 00:54:28 +00:00
|
|
|
else:
|
2021-08-24 05:12:23 +00:00
|
|
|
folder = get_appdata(portable)
|
2021-08-18 02:04:09 +00:00
|
|
|
return folder
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2019-09-10 00:54:28 +00:00
|
|
|
except ImportError:
|
|
|
|
# We're either running tests, and these functions don't matter much or we're in a really
|
|
|
|
# weird situation. Let's just have dummy fallbacks.
|
|
|
|
logging.warning("Can't setup desktop functions!")
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2019-09-10 00:54:28 +00:00
|
|
|
def _open_path(path):
|
2021-08-21 21:56:27 +00:00
|
|
|
# Dummy for tests
|
2019-09-10 00:54:28 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
def _reveal_path(path):
|
2021-08-21 21:56:27 +00:00
|
|
|
# Dummy for tests
|
2019-09-10 00:54:28 +00:00
|
|
|
pass
|
|
|
|
|
2021-08-18 02:04:09 +00:00
|
|
|
def _special_folder_path(special_folder, appname=None, portable=False):
|
2020-01-01 02:16:27 +00:00
|
|
|
return "/tmp"
|