OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Parser::RevokeRoleStmt Class Reference

#include <ParserNode.h>

+ Inheritance diagram for Parser::RevokeRoleStmt:
+ Collaboration diagram for Parser::RevokeRoleStmt:

Public Member Functions

 RevokeRoleStmt (std::list< std::string * > *r, std::list< std::string * > *g)
 
 RevokeRoleStmt (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 1657 of file ParserNode.h.

Constructor & Destructor Documentation

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

Definition at line 1659 of file ParserNode.h.

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

1659  {
1662  }
std::vector< std::string > grantees_
Definition: ParserNode.h:1672
void parser_slistval_to_vector(std::list< std::string * > *l, std::vector< std::string > &v)
Definition: ParserNode.h:1541
std::vector< std::string > roles_
Definition: ParserNode.h:1671

+ Here is the call graph for this function:

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

Definition at line 6404 of file ParserNode.cpp.

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

6404  {
6405  if (payload.HasMember("roles")) {
6406  CHECK(payload["roles"].IsArray());
6407  for (auto& role : payload["roles"].GetArray()) {
6408  std::string r = json_str(role);
6409  roles_.emplace_back(r);
6410  }
6411  }
6412  if (payload.HasMember("grantees")) {
6413  CHECK(payload["grantees"].IsArray());
6414  for (auto& grantee : payload["grantees"].GetArray()) {
6415  std::string g = json_str(grantee);
6416  grantees_.emplace_back(g);
6417  }
6418  }
6419 }
std::vector< std::string > grantees_
Definition: ParserNode.h:1672
const std::string json_str(const rapidjson::Value &obj) noexcept
Definition: JsonAccessors.h:46
std::vector< std::string > roles_
Definition: ParserNode.h:1671
#define CHECK(condition)
Definition: Logger.h:291

+ Here is the call graph for this function:

Member Function Documentation

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

Implements Parser::DDLStmt.

Definition at line 6421 of file ParserNode.cpp.

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

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

6422  {
6423  if (read_only_mode) {
6424  throw std::runtime_error("REVOKE ROLE invalid in read only mode.");
6425  }
6426  const auto& currentUser = session.get_currentUser();
6427  if (!currentUser.isSuper) {
6428  throw std::runtime_error(
6429  "REVOKE failed, because it can only be executed by super user.");
6430  }
6431  if (std::find(get_grantees().begin(), get_grantees().end(), shared::kRootUsername) !=
6432  get_grantees().end()) {
6433  throw std::runtime_error(
6434  "Request to revoke role failed because privileges can not be revoked from "
6435  "mapd root user.");
6436  }
6437  SysCatalog::instance().revokeRoleBatch(get_roles(), get_grantees());
6438 }
const std::vector< std::string > & get_grantees() const
Definition: ParserNode.h:1666
const std::vector< std::string > & get_roles() const
Definition: ParserNode.h:1665
const std::string kRootUsername
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::RevokeRoleStmt::get_grantees ( ) const
inline

Definition at line 1666 of file ParserNode.h.

References grantees_.

Referenced by execute().

1666 { return grantees_; }
std::vector< std::string > grantees_
Definition: ParserNode.h:1672

+ Here is the caller graph for this function:

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

Definition at line 1665 of file ParserNode.h.

References roles_.

Referenced by execute().

1665 { return roles_; }
std::vector< std::string > roles_
Definition: ParserNode.h:1671

+ Here is the caller graph for this function:

Member Data Documentation

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

Definition at line 1672 of file ParserNode.h.

Referenced by get_grantees(), and RevokeRoleStmt().

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

Definition at line 1671 of file ParserNode.h.

Referenced by get_roles(), and RevokeRoleStmt().


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