/* * Copyright (C) 2017 Charybdis Development Team * Copyright (C) 2017 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. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ using namespace ircd; resource user_resource { "/_matrix/client/r0/user/", { "User resource", resource::DIRECTORY, } }; resource::response get_filter(client &client, const resource::request &request) { m::user::id::buf user_id { url::decode(request.parv[0], user_id) }; const auto &filter_id { request.parv[2] }; const m::vm::query query { { "room_id", m::filter::filters.room_id }, { "type", "ircd.filter" }, { "state_key", filter_id }, { "sender", user_id }, }; const auto result{[&client] (const m::event &event) { const json::object &filter { json::at<"content"_>(event) }; resource::response { client, filter }; return true; }}; if(!m::vm::test(query, result)) throw m::NOT_FOUND("No matching filter with that ID"); // Response already made return {}; } resource::method get_method { user_resource, "GET", get_filter, { get_method.REQUIRES_AUTH } }; // (5.2) Uploads a new filter definition to the homeserver. Returns a filter ID that // may be used in future requests to restrict which events are returned to the client. resource::response post_filter(client &client, const resource::request::object &request) { // (5.2) Required. The id of the user uploading the filter. The access // token must be authorized to make requests for this user id. m::user::id::buf user_id { url::decode(request.parv[0], user_id) }; if(user_id != request.user_id) throw m::ACCESS_DENIED { "Trying to post a filter for `%s' but you are `%s'", user_id, request.user_id }; // (5.2) List of event fields to include. If this list is absent then all fields are // included. The entries may include '.' charaters to indicate sub-fields. So // ['content.body'] will include the 'body' field of the 'content' object. A literal '.' // character in a field name may be escaped using a '\'. A server may include more // fields than were requested. const auto &event_fields { json::get<"event_fields"_>(request) }; // (5.2) The format to use for events. 'client' will return the events in a format suitable // for clients. 'federation' will return the raw event as receieved over federation. // The default is 'client'. One of: ["client", "federation"] const auto &event_format { json::get<"event_format"_>(request) }; // (5.2) The user account data that isn't associated with rooms to include. const auto &account_data { json::get<"account_data"_>(request) }; // (5.2) Filters to be applied to room data. const auto &room { json::get<"room"_>(request) }; const auto &state { json::get<"state"_>(room) }; const auto &presence { // (5.2) The presence updates to include. json::get<"presence"_>(request) }; const auto filter_id { "abc123" }; json::iov event; json::iov::push members[] { { event, json::member { "type", "ircd.filter" }}, { event, json::member { "state_key", filter_id }}, { event, json::member { "sender", user_id }}, { event, json::member { "content", request.body }} }; m::filter::filters.send(event); return resource::response { client, http::CREATED, { { "filter_id", filter_id } } }; } resource::method post_method { user_resource, "POST", post_filter, { post_method.REQUIRES_AUTH } }; mapi::header IRCD_MODULE { "registers the resource 'client/user' to handle requests" };