nextcloud-desktop/src/gui/editlocallymanager.h
Claudio Cambra 5ce3cdc6ea
Try to use FileProviderEditLocallyJob before attempting standard EditLocallyJob in EditLocallyManager
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
2024-07-22 19:51:39 +08:00

78 lines
2.3 KiB
C++

/*
* Copyright (C) by Claudio Cambra <claudio.cambra@nextcloud.com>
*
* 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 <QObject>
#include <QHash>
#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<QString, EditLocallyVerificationJobPtr> _verificationJobs;
QHash<QString, EditLocallyJobPtr> _editLocallyJobs;
#ifdef BUILD_FILE_PROVIDER_MODULE
QHash<QString, Mac::FileProviderEditLocallyJobPtr> _editLocallyFpJobs;
#endif
};
}