risingwave_frontend/expr/function_impl/
pg_table_is_visible.rs1use risingwave_common::acl::AclMode;
16use risingwave_common::session_config::SearchPath;
17use risingwave_expr::{Result, capture_context, function};
18use risingwave_pb::user::grant_privilege::Object as GrantObject;
19
20use super::context::{AUTH_CONTEXT, CATALOG_READER, DB_NAME, SEARCH_PATH, USER_INFO_READER};
21use crate::catalog::CatalogReader;
22use crate::catalog::system_catalog::is_system_catalog;
23use crate::expr::function_impl::has_privilege::user_not_found_err;
24use crate::session::AuthContext;
25use crate::user::user_service::UserInfoReader;
26
27#[function("pg_table_is_visible(int4) -> boolean")]
28fn pg_table_is_visible(oid: i32) -> Result<Option<bool>> {
29 pg_table_is_visible_impl_captured(oid)
30}
31
32#[capture_context(CATALOG_READER, USER_INFO_READER, AUTH_CONTEXT, SEARCH_PATH, DB_NAME)]
33fn pg_table_is_visible_impl(
34 catalog: &CatalogReader,
35 user_info: &UserInfoReader,
36 auth_context: &AuthContext,
37 search_path: &SearchPath,
38 db_name: &str,
39 oid: i32,
40) -> Result<Option<bool>> {
41 if is_system_catalog(oid as u32) {
43 return Ok(Some(true));
44 }
45
46 let catalog_reader = catalog.read_guard();
47 let user_reader = user_info.read_guard();
48 let user_info = user_reader
49 .get_user_by_name(&auth_context.user_name)
50 .ok_or(user_not_found_err(
51 format!("User {} not found", auth_context.user_name).as_str(),
52 ))?;
53 for schema in search_path.path() {
57 if let Ok(schema) = catalog_reader.get_schema_by_name(db_name, schema) {
58 if schema.contains_object(oid as u32) {
59 return if user_info.is_super
60 || user_info.has_privilege(&GrantObject::SchemaId(schema.id()), AclMode::Usage)
61 {
62 Ok(Some(true))
63 } else {
64 Ok(Some(false))
65 };
66 }
67 }
68 }
69
70 Ok(None)
71}