85 lines
2.7 KiB
C++
85 lines
2.7 KiB
C++
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of libnymea-app.
|
|
*
|
|
* libnymea-app is free software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
* as published by the Free Software Foundation, either version 3
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* libnymea-app 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with libnymea-app. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef USERINFO_H
|
|
#define USERINFO_H
|
|
|
|
#include <QObject>
|
|
|
|
class UserInfo : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(QString username READ username NOTIFY usernameChanged)
|
|
Q_PROPERTY(QString email READ email NOTIFY emailChanged)
|
|
Q_PROPERTY(QString displayName READ displayName NOTIFY displayNameChanged)
|
|
Q_PROPERTY(PermissionScopes scopes READ scopes NOTIFY scopesChanged)
|
|
public:
|
|
enum PermissionScope {
|
|
PermissionScopeNone = 0x0000,
|
|
PermissionScopeControlThings = 0x0001,
|
|
PermissionScopeConfigureThings = 0x0003,
|
|
PermissionScopeExecuteRules = 0x0010,
|
|
PermissionScopeConfigureRules = 0x0030,
|
|
PermissionScopeAdmin = 0xFFFF,
|
|
};
|
|
Q_DECLARE_FLAGS(PermissionScopes, PermissionScope)
|
|
Q_FLAG(PermissionScopes)
|
|
|
|
explicit UserInfo(QObject *parent = nullptr);
|
|
explicit UserInfo(const QString &username, QObject *parent = nullptr);
|
|
|
|
QString username() const;
|
|
void setUsername(const QString &username);
|
|
|
|
QString email() const;
|
|
void setEmail(const QString &email);
|
|
|
|
QString displayName() const;
|
|
void setDisplayName(const QString &displayName);
|
|
|
|
PermissionScopes scopes() const;
|
|
void setScopes(PermissionScopes scopes);
|
|
|
|
static QStringList scopesToList(PermissionScopes scopes);
|
|
static PermissionScopes listToScopes(const QStringList &scopeList);
|
|
|
|
signals:
|
|
void usernameChanged();
|
|
void emailChanged();
|
|
void displayNameChanged();
|
|
void scopesChanged();
|
|
|
|
private:
|
|
QString m_username;
|
|
QString m_email;
|
|
QString m_displayName;
|
|
PermissionScopes m_scopes = PermissionScopeNone;
|
|
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(UserInfo::PermissionScope)
|
|
Q_DECLARE_METATYPE(UserInfo::PermissionScopes)
|
|
|
|
#endif // USERINFO_H
|