diff options
author | George Hazan <george.hazan@gmail.com> | 2024-05-12 19:36:10 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-05-12 19:36:10 +0300 |
commit | b7e7695a016663f8ec0f8fa57de9e2d3dfd466a2 (patch) | |
tree | 8fa20e280cbe75e3c707039924e2a47f67753264 /src/mir_app | |
parent | e11e428fa9014f0795d4c503b3afd93d0aa7c7c4 (diff) |
completely fixes #629 (Support for Discord) - reactions
Diffstat (limited to 'src/mir_app')
-rw-r--r-- | src/mir_app/src/db_events.cpp | 40 | ||||
-rw-r--r-- | src/mir_app/src/mir_app.def | 2 | ||||
-rw-r--r-- | src/mir_app/src/mir_app64.def | 2 |
3 files changed, 44 insertions, 0 deletions
diff --git a/src/mir_app/src/db_events.cpp b/src/mir_app/src/db_events.cpp index f1500bc937..502c02882f 100644 --- a/src/mir_app/src/db_events.cpp +++ b/src/mir_app/src/db_events.cpp @@ -373,6 +373,46 @@ JSONNode& DB::EventInfo::setJson() return *m_json;
}
+void DB::EventInfo::addReaction(const char *emoji)
+{
+ if (!mir_strlen(emoji))
+ return;
+
+ auto &json = setJson();
+ JSONNode &reactions = json["r"];
+ if (!reactions) {
+ reactions = JSONNode(JSON_NODE); reactions.set_name("r");
+ json.push_back(reactions);
+ }
+
+ auto it = reactions.find(emoji);
+ if (it == reactions.end())
+ reactions << INT_PARAM(emoji, 1);
+ else
+ (*it) = JSONNode(emoji, (*it).as_int() + 1);
+
+ flushJson();
+}
+
+void DB::EventInfo::delReaction(const char *emoji)
+{
+ if (!mir_strlen(emoji))
+ return;
+
+ auto &json = setJson();
+ auto &reactions = json["r"];
+ auto it = reactions.find(emoji);
+ if (it != reactions.end()) {
+ JSONNode &n = *it;
+ if (n.as_int() > 1)
+ n = JSONNode(emoji, n.as_int() - 1);
+ else
+ reactions.erase(it);
+
+ flushJson();
+ }
+}
+
/////////////////////////////////////////////////////////////////////////////////////////
// File blob helper
diff --git a/src/mir_app/src/mir_app.def b/src/mir_app/src/mir_app.def index 709f5a075b..1e528c19e3 100644 --- a/src/mir_app/src/mir_app.def +++ b/src/mir_app/src/mir_app.def @@ -974,3 +974,5 @@ g_hevEventSetJson @1109 NONAME ?getJson@EventInfo@DB@@QBEAAVJSONNode@@XZ @1110 NONAME
?setJson@EventInfo@DB@@QAEAAVJSONNode@@XZ @1111 NONAME
?flushJson@EventInfo@DB@@QAEXXZ @1112 NONAME
+?addReaction@EventInfo@DB@@QAEXPBD@Z @1113 NONAME
+?delReaction@EventInfo@DB@@QAEXPBD@Z @1114 NONAME
diff --git a/src/mir_app/src/mir_app64.def b/src/mir_app/src/mir_app64.def index 37c4dd3e83..08a35f4c16 100644 --- a/src/mir_app/src/mir_app64.def +++ b/src/mir_app/src/mir_app64.def @@ -974,3 +974,5 @@ g_hevEventSetJson @1103 NONAME ?getJson@EventInfo@DB@@QEBAAEAVJSONNode@@XZ @1104 NONAME
?setJson@EventInfo@DB@@QEAAAEAVJSONNode@@XZ @1105 NONAME
?flushJson@EventInfo@DB@@QEAAXXZ @1106 NONAME
+?addReaction@EventInfo@DB@@QEAAXPEBD@Z @1107 NONAME
+?delReaction@EventInfo@DB@@QEAAXPEBD@Z @1108 NONAME
|