2020-05-30 20:10:45 +00:00
|
|
|
#include <Parsers/ParserRolesOrUsersSet.h>
|
2019-12-01 22:01:05 +00:00
|
|
|
#include <Parsers/CommonParsers.h>
|
2020-02-21 19:27:12 +00:00
|
|
|
#include <Parsers/ExpressionElementParsers.h>
|
|
|
|
#include <Parsers/ASTLiteral.h>
|
2020-05-30 20:10:45 +00:00
|
|
|
#include <Parsers/ASTRolesOrUsersSet.h>
|
2020-02-04 22:37:04 +00:00
|
|
|
#include <Parsers/parseUserName.h>
|
2020-06-05 21:31:37 +00:00
|
|
|
#include <Parsers/ExpressionListParsers.h>
|
2019-12-01 22:01:05 +00:00
|
|
|
#include <boost/range/algorithm/find.hpp>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2020-02-10 15:24:33 +00:00
|
|
|
namespace
|
2019-12-01 22:01:05 +00:00
|
|
|
{
|
2020-06-05 21:31:37 +00:00
|
|
|
bool parseRoleNameOrID(
|
|
|
|
IParserBase::Pos & pos,
|
|
|
|
Expected & expected,
|
|
|
|
bool id_mode,
|
|
|
|
String & res)
|
2020-02-21 19:27:12 +00:00
|
|
|
{
|
|
|
|
return IParserBase::wrapParseImpl(pos, [&]
|
|
|
|
{
|
2020-06-05 21:31:37 +00:00
|
|
|
if (!id_mode)
|
2020-02-21 19:27:12 +00:00
|
|
|
return parseRoleName(pos, expected, res);
|
|
|
|
|
|
|
|
if (!ParserKeyword{"ID"}.ignore(pos, expected))
|
|
|
|
return false;
|
|
|
|
if (!ParserToken(TokenType::OpeningRoundBracket).ignore(pos, expected))
|
|
|
|
return false;
|
|
|
|
ASTPtr ast;
|
|
|
|
if (!ParserStringLiteral{}.parse(pos, ast, expected))
|
|
|
|
return false;
|
|
|
|
String id = ast->as<ASTLiteral &>().value.safeGet<String>();
|
|
|
|
if (!ParserToken(TokenType::ClosingRoundBracket).ignore(pos, expected))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
res = std::move(id);
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool parseBeforeExcept(
|
|
|
|
IParserBase::Pos & pos,
|
|
|
|
Expected & expected,
|
|
|
|
bool id_mode,
|
2020-05-30 20:10:45 +00:00
|
|
|
bool allow_all,
|
2020-06-05 21:31:37 +00:00
|
|
|
bool allow_current_user,
|
2020-02-21 19:27:12 +00:00
|
|
|
Strings & names,
|
|
|
|
bool & all,
|
|
|
|
bool & current_user)
|
2019-12-01 22:01:05 +00:00
|
|
|
{
|
2020-06-05 21:31:37 +00:00
|
|
|
bool res_all = false;
|
|
|
|
bool res_current_user = false;
|
|
|
|
Strings res_names;
|
|
|
|
|
|
|
|
auto parse_element = [&]
|
2019-12-01 22:01:05 +00:00
|
|
|
{
|
2020-06-05 21:31:37 +00:00
|
|
|
if (ParserKeyword{"NONE"}.ignore(pos, expected))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (allow_all && ParserKeyword{"ALL"}.ignore(pos, expected))
|
2019-12-01 22:01:05 +00:00
|
|
|
{
|
2020-06-05 21:31:37 +00:00
|
|
|
res_all = true;
|
|
|
|
return true;
|
2019-12-01 22:01:05 +00:00
|
|
|
}
|
|
|
|
|
2020-06-05 21:31:37 +00:00
|
|
|
if (allow_current_user && parseCurrentUserTag(pos, expected))
|
|
|
|
{
|
|
|
|
res_current_user = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
String name;
|
|
|
|
if (parseRoleNameOrID(pos, expected, id_mode, name))
|
|
|
|
{
|
|
|
|
res_names.emplace_back(std::move(name));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!ParserList::parseUtil(pos, expected, parse_element, false))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
names = std::move(res_names);
|
|
|
|
all = res_all;
|
|
|
|
current_user = res_current_user;
|
|
|
|
return true;
|
2019-12-01 22:01:05 +00:00
|
|
|
}
|
|
|
|
|
2020-02-21 19:27:12 +00:00
|
|
|
bool parseExceptAndAfterExcept(
|
|
|
|
IParserBase::Pos & pos,
|
|
|
|
Expected & expected,
|
|
|
|
bool id_mode,
|
2020-06-05 21:31:37 +00:00
|
|
|
bool allow_current_user,
|
2020-02-21 19:27:12 +00:00
|
|
|
Strings & except_names,
|
|
|
|
bool & except_current_user)
|
2019-12-01 22:01:05 +00:00
|
|
|
{
|
2020-02-10 15:24:33 +00:00
|
|
|
return IParserBase::wrapParseImpl(pos, [&]
|
|
|
|
{
|
|
|
|
if (!ParserKeyword{"EXCEPT"}.ignore(pos, expected))
|
|
|
|
return false;
|
|
|
|
|
2020-06-05 21:31:37 +00:00
|
|
|
bool unused;
|
|
|
|
return parseBeforeExcept(pos, expected, id_mode, false, allow_current_user, except_names, unused, except_current_user);
|
2020-02-10 15:24:33 +00:00
|
|
|
});
|
2019-12-01 22:01:05 +00:00
|
|
|
}
|
2020-02-10 15:24:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-30 20:10:45 +00:00
|
|
|
bool ParserRolesOrUsersSet::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
|
2020-02-10 15:24:33 +00:00
|
|
|
{
|
|
|
|
Strings names;
|
|
|
|
bool current_user = false;
|
|
|
|
bool all = false;
|
|
|
|
Strings except_names;
|
|
|
|
bool except_current_user = false;
|
|
|
|
|
2020-05-30 20:10:45 +00:00
|
|
|
if (!parseBeforeExcept(pos, expected, id_mode, allow_all, allow_current_user, names, all, current_user))
|
2020-02-10 15:24:33 +00:00
|
|
|
return false;
|
|
|
|
|
2020-05-30 20:10:45 +00:00
|
|
|
parseExceptAndAfterExcept(pos, expected, id_mode, allow_current_user, except_names, except_current_user);
|
2020-02-10 15:24:33 +00:00
|
|
|
|
|
|
|
if (all)
|
|
|
|
names.clear();
|
2019-12-01 22:01:05 +00:00
|
|
|
|
2020-05-30 20:10:45 +00:00
|
|
|
auto result = std::make_shared<ASTRolesOrUsersSet>();
|
2020-02-10 15:24:33 +00:00
|
|
|
result->names = std::move(names);
|
2019-12-01 22:01:05 +00:00
|
|
|
result->current_user = current_user;
|
2020-02-10 15:24:33 +00:00
|
|
|
result->all = all;
|
|
|
|
result->except_names = std::move(except_names);
|
2019-12-01 22:01:05 +00:00
|
|
|
result->except_current_user = except_current_user;
|
2020-02-21 19:27:12 +00:00
|
|
|
result->id_mode = id_mode;
|
2020-05-30 20:10:45 +00:00
|
|
|
result->allow_user_names = allow_user_names;
|
|
|
|
result->allow_role_names = allow_role_names;
|
2019-12-01 22:01:05 +00:00
|
|
|
node = result;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|