OmniSciDB  c1a53651b2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Parser::GrantRoleStmt Class Reference

#include <ParserNode.h>

+ Inheritance diagram for Parser::GrantRoleStmt:
+ Collaboration diagram for Parser::GrantRoleStmt:

Public Member Functions

 GrantRoleStmt (std::list< std::string * > *r, std::list< std::string * > *g)
 
 GrantRoleStmt (const rapidjson::Value &payload)
 
const std::vector< std::string > & get_roles () const
 
const std::vector< std::string > & get_grantees () const
 
void execute (const Catalog_Namespace::SessionInfo &session, bool read_only_mode) override
 
- Public Member Functions inherited from Parser::DDLStmt
void setColumnDescriptor (ColumnDescriptor &cd, const ColumnDef *coldef)
 
- Public Member Functions inherited from Parser::Node
virtual ~Node ()
 

Private Attributes

std::vector< std::string > roles_
 
std::vector< std::string > grantees_
 

Detailed Description

Definition at line 1648 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::GrantRoleStmt::GrantRoleStmt ( std::list< std::string * > *  r,
std::list< std::string * > *  g 
)
inline

Definition at line 1650 of file ParserNode.h.

References grantees_, Parser::parser_slistval_to_vector(), and roles_.

1650  {
1653  }
void parser_slistval_to_vector(std::list< std::string * > *l, std::vector< std::string > &v)
Definition: ParserNode.h:1554
std::vector< std::string > roles_
Definition: ParserNode.h:1662
std::vector< std::string > grantees_
Definition: ParserNode.h:1663

+ Here is the call graph for this function:

Parser::GrantRoleStmt::GrantRoleStmt ( const rapidjson::Value &  payload)

Definition at line 6065 of file ParserNode.cpp.

References CHECK, grantees_, json_str(), and roles_.

6065  {
6066  if (payload.HasMember("roles")) {
6067  CHECK(payload["roles"].IsArray());
6068  for (auto& role : payload["roles"].GetArray()) {
6069  std::string r = json_str(role);
6070  roles_.emplace_back(r);
6071  }
6072  }
6073  if (payload.HasMember("grantees")) {
6074  CHECK(payload["grantees"].IsArray());
6075  for (auto& grantee : payload["grantees"].GetArray()) {
6076  std::string g = json_str(grantee);
6077  grantees_.emplace_back(g);
6078  }
6079  }
6080 }
const std::string json_str(const rapidjson::Value &obj) noexcept
Definition: JsonAccessors.h:44
std::vector< std::string > roles_
Definition: ParserNode.h:1662
std::vector< std::string > grantees_
Definition: ParserNode.h:1663
#define CHECK(condition)
Definition: Logger.h:291

+ Here is the call graph for this function:

Member Function Documentation

void Parser::GrantRoleStmt::execute ( const Catalog_Namespace::SessionInfo session,
bool  read_only_mode 
)
overridevirtual

Implements Parser::DDLStmt.

Definition at line 6082 of file ParserNode.cpp.

References Catalog_Namespace::SessionInfo::get_currentUser(), get_grantees(), get_roles(), and shared::kRootUsername.

Referenced by heavydb.cursor.Cursor::executemany().

6083  {
6084  if (read_only_mode) {
6085  throw std::runtime_error("GRANT ROLE invalid in read only mode.");
6086  }
6087  const auto& currentUser = session.get_currentUser();
6088  if (!currentUser.isSuper) {
6089  throw std::runtime_error(
6090  "GRANT failed, because it can only be executed by super user.");
6091  }
6092  if (std::find(get_grantees().begin(), get_grantees().end(), shared::kRootUsername) !=
6093  get_grantees().end()) {
6094  throw std::runtime_error(
6095  "Request to grant role failed because mapd root user has all privileges by "
6096  "default.");
6097  }
6098  SysCatalog::instance().grantRoleBatch(get_roles(), get_grantees());
6099 }
const std::vector< std::string > & get_roles() const
Definition: ParserNode.h:1656
const std::string kRootUsername
const std::vector< std::string > & get_grantees() const
Definition: ParserNode.h:1657
const UserMetadata & get_currentUser() const
Definition: SessionInfo.h:88

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

const std::vector<std::string>& Parser::GrantRoleStmt::get_grantees ( ) const
inline

Definition at line 1657 of file ParserNode.h.

References grantees_.

Referenced by execute().

1657 { return grantees_; }
std::vector< std::string > grantees_
Definition: ParserNode.h:1663

+ Here is the caller graph for this function:

const std::vector<std::string>& Parser::GrantRoleStmt::get_roles ( ) const
inline

Definition at line 1656 of file ParserNode.h.

References roles_.

Referenced by execute().

1656 { return roles_; }
std::vector< std::string > roles_
Definition: ParserNode.h:1662

+ Here is the caller graph for this function:

Member Data Documentation

std::vector<std::string> Parser::GrantRoleStmt::grantees_
private

Definition at line 1663 of file ParserNode.h.

Referenced by get_grantees(), and GrantRoleStmt().

std::vector<std::string> Parser::GrantRoleStmt::roles_
private

Definition at line 1662 of file ParserNode.h.

Referenced by get_roles(), and GrantRoleStmt().


The documentation for this class was generated from the following files: