2015-09-11 13:50:07 +03:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright (C) 2014 by Olivier Goffart <ogoffart@woboq.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. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the *
|
|
|
|
* Free Software Foundation, Inc., *
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
#include <QBasicTimer>
|
|
|
|
#include <QLocalSocket>
|
2018-01-18 17:17:29 +03:00
|
|
|
#include <QRegularExpression>
|
2015-10-19 16:22:27 +03:00
|
|
|
#include "ownclouddolphinpluginhelper_export.h"
|
2020-04-17 13:44:25 +03:00
|
|
|
#include "config.h"
|
2015-09-11 13:50:07 +03:00
|
|
|
|
2015-10-19 16:22:27 +03:00
|
|
|
class OWNCLOUDDOLPHINPLUGINHELPER_EXPORT OwncloudDolphinPluginHelper : public QObject {
|
2015-09-11 13:50:07 +03:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
static OwncloudDolphinPluginHelper *instance();
|
|
|
|
|
2022-09-30 20:12:08 +03:00
|
|
|
[[nodiscard]] bool isConnected() const;
|
2015-09-11 13:50:07 +03:00
|
|
|
void sendCommand(const char *data);
|
2022-09-30 20:12:08 +03:00
|
|
|
[[nodiscard]] QVector<QString> paths() const { return _paths; }
|
2015-09-11 13:50:07 +03:00
|
|
|
|
2022-09-30 20:12:08 +03:00
|
|
|
[[nodiscard]] QString contextMenuTitle() const
|
2017-05-10 10:37:10 +03:00
|
|
|
{
|
2023-12-27 21:09:32 +03:00
|
|
|
return _strings.value(QStringLiteral("CONTEXT_MENU_TITLE"), QStringLiteral(APPLICATION_NAME));
|
2017-05-10 10:37:10 +03:00
|
|
|
}
|
2022-09-30 20:12:08 +03:00
|
|
|
[[nodiscard]] QString shareActionTitle() const
|
2017-05-10 10:37:10 +03:00
|
|
|
{
|
2023-12-27 21:09:32 +03:00
|
|
|
return _strings.value(QStringLiteral("SHARE_MENU_TITLE"), QStringLiteral("Share …"));
|
2017-05-10 10:37:10 +03:00
|
|
|
}
|
2022-09-30 20:12:08 +03:00
|
|
|
[[nodiscard]] QString contextMenuIconName() const
|
2020-03-21 04:04:11 +03:00
|
|
|
{
|
2023-12-27 21:09:32 +03:00
|
|
|
return _strings.value(QStringLiteral("CONTEXT_MENU_ICON"), QStringLiteral(APPLICATION_ICON_NAME));
|
2020-03-21 04:04:11 +03:00
|
|
|
}
|
2017-05-10 10:37:10 +03:00
|
|
|
|
2023-12-27 21:09:32 +03:00
|
|
|
[[nodiscard]] QString copyPrivateLinkTitle() const { return _strings[QStringLiteral("COPY_PRIVATE_LINK_MENU_TITLE")]; }
|
|
|
|
[[nodiscard]] QString emailPrivateLinkTitle() const { return _strings[QStringLiteral("EMAIL_PRIVATE_LINK_MENU_TITLE")]; }
|
2017-05-10 10:37:10 +03:00
|
|
|
|
2018-01-18 17:17:29 +03:00
|
|
|
QByteArray version() { return _version; }
|
|
|
|
|
2023-12-27 21:10:07 +03:00
|
|
|
Q_SIGNALS:
|
2015-09-11 13:50:07 +03:00
|
|
|
void commandRecieved(const QByteArray &cmd);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void timerEvent(QTimerEvent*) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
OwncloudDolphinPluginHelper();
|
|
|
|
void slotConnected();
|
|
|
|
void slotReadyRead();
|
|
|
|
void tryConnect();
|
|
|
|
QLocalSocket _socket;
|
|
|
|
QByteArray _line;
|
|
|
|
QVector<QString> _paths;
|
|
|
|
QBasicTimer _connectTimer;
|
2017-05-10 10:37:10 +03:00
|
|
|
|
|
|
|
QMap<QString, QString> _strings;
|
2018-01-18 17:17:29 +03:00
|
|
|
QByteArray _version;
|
2015-09-11 13:50:07 +03:00
|
|
|
};
|