/* * Copyright (C) by Claudio Cambra * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. */ #pragma once #include #include #include "config.h" #include "editlocallyjob.h" #include "editlocallyverificationjob.h" #ifdef BUILD_FILE_PROVIDER_MODULE #include "macOS/fileprovidereditlocallyjob.h" #endif namespace OCC { class EditLocallyManager : public QObject { Q_OBJECT public: [[nodiscard]] static EditLocallyManager *instance(); static void showError(const QString &message, const QString &informativeText); public slots: void handleRequest(const QUrl &url); private slots: void verify(const AccountStatePtr &accountState, const QString &relPath, const QString &token); void editLocally(const AccountStatePtr &accountState, const QString &relPath, const QString &token); #ifdef BUILD_FILE_PROVIDER_MODULE void editLocallyFileProvider(const AccountStatePtr &accountState, const QString &relPath, const QString &token); #endif private: explicit EditLocallyManager(QObject *parent = nullptr); static EditLocallyManager *_instance; struct EditLocallyInputData { QString userId; QString relPath; QString token; }; static void showErrorNotification(const QString &message, const QString &informativeText); static void showErrorMessageBox(const QString &message, const QString &informativeText); [[nodiscard]] static EditLocallyInputData parseEditLocallyUrl(const QUrl &url); QHash _verificationJobs; QHash _editLocallyJobs; #ifdef BUILD_FILE_PROVIDER_MODULE QHash _editLocallyFpJobs; #endif }; }