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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
// SPDX-FileCopyrightText: Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
#include "RoomSummary.h"
#include <QMetaType>
#include "Cache.h"
#include "ChatPage.h"
#include "MatrixClient.h"
RoomSummary::RoomSummary(std::string roomIdOrAlias_,
std::vector<std::string> vias_,
QString r_,
QObject *p)
: QObject(p)
, roomIdOrAlias(std::move(roomIdOrAlias_))
, vias(std::move(vias_))
, reason_(std::move(r_))
{
if (roomIdOrAlias.empty())
return;
if (roomIdOrAlias[0] == '!') {
auto temp = cache::singleRoomInfo(roomIdOrAlias);
if (temp.member_count) {
mtx::responses::PublicRoom newInfo{};
// newInfo.aliases;
// newInfo.canonical_alias = "";
newInfo.name = temp.name;
newInfo.room_id = roomIdOrAlias;
newInfo.topic = temp.topic;
newInfo.num_joined_members = temp.member_count;
// newInfo.world_readable;
newInfo.guest_can_join = temp.guest_access;
newInfo.avatar_url = temp.avatar_url;
newInfo.join_rule = temp.join_rule;
newInfo.room_type = temp.is_space ? mtx::events::state::room_type::space : "";
newInfo.room_version = temp.version;
newInfo.membership = mtx::events::state::Membership::Join;
// newInfo.encryption;
this->room = std::move(newInfo);
loaded_ = true;
return;
}
// newInfo.encryption;
}
auto ctx = std::make_shared<RoomSummaryProxy>();
connect(ctx.get(), &RoomSummaryProxy::failed, this, [this]() {
loaded_ = true;
emit loaded();
});
connect(
ctx.get(), &RoomSummaryProxy::loaded, this, [this](const mtx::responses::PublicRoom &resp) {
loaded_ = true;
room = resp;
emit loaded();
});
http::client()->get_summary(
roomIdOrAlias,
[proxy = std::move(ctx)](const mtx::responses::PublicRoom &room_, mtx::http::RequestErr e) {
if (e) {
emit proxy->failed();
} else {
emit proxy->loaded(room_);
}
},
vias);
}
void
RoomSummary::join()
{
if (isKnockOnly())
ChatPage::instance()->knockRoom(
QString::fromStdString(roomIdOrAlias), vias, reason_, false, false);
else
ChatPage::instance()->joinRoomVia(roomIdOrAlias, vias, false, reason_);
}
void
RoomSummary::promptJoin()
{
if (isKnockOnly())
ChatPage::instance()->knockRoom(
QString::fromStdString(roomIdOrAlias), vias, reason_, false, true);
else
ChatPage::instance()->joinRoomVia(roomIdOrAlias, vias, true, reason_);
}
#include "moc_RoomSummary.cpp"
|