// Matrix Construct // // Copyright (C) Matrix Construct Developers, Authors & Contributors // Copyright (C) 2016-2018 Jason Volk // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above // copyright notice and this permission notice is present in all copies. The // full license for this software is available in the LICENSE file. #include "rooms.h" using namespace ircd; struct pagination_tokens { uint8_t limit; char dir; m::event::id::buf from; m::event::id::buf to; pagination_tokens(const resource::request &); }; static bool _append(json::stack::array &chunk, const m::event &, const m::event::idx &, const m::user::room &user_room, const int64_t &room_depth); conf::item max_filter_miss { { "name", "ircd.client.rooms.messages.max_filter_miss" }, { "default", 2048L }, }; log::log messages_log { "matrix.messages" }; static const m::event::fetch::opts default_fetch_opts { m::event::keys::include { "content", "depth", "event_id", "origin_server_ts", "prev_events", "redacts", "room_id", "sender", "state_key", "type", }, }; resource::response get__messages(client &client, const resource::request &request, const m::room::id &room_id) { const pagination_tokens page { request }; const auto &filter_query { request.query["filter"] }; const unique_buffer filter_buf { size(filter_query) }; const json::object &filter_json { url::decode(filter_buf, filter_query) }; const m::room_event_filter filter { filter_json.has("filter_json")? json::object{filter_json.get("filter_json")}: filter_json }; const m::room room { room_id, page.from }; if(!room.visible(request.user_id)) throw m::ACCESS_DENIED { "You are not permitted to view the room at this event" }; const m::user::room user_room { request.user_id }; m::room::messages it { room, page.from, &default_fetch_opts }; const auto room_depth { m::depth(std::nothrow, room) }; resource::response::chunked response { client, http::OK }; json::stack out { response.buf, response.flusher() }; json::stack::object top { out }; m::event::id::buf start { page.from }; m::event::id::buf end { page.to }; json::stack::array chunk { top, "chunk" }; size_t hit{0}, miss{0}; for(; it; page.dir == 'b'? --it : ++it) { const m::event &event{*it}; end = event.event_id; if(hit > page.limit || miss >= size_t(max_filter_miss)) break; if(!visible(event, request.user_id)) { ++miss; continue; } if(!empty(filter_json) && !match(filter, event)) { ++miss; continue; } if(_append(chunk, event, it.event_idx(), user_room, room_depth)) ++hit; else ++miss; } chunk.~array(); if(it || page.dir == 'b') json::stack::member { top, "start", json::value{start} }; if(it || page.dir != 'b') json::stack::member { top, "end", json::value{end} }; log::debug { messages_log, "%s in %s from:%s to:%s dir:%c limit:%zu start:%s end:%s hit:%zu miss:%zu", client.loghead(), string_view{room_id}, string_view{page.from}, string_view{page.to}, page.dir, page.limit, string_view{start}, string_view{end}, hit, miss, }; return {}; } bool _append(json::stack::array &chunk, const m::event &event, const m::event::idx &event_idx, const m::user::room &user_room, const int64_t &room_depth) { m::event_append_opts opts; opts.event_idx = &event_idx; opts.user_id = &user_room.user.user_id; opts.user_room = &user_room; opts.room_depth = &room_depth; return m::append(chunk, event, opts); } // Client-Server 6.3.6 query parameters pagination_tokens::pagination_tokens(const resource::request &request) try :limit { // The maximum number of events to return. Default: 10. // > we limit this to 255 via narrowing cast request.query["limit"]? uint8_t(lex_cast(request.query.at("limit"))): uint8_t(10) } ,dir { // Required. The direction to return events from. One of: ["b", "f"] request.query.at("dir").at(0) } { // Required. The token to start returning events from. This token can be // obtained from a prev_batch token returned for each room by the sync // API, or from a start or end token returned by a previous request to // this endpoint. // // NOTE: Synapse doesn't require this and many clients have forgotten to // NOTE: use it so we have to relax the requirement here. if(!empty(request.query["from"])) from = url::decode(from, request.query.at("from")); // The token to stop returning events at. This token can be obtained from // a prev_batch token returned for each room by the sync endpoint, or from // a start or end token returned by a previous request to this endpoint. if(!empty(request.query["to"])) to = url::decode(to, request.query.at("to")); if(dir != 'b' && dir != 'f') throw m::BAD_PAGINATION { "query parameter 'dir' must be 'b' or 'f'" }; } catch(const bad_lex_cast &) { throw m::BAD_PAGINATION { "query parameter 'limit' is invalid" }; } catch(const m::INVALID_MXID &) { throw m::BAD_PAGINATION { "query parameter 'from' or 'to' is not a valid token" }; }