2018-02-12 23:45:48 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
using namespace ircd;
|
|
|
|
|
2018-02-15 22:06:49 +01:00
|
|
|
mapi::header
|
|
|
|
IRCD_MODULE
|
2018-02-12 23:45:48 +01:00
|
|
|
{
|
2018-02-15 22:06:49 +01:00
|
|
|
"Client 11.6 :Presence"
|
2018-02-12 23:45:48 +01:00
|
|
|
};
|
|
|
|
|
2018-02-15 22:06:49 +01:00
|
|
|
ircd::resource
|
|
|
|
presence_resource
|
2018-02-12 23:45:48 +01:00
|
|
|
{
|
|
|
|
"/_matrix/client/r0/presence/", resource::opts
|
|
|
|
{
|
2018-02-15 22:06:49 +01:00
|
|
|
"(11.6.2) Presence",
|
2018-02-12 23:45:48 +01:00
|
|
|
resource::DIRECTORY,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-03-02 16:25:37 +01:00
|
|
|
//
|
2018-04-23 22:46:37 +02:00
|
|
|
// get
|
2018-03-02 16:25:37 +01:00
|
|
|
//
|
|
|
|
|
2018-02-16 04:59:59 +01:00
|
|
|
static resource::response
|
2018-04-23 22:46:37 +02:00
|
|
|
get__presence(client &,
|
|
|
|
const resource::request &);
|
2018-02-16 04:59:59 +01:00
|
|
|
|
2018-03-02 16:25:37 +01:00
|
|
|
resource::method
|
2018-04-23 22:46:37 +02:00
|
|
|
method_get
|
2018-03-02 16:25:37 +01:00
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
presence_resource, "GET", get__presence
|
2018-03-02 16:25:37 +01:00
|
|
|
};
|
2018-02-16 04:59:59 +01:00
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
static resource::response
|
|
|
|
get__presence_status(client &,
|
|
|
|
const resource::request &,
|
|
|
|
const m::user::id &);
|
|
|
|
|
|
|
|
static resource::response
|
|
|
|
get__presence_list(client &,
|
|
|
|
const resource::request &);
|
|
|
|
|
2018-02-12 23:45:48 +01:00
|
|
|
resource::response
|
2018-04-23 22:46:37 +02:00
|
|
|
get__presence(client &client,
|
2018-02-15 22:06:49 +01:00
|
|
|
const resource::request &request)
|
2018-02-12 23:45:48 +01:00
|
|
|
{
|
2018-02-16 04:59:59 +01:00
|
|
|
if(request.parv.size() < 1)
|
|
|
|
throw m::NEED_MORE_PARAMS
|
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
"user_id or command required"
|
2018-02-16 04:59:59 +01:00
|
|
|
};
|
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
if(request.parv[0] == "list")
|
|
|
|
return get__presence_list(client, request);
|
|
|
|
|
2018-02-16 04:59:59 +01:00
|
|
|
m::user::id::buf user_id
|
2018-02-12 23:45:48 +01:00
|
|
|
{
|
2018-02-16 04:59:59 +01:00
|
|
|
url::decode(request.parv[0], user_id)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(request.parv.size() < 2)
|
|
|
|
throw m::NEED_MORE_PARAMS
|
|
|
|
{
|
|
|
|
"command required"
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &cmd
|
|
|
|
{
|
|
|
|
request.parv[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
if(cmd == "status")
|
2018-04-23 22:46:37 +02:00
|
|
|
return get__presence_status(client, request, user_id);
|
2018-02-16 04:59:59 +01:00
|
|
|
|
|
|
|
throw m::NOT_FOUND
|
|
|
|
{
|
|
|
|
"Presence command not found"
|
2018-02-12 23:45:48 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-03-02 16:25:37 +01:00
|
|
|
resource::response
|
2018-04-23 22:46:37 +02:00
|
|
|
get__presence_status(client &client,
|
2018-03-02 16:25:37 +01:00
|
|
|
const resource::request &request,
|
|
|
|
const m::user::id &user_id)
|
2018-02-12 23:45:48 +01:00
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
const m::user user
|
2018-02-12 23:45:48 +01:00
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
user_id
|
2018-03-02 16:25:37 +01:00
|
|
|
};
|
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
m::presence::get(user, [&client]
|
|
|
|
(const json::object &object)
|
|
|
|
{
|
|
|
|
resource::response
|
2018-03-02 16:25:37 +01:00
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
client, object
|
2018-03-02 16:25:37 +01:00
|
|
|
};
|
2018-04-23 22:46:37 +02:00
|
|
|
});
|
2018-03-02 16:25:37 +01:00
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
return {}; // responded from closure or threw
|
2018-03-02 16:25:37 +01:00
|
|
|
}
|
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
resource::response
|
|
|
|
get__presence_list(client &client,
|
|
|
|
const resource::request &request)
|
2018-03-29 04:49:18 +02:00
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
if(request.parv.size() < 2)
|
|
|
|
throw m::NEED_MORE_PARAMS
|
|
|
|
{
|
|
|
|
"user_id required"
|
|
|
|
};
|
|
|
|
|
|
|
|
m::user::id::buf user_id
|
2018-03-29 04:49:18 +02:00
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
url::decode(request.parv[1], user_id)
|
2018-03-29 04:49:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::room user_room
|
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
user_id
|
2018-03-29 04:49:18 +02:00
|
|
|
};
|
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
//TODO: reuse composition from /status
|
|
|
|
std::vector<json::value> list;
|
|
|
|
return resource::response
|
|
|
|
{
|
|
|
|
client, json::value
|
|
|
|
{
|
|
|
|
list.data(), list.size()
|
|
|
|
}
|
|
|
|
};
|
2018-03-29 04:49:18 +02:00
|
|
|
}
|
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
//
|
|
|
|
// POST ?
|
|
|
|
//
|
2018-02-16 04:59:59 +01:00
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
static resource::response
|
|
|
|
post__presence(client &,
|
|
|
|
const resource::request &);
|
2018-02-16 04:59:59 +01:00
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
resource::method
|
|
|
|
method_post
|
|
|
|
{
|
|
|
|
presence_resource, "POST", post__presence,
|
|
|
|
{
|
|
|
|
method_post.REQUIRES_AUTH
|
|
|
|
}
|
|
|
|
};
|
2018-02-16 04:59:59 +01:00
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
static resource::response
|
|
|
|
post__presence_list(client &,
|
|
|
|
const resource::request &);
|
2018-02-16 04:59:59 +01:00
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
resource::response
|
|
|
|
post__presence(client &client,
|
|
|
|
const resource::request &request)
|
|
|
|
{
|
|
|
|
if(request.parv.size() < 1)
|
|
|
|
throw m::NEED_MORE_PARAMS
|
2018-02-16 04:59:59 +01:00
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
"command required"
|
2018-02-16 04:59:59 +01:00
|
|
|
};
|
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
if(request.parv[0] == "list")
|
|
|
|
return get__presence_list(client, request);
|
2018-02-16 04:59:59 +01:00
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
throw m::NOT_FOUND
|
|
|
|
{
|
|
|
|
"Presence command not found"
|
|
|
|
};
|
2018-02-16 04:59:59 +01:00
|
|
|
}
|
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
resource::response
|
|
|
|
post__presence_list(client &client,
|
|
|
|
const resource::request &request)
|
2018-02-16 04:59:59 +01:00
|
|
|
{
|
|
|
|
if(request.parv.size() < 2)
|
|
|
|
throw m::NEED_MORE_PARAMS
|
|
|
|
{
|
|
|
|
"user_id required"
|
|
|
|
};
|
|
|
|
|
|
|
|
m::user::id::buf user_id
|
|
|
|
{
|
|
|
|
url::decode(request.parv[1], user_id)
|
|
|
|
};
|
|
|
|
|
|
|
|
const m::user::room user_room
|
|
|
|
{
|
|
|
|
user_id
|
|
|
|
};
|
|
|
|
|
|
|
|
return resource::response
|
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
client, http::OK
|
2018-02-16 04:59:59 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
//
|
|
|
|
// put
|
|
|
|
//
|
|
|
|
|
|
|
|
static resource::response
|
|
|
|
put__presence_status(client &,
|
|
|
|
const resource::request &,
|
|
|
|
const m::user::id &);
|
|
|
|
|
|
|
|
static resource::response
|
|
|
|
put__presence(client &,
|
|
|
|
const resource::request &);
|
|
|
|
|
|
|
|
resource::method
|
|
|
|
method_put
|
|
|
|
{
|
|
|
|
presence_resource, "PUT", put__presence,
|
|
|
|
{
|
|
|
|
method_put.REQUIRES_AUTH
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-02-16 04:59:59 +01:00
|
|
|
resource::response
|
2018-04-23 22:46:37 +02:00
|
|
|
put__presence(client &client,
|
2018-02-16 04:59:59 +01:00
|
|
|
const resource::request &request)
|
|
|
|
{
|
|
|
|
if(request.parv.size() < 1)
|
|
|
|
throw m::NEED_MORE_PARAMS
|
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
"user_id required"
|
2018-02-16 04:59:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
m::user::id::buf user_id
|
|
|
|
{
|
|
|
|
url::decode(request.parv[0], user_id)
|
|
|
|
};
|
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
if(user_id != request.user_id)
|
|
|
|
throw m::FORBIDDEN
|
|
|
|
{
|
|
|
|
"You cannot set the presence of '%s' when you are '%s'",
|
|
|
|
user_id,
|
|
|
|
request.user_id
|
|
|
|
};
|
|
|
|
|
2018-02-16 04:59:59 +01:00
|
|
|
if(request.parv.size() < 2)
|
|
|
|
throw m::NEED_MORE_PARAMS
|
|
|
|
{
|
|
|
|
"command required"
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &cmd
|
|
|
|
{
|
|
|
|
request.parv[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
if(cmd == "status")
|
2018-04-23 22:46:37 +02:00
|
|
|
return put__presence_status(client, request, user_id);
|
2018-02-16 04:59:59 +01:00
|
|
|
|
|
|
|
throw m::NOT_FOUND
|
|
|
|
{
|
|
|
|
"Presence command not found"
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
resource::response
|
|
|
|
put__presence_status(client &client,
|
|
|
|
const resource::request &request,
|
|
|
|
const m::user::id &user_id)
|
2018-03-29 04:49:18 +02:00
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
const string_view &presence
|
2018-03-29 04:49:18 +02:00
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
unquote(request.at("presence"))
|
2018-03-29 04:49:18 +02:00
|
|
|
};
|
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
if(!m::presence::valid_state(presence))
|
|
|
|
throw m::UNSUPPORTED
|
2018-02-16 04:59:59 +01:00
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
"That presence state is not supported"
|
2018-02-16 04:59:59 +01:00
|
|
|
};
|
|
|
|
|
2018-04-23 22:46:37 +02:00
|
|
|
const string_view &status_msg
|
2018-02-16 04:59:59 +01:00
|
|
|
{
|
2018-04-23 22:46:37 +02:00
|
|
|
trunc(unquote(request["status_msg"]), 390)
|
2018-02-16 04:59:59 +01:00
|
|
|
};
|
|
|
|
|
2018-04-24 02:50:47 +02:00
|
|
|
const m::user user
|
|
|
|
{
|
|
|
|
request.user_id
|
|
|
|
};
|
|
|
|
|
2018-04-24 03:22:26 +02:00
|
|
|
bool modified{true};
|
|
|
|
m::presence::get(std::nothrow, user, [&modified, &presence, &status_msg]
|
2018-04-24 02:50:47 +02:00
|
|
|
(const json::object &object)
|
|
|
|
{
|
|
|
|
if(unquote(object.get("presence")) != presence)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(unquote(object.get("status_msg")) != status_msg)
|
|
|
|
return;
|
|
|
|
|
2018-04-24 03:22:26 +02:00
|
|
|
modified = false;
|
|
|
|
});
|
|
|
|
|
|
|
|
if(!modified)
|
|
|
|
return resource::response
|
2018-04-24 02:50:47 +02:00
|
|
|
{
|
2018-04-24 03:22:26 +02:00
|
|
|
client, http::OK
|
2018-04-24 02:50:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const auto eid
|
|
|
|
{
|
|
|
|
m::presence::set(user, presence, status_msg)
|
|
|
|
};
|
|
|
|
|
2018-02-16 04:59:59 +01:00
|
|
|
return resource::response
|
|
|
|
{
|
|
|
|
client, http::OK
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-04-28 00:27:09 +02:00
|
|
|
static void
|
|
|
|
handle_my_presence_changed(const m::event &event)
|
|
|
|
{
|
|
|
|
if(!my(event))
|
|
|
|
return;
|
|
|
|
|
|
|
|
const m::user::id &user_id
|
|
|
|
{
|
|
|
|
json::get<"sender"_>(event)
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!my(user_id))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// The event has to be an ircd.presence in the user's room, not just a
|
|
|
|
// random ircd.presence typed event in some other room...
|
|
|
|
const m::user::room user_room{user_id};
|
|
|
|
if(json::get<"room_id"_>(event) != user_room.room_id)
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-05-27 07:05:56 +02:00
|
|
|
const m::hookfn<>
|
2018-04-28 00:27:09 +02:00
|
|
|
my_presence_changed
|
|
|
|
{
|
|
|
|
handle_my_presence_changed,
|
|
|
|
{
|
|
|
|
{ "_site", "vm.notify" },
|
|
|
|
{ "type", "ircd.presence" },
|
|
|
|
}
|
|
|
|
};
|