summaryrefslogtreecommitdiffstats
path: root/qthelper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qthelper.cpp')
-rw-r--r--qthelper.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/qthelper.cpp b/qthelper.cpp
index 5434bcd20..12ce2cb3c 100644
--- a/qthelper.cpp
+++ b/qthelper.cpp
@@ -1038,6 +1038,16 @@ int getCloudURL(QString &filename)
return 0;
}
+extern "C" bool isCloudUrl(const char *filename)
+{
+ QString email = QString(prefs.cloud_storage_email);
+ email.replace(QRegularExpression("[^a-zA-Z0-9@._+-]"), "");
+ if (!email.isEmpty() &&
+ QString("https://cloud.subsurface-divelog.org/git/%1[%1]").arg(email) == filename)
+ return true;
+ return false;
+}
+
extern "C" bool getProxyString(char **buffer)
{
if (prefs.proxy_type == QNetworkProxy::HttpProxy) {