2018-03-08 12:38:02 -08: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.
|
|
|
|
|
2019-07-25 21:09:43 -07:00
|
|
|
namespace ircd::m::media
|
|
|
|
{
|
2019-08-01 18:59:16 -07:00
|
|
|
struct magick;
|
|
|
|
|
2019-08-21 23:57:07 -07:00
|
|
|
static void init();
|
|
|
|
static void fini();
|
|
|
|
|
|
|
|
extern log::log log;
|
|
|
|
extern std::unique_ptr<m::media::magick> magick_support;
|
|
|
|
|
|
|
|
extern conf::item<bool> blocks_cache_enable;
|
|
|
|
extern conf::item<bool> blocks_cache_comp_enable;
|
|
|
|
extern conf::item<size_t> blocks_cache_size;
|
|
|
|
extern conf::item<size_t> blocks_cache_comp_size;
|
2019-09-17 12:41:20 -07:00
|
|
|
extern conf::item<size_t> blocks_prefetch;
|
2019-09-16 18:12:51 -07:00
|
|
|
extern conf::item<size_t> events_prefetch;
|
2019-08-21 23:57:07 -07:00
|
|
|
extern const db::descriptor blocks_descriptor;
|
|
|
|
extern const db::description description;
|
|
|
|
extern std::shared_ptr<db::database> database;
|
|
|
|
extern db::column blocks;
|
|
|
|
|
|
|
|
extern conf::item<seconds> download_timeout;
|
|
|
|
extern std::set<m::room::id> downloading;
|
|
|
|
extern ctx::dock downloading_dock;
|
2019-07-25 21:09:43 -07:00
|
|
|
}
|
|
|
|
|
2019-08-01 18:59:16 -07:00
|
|
|
namespace ircd::m::media::thumbnail
|
|
|
|
{
|
|
|
|
extern conf::item<bool> enable;
|
|
|
|
extern conf::item<bool> enable_remote;
|
|
|
|
extern conf::item<size_t> width_min;
|
|
|
|
extern conf::item<size_t> width_max;
|
|
|
|
extern conf::item<size_t> height_min;
|
|
|
|
extern conf::item<size_t> height_max;
|
|
|
|
extern conf::item<std::string> mime_whitelist;
|
|
|
|
extern conf::item<std::string> mime_blacklist;
|
|
|
|
}
|