2015-03-02 04:16:07 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2015 Albert Vaca <albertvaka@gmail.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) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* 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
|
2019-03-23 16:29:26 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2015-03-02 04:16:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KDECONNECTCONFIG_H
|
|
|
|
#define KDECONNECTCONFIG_H
|
|
|
|
|
|
|
|
#include <QDir>
|
|
|
|
|
|
|
|
#include "kdeconnectcore_export.h"
|
|
|
|
|
2015-11-30 18:36:01 +00:00
|
|
|
class QSslCertificate;
|
|
|
|
|
2015-03-02 04:16:07 +00:00
|
|
|
class KDECONNECTCORE_EXPORT KdeConnectConfig
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
struct DeviceInfo {
|
|
|
|
QString deviceName;
|
|
|
|
QString deviceType;
|
|
|
|
};
|
|
|
|
|
2019-09-08 16:09:52 +01:00
|
|
|
static KdeConnectConfig& instance();
|
2015-03-02 04:16:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Our own info
|
|
|
|
*/
|
|
|
|
|
|
|
|
QString deviceId();
|
|
|
|
QString name();
|
|
|
|
QString deviceType();
|
|
|
|
|
|
|
|
QString privateKeyPath();
|
2015-07-05 14:23:53 +01:00
|
|
|
QString certificatePath();
|
|
|
|
QSslCertificate certificate();
|
|
|
|
|
2016-11-26 15:09:40 +00:00
|
|
|
void setName(const QString& name);
|
2015-03-02 04:16:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Trusted devices
|
|
|
|
*/
|
|
|
|
|
2015-03-14 04:19:39 +00:00
|
|
|
QStringList trustedDevices(); //list of ids
|
2017-09-03 20:39:44 +01:00
|
|
|
void removeTrustedDevice(const QString& id);
|
|
|
|
void addTrustedDevice(const QString& id, const QString& name, const QString& type);
|
|
|
|
KdeConnectConfig::DeviceInfo getTrustedDevice(const QString& id);
|
2015-11-30 18:36:01 +00:00
|
|
|
|
2016-11-26 15:09:40 +00:00
|
|
|
void setDeviceProperty(const QString& deviceId, const QString& name, const QString& value);
|
|
|
|
QString getDeviceProperty(const QString& deviceId, const QString& name, const QString& defaultValue = QString());
|
2015-03-02 04:16:07 +00:00
|
|
|
|
2015-03-14 04:19:39 +00:00
|
|
|
/*
|
|
|
|
* Paths for config files, there is no guarantee the directories already exist
|
|
|
|
*/
|
2015-03-02 04:16:07 +00:00
|
|
|
QDir baseConfigDir();
|
2017-09-03 20:39:44 +01:00
|
|
|
QDir deviceConfigDir(const QString& deviceId);
|
|
|
|
QDir pluginConfigDir(const QString& deviceId, const QString& pluginName); //Used by KdeConnectPluginConfig
|
2015-03-02 04:16:07 +00:00
|
|
|
|
2019-06-18 02:21:31 +01:00
|
|
|
#ifdef USE_PRIVATE_DBUS
|
|
|
|
/*
|
|
|
|
* Get private DBus Address when use private DBus
|
|
|
|
*/
|
|
|
|
QString privateDBusAddressPath();
|
|
|
|
QString privateDBusAddress();
|
|
|
|
#endif
|
2015-03-02 04:16:07 +00:00
|
|
|
private:
|
|
|
|
KdeConnectConfig();
|
|
|
|
|
2018-12-25 00:33:08 +00:00
|
|
|
void loadPrivateKey();
|
2019-03-11 12:37:15 +00:00
|
|
|
void generatePrivateKey(const QString& path);
|
2018-12-25 00:33:08 +00:00
|
|
|
void loadCertificate();
|
2019-03-11 12:37:15 +00:00
|
|
|
void generateCertificate(const QString& path);
|
2015-03-14 04:19:39 +00:00
|
|
|
|
2016-06-20 01:31:55 +01:00
|
|
|
struct KdeConnectConfigPrivate* d;
|
2015-03-02 04:16:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|