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

#include <ParserNode.h>

+ Inheritance diagram for Parser::RevokePrivilegesStmt:
+ Collaboration diagram for Parser::RevokePrivilegesStmt:

Public Member Functions

 RevokePrivilegesStmt (std::list< std::string * > *p, std::string *t, std::string *o, std::list< std::string * > *g)
 
 RevokePrivilegesStmt (const rapidjson::Value &payload)
 
const std::vector< std::string > & get_privs () const
 
const std::string & get_object_type () const
 
const std::string & get_object () 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 > privileges_
 
std::unique_ptr< std::string > type_
 
std::unique_ptr< std::string > target_
 
std::vector< std::string > grantees_
 

Detailed Description

Definition at line 1585 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::RevokePrivilegesStmt::RevokePrivilegesStmt ( std::list< std::string * > *  p,
std::string *  t,
std::string *  o,
std::list< std::string * > *  g 
)
inline

Definition at line 1587 of file ParserNode.h.

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

1591  : type_(t), target_(o) {
1594  }
void parser_slistval_to_vector(std::list< std::string * > *l, std::vector< std::string > &v)
Definition: ParserNode.h:1541
std::unique_ptr< std::string > type_
Definition: ParserNode.h:1606
std::vector< std::string > grantees_
Definition: ParserNode.h:1608
std::unique_ptr< std::string > target_
Definition: ParserNode.h:1607
std::vector< std::string > privileges_
Definition: ParserNode.h:1605

+ Here is the call graph for this function:

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

Definition at line 6201 of file ParserNode.cpp.

References CHECK, grantees_, json_str(), privileges_, target_, and type_.

6201  {
6202  CHECK(payload.HasMember("type"));
6203  type_ = std::make_unique<std::string>(json_str(payload["type"]));
6204 
6205  CHECK(payload.HasMember("target"));
6206  target_ = std::make_unique<std::string>(json_str(payload["target"]));
6207 
6208  if (payload.HasMember("privileges")) {
6209  CHECK(payload["privileges"].IsArray());
6210  for (auto& privilege : payload["privileges"].GetArray()) {
6211  auto r = json_str(privilege);
6212  // privilege was a StringLiteral
6213  // and is wrapped with quotes which need to get removed
6214  boost::algorithm::trim_if(r, boost::is_any_of(" \"'`"));
6215  privileges_.emplace_back(r);
6216  }
6217  }
6218  if (payload.HasMember("grantees")) {
6219  CHECK(payload["grantees"].IsArray());
6220  for (auto& grantee : payload["grantees"].GetArray()) {
6221  std::string g = json_str(grantee);
6222  grantees_.emplace_back(g);
6223  }
6224  }
6225 }
const std::string json_str(const rapidjson::Value &obj) noexcept
Definition: JsonAccessors.h:46
std::unique_ptr< std::string > type_
Definition: ParserNode.h:1606
std::vector< std::string > grantees_
Definition: ParserNode.h:1608
std::unique_ptr< std::string > target_
Definition: ParserNode.h:1607
#define CHECK(condition)
Definition: Logger.h:291
std::vector< std::string > privileges_
Definition: ParserNode.h:1605

+ Here is the call graph for this function:

Member Function Documentation

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

Implements Parser::DDLStmt.

Definition at line 6227 of file ParserNode.cpp.

References Parser::createObject(), DBObjectTypeFromString(), Parser::extractObjectNameFromHierName(), g_enable_fsi, Catalog_Namespace::SessionInfo::get_currentUser(), get_object(), get_object_type(), get_privs(), Catalog_Namespace::SessionInfo::getCatalog(), grantees_, Parser::parseStringPrivs(), ServerDBObjectType, and Parser::verifyObject().

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

