Enroute Flight Navigation
A navigation app for VFR pilots
PasswordDB.h
1/***************************************************************************
2 * Copyright (C) 2021--2024 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QHash>
24#include <QQmlEngine>
25
26#include "GlobalObject.h"
27
28namespace Traffic {
29
30
37class PasswordDB : public QObject {
38 Q_OBJECT
39 QML_ELEMENT
40 QML_SINGLETON
41
42public:
49 PasswordDB(QObject* parent=nullptr);
50
51 // No default constructor, important for QML singleton
52 explicit PasswordDB() = delete;
53
54 ~PasswordDB() override = default;
55
56 // factory function for QML singleton
57 static Traffic::PasswordDB* create(QQmlEngine* /*unused*/, QJSEngine* /*unused*/)
58 {
60 }
61
62
63 //
64 // Properties
65 //
66
71 Q_PROPERTY(bool empty READ empty NOTIFY emptyChanged)
72
73
77 [[nodiscard]] auto empty() const -> bool
78 {
79 return m_empty;
80 }
81
82
83 //
84 // Methods
85 //
86
91 Q_INVOKABLE void clear();
92
99 [[nodiscard]] Q_INVOKABLE bool contains(const QString& key) const
100 {
101 return m_passwordDB.contains(key);
102 }
103
111 [[nodiscard]] Q_INVOKABLE QString getPassword(const QString& key) const
112 {
113 return m_passwordDB.value(key);
114 }
115
123 Q_INVOKABLE void removePassword(const QString& key);
124
135 Q_INVOKABLE void setPassword(const QString& key, const QString& password);
136
137signals:
140
141private:
142 Q_DISABLE_COPY_MOVE(PasswordDB)
143
144 // Update the property 'empty' and emit the notifier signal, if appropriate
145 void updateEmpty();
146
147 // Save database to disk
148 void save();
149
150 // Property empty
151 bool m_empty {true};
152
153 // Password database
154 QString passwordDBFileName;
155
156 QHash<QString, QString> m_passwordDB;
157};
158
159} // namespace Traffic
static Q_INVOKABLE Traffic::PasswordDB * passwordDB()
Pointer to appplication-wide static PasswordDB instance.
Password database.
Definition PasswordDB.h:37
Q_INVOKABLE QString getPassword(const QString &key) const
Find password for a given key.
Definition PasswordDB.h:111
Q_INVOKABLE void removePassword(const QString &key)
Remove key/password.
void emptyChanged()
Notifier signal.
PasswordDB(QObject *parent=nullptr)
Default constructor.
Q_INVOKABLE void setPassword(const QString &key, const QString &password)
Set key/password.
auto empty() const -> bool
Getter method for property with the same name.
Definition PasswordDB.h:77
Q_INVOKABLE void clear()
Clear database.
Q_INVOKABLE bool contains(const QString &key) const
Check if database contains a given key.
Definition PasswordDB.h:99