2023-02-21 23:48:49 +01:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2021-05-02 18:01:18 +02:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
#include <mtx/events/power_levels.hpp>
|
|
|
|
|
|
|
|
class TimelineModel;
|
|
|
|
|
2022-10-10 14:38:29 +02:00
|
|
|
class Permissions final : public QObject
|
2021-05-02 18:01:18 +02:00
|
|
|
{
|
2021-09-18 00:22:33 +02:00
|
|
|
Q_OBJECT
|
2021-05-02 18:01:18 +02:00
|
|
|
|
|
|
|
public:
|
2021-09-18 00:22:33 +02:00
|
|
|
Permissions(QString roomId, QObject *parent = nullptr);
|
2021-05-02 18:01:18 +02:00
|
|
|
|
2021-09-18 00:22:33 +02:00
|
|
|
Q_INVOKABLE bool canInvite();
|
|
|
|
Q_INVOKABLE bool canBan();
|
|
|
|
Q_INVOKABLE bool canKick();
|
2021-05-02 18:01:18 +02:00
|
|
|
|
2021-09-18 00:22:33 +02:00
|
|
|
Q_INVOKABLE bool canRedact();
|
|
|
|
Q_INVOKABLE bool canChange(int eventType);
|
|
|
|
Q_INVOKABLE bool canSend(int eventType);
|
2022-05-07 02:30:16 +02:00
|
|
|
Q_INVOKABLE int defaultLevel();
|
|
|
|
Q_INVOKABLE int redactLevel();
|
|
|
|
Q_INVOKABLE int changeLevel(int eventType);
|
|
|
|
Q_INVOKABLE int sendLevel(int eventType);
|
2021-05-02 18:01:18 +02:00
|
|
|
|
2021-09-18 00:22:33 +02:00
|
|
|
Q_INVOKABLE bool canPingRoom();
|
2021-09-02 03:15:07 +02:00
|
|
|
|
2021-09-18 00:22:33 +02:00
|
|
|
void invalidate();
|
2021-05-02 18:01:18 +02:00
|
|
|
|
2022-10-13 17:19:54 +02:00
|
|
|
const mtx::events::state::PowerLevels &powerlevelEvent() const { return pl; };
|
|
|
|
|
2021-05-02 18:01:18 +02:00
|
|
|
private:
|
2021-09-18 00:22:33 +02:00
|
|
|
QString roomId_;
|
|
|
|
mtx::events::state::PowerLevels pl;
|
2021-05-02 18:01:18 +02:00
|
|
|
};
|