2018-02-04 03:22:01 +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.
|
2017-10-25 18:42:23 +02:00
|
|
|
|
2018-03-08 21:38:02 +01:00
|
|
|
#include "media.h"
|
2017-10-25 18:42:23 +02:00
|
|
|
|
2018-02-26 14:42:46 +01:00
|
|
|
resource
|
2017-10-25 18:42:23 +02:00
|
|
|
download_resource
|
|
|
|
{
|
2018-02-26 14:42:46 +01:00
|
|
|
"/_matrix/media/r0/download/",
|
2017-10-25 18:42:23 +02:00
|
|
|
{
|
2018-02-26 14:42:46 +01:00
|
|
|
"(11.7.1.2) download",
|
|
|
|
resource::DIRECTORY,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
resource
|
|
|
|
download_resource__legacy
|
|
|
|
{
|
|
|
|
"/_matrix/media/v1/download/",
|
|
|
|
{
|
|
|
|
"(11.7.1.2) download (legacy)",
|
2017-10-25 18:42:23 +02:00
|
|
|
resource::DIRECTORY,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
resource::response
|
2018-02-26 14:42:46 +01:00
|
|
|
get__download(client &client,
|
|
|
|
const resource::request &request)
|
2017-10-25 18:42:23 +02:00
|
|
|
{
|
|
|
|
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]
|
|
|
|
};
|
|
|
|
|
2018-02-22 02:46:24 +01:00
|
|
|
const std::string data
|
2017-10-25 18:42:23 +02:00
|
|
|
{
|
2018-02-22 02:46:24 +01:00
|
|
|
//fs::read(file)
|
2017-10-25 18:42:23 +02:00
|
|
|
};
|
|
|
|
|
2018-02-22 02:46:24 +01:00
|
|
|
char mime_type_buf[64];
|
|
|
|
const string_view content_type
|
2017-10-25 18:42:23 +02:00
|
|
|
{
|
2018-02-22 02:46:24 +01:00
|
|
|
magic::mime(mime_type_buf, string_view{data})
|
2017-10-25 18:42:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
return resource::response
|
|
|
|
{
|
2018-02-22 02:46:24 +01:00
|
|
|
client, string_view{data}, content_type
|
2017-10-25 18:42:23 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-04-12 23:44:30 +02:00
|
|
|
static resource::method
|
2018-02-26 14:42:46 +01:00
|
|
|
method_get
|
2017-10-25 18:42:23 +02:00
|
|
|
{
|
2018-02-26 14:42:46 +01:00
|
|
|
download_resource, "GET", get__download
|
|
|
|
};
|
|
|
|
|
2018-04-12 23:44:30 +02:00
|
|
|
static resource::method
|
2018-02-26 14:42:46 +01:00
|
|
|
method_get__legacy
|
|
|
|
{
|
|
|
|
download_resource__legacy, "GET", get__download
|
2017-10-25 18:42:23 +02:00
|
|
|
};
|