2016-11-29 16:23:38 +01:00
|
|
|
/*
|
2016-09-06 01:10:30 +02:00
|
|
|
* Copyright (C) 2016 Charybdis Development Team
|
|
|
|
* Copyright (C) 2016 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
namespace ircd {
|
|
|
|
namespace m {
|
2016-09-06 01:10:30 +02:00
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
} // namespace m
|
|
|
|
} // namespace ircd
|
2016-09-06 01:10:30 +02:00
|
|
|
|
|
|
|
void
|
2016-11-29 16:23:38 +01:00
|
|
|
ircd::test(const string_view &what)
|
2016-09-06 01:10:30 +02:00
|
|
|
try
|
|
|
|
{
|
2017-03-13 22:07:58 +01:00
|
|
|
const auto tok(tokens(what, " "));
|
|
|
|
const std::string method(tok.at(2));
|
|
|
|
const std::string rcontent(tok.size() >= 5? tok.at(4) : string_view{});
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-03-13 22:07:58 +01:00
|
|
|
char url[256] {0};
|
|
|
|
snprintf(url, sizeof(url), "/_matrix/client/%s", std::string(tok.at(3)).c_str());
|
|
|
|
|
|
|
|
const std::string host{tok.at(0)};
|
|
|
|
const auto port(lex_cast<uint16_t>(tok.at(1)));
|
|
|
|
ircd::client client
|
2016-11-29 16:23:38 +01:00
|
|
|
{
|
2017-03-14 00:11:30 +01:00
|
|
|
{ host, port }
|
2016-11-29 16:23:38 +01:00
|
|
|
};
|
|
|
|
|
2017-03-13 22:07:58 +01:00
|
|
|
http::request
|
|
|
|
{
|
|
|
|
host, method, url, rcontent, write_closure(client),
|
|
|
|
{
|
|
|
|
{ "Content-Type"s, "application/json"s }
|
|
|
|
}
|
|
|
|
};
|
2016-11-29 16:23:38 +01:00
|
|
|
|
|
|
|
char buf[4096];
|
2017-03-13 22:07:58 +01:00
|
|
|
parse::buffer pb{buf};
|
2017-03-13 23:24:42 +01:00
|
|
|
parse::capstan pc{pb, read_closure(client)};
|
2017-03-13 22:07:58 +01:00
|
|
|
http::response
|
2016-11-29 16:23:38 +01:00
|
|
|
{
|
2017-03-13 22:07:58 +01:00
|
|
|
pc, nullptr, [&pc](const auto &head)
|
|
|
|
{
|
|
|
|
http::response::content content{pc, head};
|
|
|
|
const json::doc cdoc{content};
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-03-13 22:07:58 +01:00
|
|
|
for(const auto &member : cdoc)
|
|
|
|
std::cout << member.first << " --> " << member.second << std::endl;
|
|
|
|
}
|
|
|
|
};
|
2016-09-06 01:10:30 +02:00
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
2016-11-29 16:23:38 +01:00
|
|
|
log::error("test: %s", e.what());
|
2016-09-06 01:10:30 +02:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
ircd::m::error::error(const json::obj &obj)
|
|
|
|
:ircd::error{generate_skip}
|
2016-09-06 01:10:30 +02:00
|
|
|
{
|
2016-11-29 16:23:38 +01:00
|
|
|
serialize(obj, begin(buf), end(buf));
|
2016-09-06 01:10:30 +02:00
|
|
|
}
|
2016-11-29 16:23:38 +01:00
|
|
|
|
|
|
|
ircd::m::error::error(const json::doc &doc)
|
|
|
|
:ircd::error{generate_skip}
|
2016-09-06 01:10:30 +02:00
|
|
|
{
|
2016-11-29 16:23:38 +01:00
|
|
|
print(buf, sizeof(buf), doc);
|
2016-09-06 01:10:30 +02:00
|
|
|
}
|