%3 ::xotcl::Object ::xotcl::Object ::xo::db::sql::acs_permission ::xo::db::sql::acs_permission → grant_permission → permission_p → permission_p_recursive_array → revoke_permission ::xo::db::sql::acs_permission->::xotcl::Object

Class ::xo::db::sql::acs_permission

::xo::db::sql::acs_permission[i] create ...

Class Relations

  • class: ::xo::db::Class[i]
  • superclass: ::xotcl::Object[i]
::xo::db::Class create ::xo::db::sql::acs_permission \
     -superclass ::xotcl::Object

Methods (to be applied on the object)

  • grant_permission (scripted, public)

     xo::db::sql::acs_permission[i] grant_permission [ -dbn dbn ] \
        -object_id object_id  -grantee_id grantee_id  \
        -privilege privilege 

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -object_id
    (required)
    -grantee_id
    (required)
    -privilege
    (required)

    Partial Call Graph (max 5 caller/called nodes):
    %3 db_with_handle db_with_handle (public) xo::db::sql::acs_permission proc grant_permission xo::db::sql::acs_permission proc grant_permission xo::db::sql::acs_permission proc grant_permission->db_with_handle

    Testcases:
    No testcase defined.
    #function_args: {OBJECT_ID {}} {GRANTEE_ID {}} {PRIVILEGE {}}
    foreach var [list OBJECT_ID GRANTEE_ID PRIVILEGE]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select acs_permission__grant_permission($_OBJECT_ID$_GRANTEE_ID$_PRIVILEGE) 
        "
    db_with_handle -dbn $dbn db {
      #ns_log notice "--sql=$sql"
      return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ]
    }
  • permission_p (scripted, public)

     xo::db::sql::acs_permission[i] permission_p [ -dbn dbn ] \
        -object_id object_id  -party_id party_id  -privilege privilege 

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -object_id
    (required)
    -party_id
    (required)
    -privilege
    (required)

    Partial Call Graph (max 5 caller/called nodes):
    %3 db_with_handle db_with_handle (public) xo::db::sql::acs_permission proc permission_p xo::db::sql::acs_permission proc permission_p xo::db::sql::acs_permission proc permission_p->db_with_handle

    Testcases:
    No testcase defined.
    #function_args: {OBJECT_ID {}} {PARTY_ID {}} {PRIVILEGE {}}
    foreach var [list OBJECT_ID PARTY_ID PRIVILEGE]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select acs_permission__permission_p($_OBJECT_ID$_PARTY_ID$_PRIVILEGE) 
        "
    db_with_handle -dbn $dbn db {
      #ns_log notice "--sql=$sql"
      return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ]
    }
  • permission_p_recursive_array (scripted, public)

     xo::db::sql::acs_permission[i] permission_p_recursive_array [ -dbn dbn ] \
        -objects objects  -party_id party_id  -privilege privilege 

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -objects
    (required)
    -party_id
    (required)
    -privilege
    (required)

    Partial Call Graph (max 5 caller/called nodes):
    %3 db_with_handle db_with_handle (public) xo::db::sql::acs_permission proc permission_p_recursive_array xo::db::sql::acs_permission proc permission_p_recursive_array xo::db::sql::acs_permission proc permission_p_recursive_array->db_with_handle

    Testcases:
    No testcase defined.
    #function_args: {OBJECTS {}} {PARTY_ID {}} {PRIVILEGE {}}
    foreach var [list OBJECTS PARTY_ID PRIVILEGE]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select acs_permission__permission_p_recursive_array($_OBJECTS$_PARTY_ID$_PRIVILEGE) 
        "
    db_with_handle -dbn $dbn db {
      #ns_log notice "--sql=$sql"
      return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ]
    }
  • revoke_permission (scripted, public)

     xo::db::sql::acs_permission[i] revoke_permission [ -dbn dbn ] \
        -object_id object_id  -grantee_id grantee_id  \
        -privilege privilege 

    Automatically generated method

    Switches:
    -dbn
    (optional)
    -object_id
    (required)
    -grantee_id
    (required)
    -privilege
    (required)

    Partial Call Graph (max 5 caller/called nodes):
    %3 db_with_handle db_with_handle (public) xo::db::sql::acs_permission proc revoke_permission xo::db::sql::acs_permission proc revoke_permission xo::db::sql::acs_permission proc revoke_permission->db_with_handle

    Testcases:
    No testcase defined.
    #function_args: {OBJECT_ID {}} {GRANTEE_ID {}} {PRIVILEGE {}}
    foreach var [list OBJECT_ID GRANTEE_ID PRIVILEGE]  {
      set varname [string tolower $var]
      if {[info exists $varname]} {
        set $var [set $varname]
        set _$var :$var
      } else {
        set _$var null
      }
    }
    set sql "
    select acs_permission__revoke_permission($_OBJECT_ID$_GRANTEE_ID$_PRIVILEGE) 
        "
    db_with_handle -dbn $dbn db {
      #ns_log notice "--sql=$sql"
      return [ ns_set value [ns_pg_bind 0or1row $db $sql] 0 ]
    }