2013-08-10 07:46:45 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Core/Types.h>
|
2017-03-25 05:46:50 +00:00
|
|
|
|
2017-03-25 05:55:49 +00:00
|
|
|
#include <memory>
|
2019-03-29 20:31:06 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
#include <unordered_set>
|
|
|
|
#include <vector>
|
2013-08-10 07:46:45 +00:00
|
|
|
|
|
|
|
|
2017-03-25 05:55:49 +00:00
|
|
|
namespace Poco
|
2016-01-11 21:46:36 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
namespace Net
|
|
|
|
{
|
|
|
|
class IPAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Util
|
|
|
|
{
|
|
|
|
class AbstractConfiguration;
|
|
|
|
}
|
2017-03-25 05:55:49 +00:00
|
|
|
}
|
2013-08-10 07:46:45 +00:00
|
|
|
|
|
|
|
|
2017-03-25 05:55:49 +00:00
|
|
|
namespace DB
|
2013-08-10 07:46:45 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
|
2017-03-25 05:55:49 +00:00
|
|
|
/// Allow to check that address matches a pattern.
|
|
|
|
class IAddressPattern
|
2013-08-10 07:46:45 +00:00
|
|
|
{
|
2015-09-27 02:18:00 +00:00
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
virtual bool contains(const Poco::Net::IPAddress & addr) const = 0;
|
|
|
|
virtual ~IAddressPattern() {}
|
2013-08-10 07:46:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class AddressPatterns
|
|
|
|
{
|
|
|
|
private:
|
2017-11-27 21:31:13 +00:00
|
|
|
using Container = std::vector<std::shared_ptr<IAddressPattern>>;
|
2017-04-01 07:20:54 +00:00
|
|
|
Container patterns;
|
2013-08-10 07:46:45 +00:00
|
|
|
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
bool contains(const Poco::Net::IPAddress & addr) const;
|
2018-07-08 04:54:37 +00:00
|
|
|
void addFromConfig(const String & config_elem, const Poco::Util::AbstractConfiguration & config);
|
2013-08-10 07:46:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-01-14 02:53:40 +00:00
|
|
|
/** User and ACL.
|
2013-08-10 07:46:45 +00:00
|
|
|
*/
|
|
|
|
struct User
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
String name;
|
2013-08-10 07:46:45 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Required password. Could be stored in plaintext or in SHA256.
|
|
|
|
String password;
|
|
|
|
String password_sha256_hex;
|
2019-07-28 13:12:26 +00:00
|
|
|
String password_double_sha1_hex;
|
2013-08-10 07:46:45 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
String profile;
|
|
|
|
String quota;
|
2013-08-10 07:46:45 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
AddressPatterns addresses;
|
2013-08-10 07:46:45 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// List of allowed databases.
|
|
|
|
using DatabaseSet = std::unordered_set<std::string>;
|
|
|
|
DatabaseSet databases;
|
2015-10-01 15:10:41 +00:00
|
|
|
|
2019-09-14 22:55:22 +00:00
|
|
|
/// List of allowed dictionaries.
|
2019-09-13 08:22:34 +00:00
|
|
|
using DictionarySet = std::unordered_set<std::string>;
|
|
|
|
DictionarySet dictionaries;
|
|
|
|
|
2019-03-29 20:31:06 +00:00
|
|
|
/// Table properties.
|
|
|
|
using PropertyMap = std::unordered_map<std::string /* name */, std::string /* value */>;
|
|
|
|
using TableMap = std::unordered_map<std::string /* table */, PropertyMap /* properties */>;
|
|
|
|
using DatabaseMap = std::unordered_map<std::string /* database */, TableMap /* tables */>;
|
|
|
|
DatabaseMap table_props;
|
|
|
|
|
2018-07-08 04:54:37 +00:00
|
|
|
User(const String & name_, const String & config_elem, const Poco::Util::AbstractConfiguration & config);
|
2013-08-10 07:46:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|