|
|
|
@ -1013,7 +1013,8 @@ Cache::getOlmSessions(const std::string &curve25519) |
|
|
|
|
{ |
|
|
|
|
using namespace mtx::crypto; |
|
|
|
|
|
|
|
|
|
auto txn = lmdb::txn::begin(env_); |
|
|
|
|
try { |
|
|
|
|
auto txn = ro_txn(env_); |
|
|
|
|
auto db = getOlmSessionsDb(txn, curve25519); |
|
|
|
|
|
|
|
|
|
std::string_view session_id, unused; |
|
|
|
@ -1024,9 +1025,10 @@ Cache::getOlmSessions(const std::string &curve25519) |
|
|
|
|
res.emplace_back(session_id); |
|
|
|
|
cursor.close(); |
|
|
|
|
|
|
|
|
|
txn.commit(); |
|
|
|
|
|
|
|
|
|
return res; |
|
|
|
|
} catch (...) { |
|
|
|
|
return {}; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void |
|
|
|
@ -2173,7 +2175,8 @@ Cache::roomIds() |
|
|
|
|
std::string |
|
|
|
|
Cache::previousBatchToken(const std::string &room_id) |
|
|
|
|
{ |
|
|
|
|
auto txn = lmdb::txn::begin(env_, nullptr); |
|
|
|
|
auto txn = ro_txn(env_); |
|
|
|
|
try { |
|
|
|
|
auto orderDb = getEventOrderDb(txn, room_id); |
|
|
|
|
|
|
|
|
|
auto cursor = lmdb::cursor::open(txn, orderDb); |
|
|
|
@ -2185,6 +2188,9 @@ Cache::previousBatchToken(const std::string &room_id) |
|
|
|
|
auto j = nlohmann::json::parse(val); |
|
|
|
|
|
|
|
|
|
return j.value("prev_batch", ""); |
|
|
|
|
} catch (...) { |
|
|
|
|
return ""; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Cache::Messages |
|
|
|
@ -3206,10 +3212,10 @@ Cache::pendingEvents(const std::string &room_id) |
|
|
|
|
std::optional<mtx::events::collections::TimelineEvent> |
|
|
|
|
Cache::firstPendingMessage(const std::string &room_id) |
|
|
|
|
{ |
|
|
|
|
auto txn = lmdb::txn::begin(env_); |
|
|
|
|
auto txn = ro_txn(env_); |
|
|
|
|
auto pending = getPendingMessagesDb(txn, room_id); |
|
|
|
|
|
|
|
|
|
{ |
|
|
|
|
try { |
|
|
|
|
auto pendingCursor = lmdb::cursor::open(txn, pending); |
|
|
|
|
std::string_view tsIgnored, pendingTxn; |
|
|
|
|
while (pendingCursor.get(tsIgnored, pendingTxn, MDB_NEXT)) { |
|
|
|
@ -3225,7 +3231,6 @@ Cache::firstPendingMessage(const std::string &room_id) |
|
|
|
|
from_json(nlohmann::json::parse(event), te); |
|
|
|
|
|
|
|
|
|
pendingCursor.close(); |
|
|
|
|
txn.commit(); |
|
|
|
|
return te; |
|
|
|
|
} catch (std::exception &e) { |
|
|
|
|
nhlog::db()->error("Failed to parse message from cache {}", e.what()); |
|
|
|
@ -3233,10 +3238,8 @@ Cache::firstPendingMessage(const std::string &room_id) |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} catch (const lmdb::error &e) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
txn.commit(); |
|
|
|
|
|
|
|
|
|
return std::nullopt; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -3998,7 +4001,8 @@ Cache::hasEnoughPowerLevel(const std::vector<mtx::events::EventType> &eventTypes |
|
|
|
|
using namespace mtx::events; |
|
|
|
|
using namespace mtx::events::state; |
|
|
|
|
|
|
|
|
|
auto txn = lmdb::txn::begin(env_); |
|
|
|
|
auto txn = ro_txn(env_); |
|
|
|
|
try { |
|
|
|
|
auto db = getStatesDb(txn, room_id); |
|
|
|
|
|
|
|
|
|
int64_t min_event_level = std::numeric_limits<int64_t>::max(); |
|
|
|
@ -4016,15 +4020,17 @@ Cache::hasEnoughPowerLevel(const std::vector<mtx::events::EventType> &eventTypes |
|
|
|
|
user_level = msg.content.user_level(user_id); |
|
|
|
|
|
|
|
|
|
for (const auto &ty : eventTypes) |
|
|
|
|
min_event_level = std::min(min_event_level, msg.content.state_level(to_string(ty))); |
|
|
|
|
min_event_level = |
|
|
|
|
std::min(min_event_level, msg.content.state_level(to_string(ty))); |
|
|
|
|
} catch (const nlohmann::json::exception &e) { |
|
|
|
|
nhlog::db()->warn("failed to parse m.room.power_levels event: {}", e.what()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
txn.commit(); |
|
|
|
|
|
|
|
|
|
return user_level >= min_event_level; |
|
|
|
|
} catch (...) { |
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
std::vector<std::string> |
|
|
|
|