6228  {
6229  if (read_only_mode) {
6230  throw std::runtime_error("REVOKE invalid in read only mode.");
6231  }
6232  auto& catalog = session.getCatalog();
6233  const auto& currentUser = session.get_currentUser();
6234  const auto parserObjectType = boost::to_upper_copy<std::string>(get_object_type());
6235  const auto objectName =
6236  extractObjectNameFromHierName(get_object(), parserObjectType, catalog);
6237  auto objectType = DBObjectTypeFromString(parserObjectType);
6238  if (objectType == ServerDBObjectType && !g_enable_fsi) {
6239  throw std::runtime_error("REVOKE failed. SERVER object unrecognized.");
6240  }
6241  /* verify object exists and is of proper type *before* trying to execute */
6242  verifyObject(catalog, objectName, objectType, "REVOKE");
6243 
6244  DBObject dbObject = createObject(objectName, objectType);
6245  /* verify object ownership if not suser */
6246  if (!currentUser.isSuper) {
6247  if (!SysCatalog::instance().verifyDBObjectOwnership(currentUser, dbObject, catalog)) {
6248  throw std::runtime_error(
6249  "REVOKE failed. It can only be executed by super user or owner of the "
6250  "object.");
6251  }
6252  }
6253  /* set proper values of privileges & grant them to the object */
6254  std::vector<DBObject> objects(get_privs().size(), dbObject);
6255  for (size_t i = 0; i < get_privs().size(); ++i) {
6256  std::pair<AccessPrivileges, DBObjectType> priv = parseStringPrivs(
6257  boost::to_upper_copy<std::string>(get_privs()[i]), objectType, get_object());
6258  objects[i].setPrivileges(priv.first);
6259  objects[i].setPermissionType(priv.second);
6260  if (priv.second == ServerDBObjectType && !g_enable_fsi) {
6261  throw std::runtime_error("REVOKE failed. SERVER object unrecognized.");
6262  }
6263  }
6264  SysCatalog::instance().revokeDBObjectPrivilegesBatch(grantees_, objects, catalog);
6265 }
std::string extractObjectNameFromHierName(const std::string &objectHierName, const std::string &objectType, const Catalog_Namespace::Catalog &cat)
DBObjectType DBObjectTypeFromString(const std::string &type)
Definition: DBObject.cpp:110
std::vector< std::string > grantees_
Definition: ParserNode.h:1608
Catalog & getCatalog() const
Definition: SessionInfo.h:75
static std::pair< AccessPrivileges, DBObjectType > parseStringPrivs(const std::string &privs, const DBObjectType &objectType, const std::string &object_name)
static void verifyObject(Catalog_Namespace::Catalog &sessionCatalog, const std::string &objectName, DBObjectType objectType, const std::string &command)
const std::vector< std::string > & get_privs() const
Definition: ParserNode.h:1597
static DBObject createObject(const std::string &objectName, DBObjectType objectType)
const std::string & get_object() const
Definition: ParserNode.h:1599
bool g_enable_fsi
Definition: Catalog.cpp:96
const UserMetadata & get_currentUser() const
Definition: SessionInfo.h:88
const std::string & get_object_type() const
Definition: ParserNode.h:1598

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

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

Definition at line 1600 of file ParserNode.h.

References grantees_.

1600 { return grantees_; }
std::vector< std::string > grantees_
Definition: ParserNode.h:1608
const std::string& Parser::RevokePrivilegesStmt::get_object ( ) const
inline

Definition at line 1599 of file ParserNode.h.

References target_.

Referenced by execute().

1599 { return *target_; }
std::unique_ptr< std::string > target_
Definition: ParserNode.h:1607

+ Here is the caller graph for this function:

const std::string& Parser::RevokePrivilegesStmt::get_object_type ( ) const
inline

Definition at line 1598 of file ParserNode.h.

References type_.

Referenced by execute().

1598 { return *type_; }
std::unique_ptr< std::string > type_
Definition: ParserNode.h:1606

+ Here is the caller graph for this function:

const std::vector<std::string>& Parser::RevokePrivilegesStmt::get_privs ( ) const
inline

Definition at line 1597 of file ParserNode.h.

References privileges_.

Referenced by execute().

1597 { return privileges_; }
std::vector< std::string > privileges_
Definition: ParserNode.h:1605

+ Here is the caller graph for this function:

Member Data Documentation

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

Definition at line 1608 of file ParserNode.h.

Referenced by execute(), get_grantees(), and RevokePrivilegesStmt().

std::vector<std::string> Parser::RevokePrivilegesStmt::privileges_
private

Definition at line 1605 of file ParserNode.h.

Referenced by get_privs(), and RevokePrivilegesStmt().

std::unique_ptr<std::string> Parser::RevokePrivilegesStmt::target_
private

Definition at line 1607 of file ParserNode.h.

Referenced by get_object(), and RevokePrivilegesStmt().

std::unique_ptr<std::string> Parser::RevokePrivilegesStmt::type_
private

Definition at line 1606 of file ParserNode.h.

Referenced by get_object_type(), and RevokePrivilegesStmt().


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