2015-03-02 04:16:07 +00:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2015 Albert Vaca <albertvaka@gmail.com>
|
2015-03-02 04:16:07 +00:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
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
|