forked from dresden-elektronik/deconz-rest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gw_uuid.cpp
40 lines (34 loc) · 1.02 KB
/
gw_uuid.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* Copyright (c) 2016 dresden elektronik ingenieurtechnik gmbh.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
*/
#include <QUuid>
#include <QSettings>
#include "de_web_plugin_private.h"
/*! Generates a uinique id for the gateway. */
void DeRestPluginPrivate::generateGatewayUuid()
{
#ifdef Q_OS_WIN
QSettings settings("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Cryptography", QSettings::NativeFormat);
gwUuid = settings.value("MachineGuid", "").toString();
if (gwUuid.isEmpty())
{
QUuid uuid = QUuid::createUuid();
gwUuid = uuid.toString();
}
#endif
#ifdef Q_OS_LINUX
QUuid uuid = QUuid::createUuid();
gwUuid = uuid.toString().replace("{", "").replace("}", "");
#endif
DBG_Assert(!gwUuid.isEmpty());
if (!gwUuid.isEmpty())
{
queSaveDb(DB_CONFIG, DB_SHORT_SAVE_DELAY);
}
}