mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 15:30:52 +01:00
77 lines
1.3 KiB
C++
77 lines
1.3 KiB
C++
// 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;
|
|
|
|
mapi::header IRCD_MODULE
|
|
{
|
|
"media download"
|
|
};
|
|
|
|
struct send
|
|
:resource
|
|
{
|
|
using resource::resource;
|
|
}
|
|
download_resource
|
|
{
|
|
"/_matrix/media/r0/download/", resource::opts
|
|
{
|
|
"media download",
|
|
resource::DIRECTORY,
|
|
}
|
|
};
|
|
|
|
resource::response
|
|
handle_get(client &client,
|
|
const resource::request &request)
|
|
{
|
|
if(request.parv.size() < 2)
|
|
throw http::error
|
|
{
|
|
http::MULTIPLE_CHOICES, "/ download / domain / file"
|
|
};
|
|
|
|
const auto &domain
|
|
{
|
|
request.parv[0]
|
|
};
|
|
|
|
const auto &file
|
|
{
|
|
request.parv[1]
|
|
};
|
|
|
|
const fmt::snstringf path
|
|
{
|
|
1024,
|
|
"/home/jason/.synapse/media_store/local_content/%s/%s/%s",
|
|
file.substr(0, 2),
|
|
file.substr(2, 2),
|
|
file.substr(4, file.size() - 4)
|
|
};
|
|
|
|
const auto data
|
|
{
|
|
fs::read(path)
|
|
};
|
|
|
|
return resource::response
|
|
{
|
|
client, string_view{data}, "image/jpg"
|
|
};
|
|
}
|
|
|
|
resource::method method_put
|
|
{
|
|
download_resource, "GET", handle_get,
|
|
{
|
|
}
|
|
};
|