pydsdb: added get_syntax_oid_from_lDAPDisplayName()
authorAndrew Tridgell <tridge@samba.org>
Wed, 22 Jun 2011 04:41:50 +0000 (14:41 +1000)
committerAndrew Tridgell <tridge@samba.org>
Wed, 22 Jun 2011 04:47:08 +0000 (14:47 +1000)
this gives you access to the syntax oid of an attribute

Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>

source4/dsdb/pydsdb.c
source4/scripting/python/samba/samdb.py

index 62f33bbc3407a9f13a82854de918dac3af63abd1..5ca6b02608aad0776d800d2a1f4204c238b7d14a 100644 (file)
@@ -330,6 +330,38 @@ static PyObject *py_dsdb_get_attid_from_lDAPDisplayName(PyObject *self, PyObject
        return PyLong_FromUnsignedLong(attid);
 }
 
+/*
+  return the attribute syntax oid as a string from the attribute name
+ */
+static PyObject *py_dsdb_get_syntax_oid_from_lDAPDisplayName(PyObject *self, PyObject *args)
+{
+       PyObject *py_ldb;
+       struct ldb_context *ldb;
+       struct dsdb_schema *schema;
+       const char *ldap_display_name;
+       const struct dsdb_attribute *attribute;
+
+       if (!PyArg_ParseTuple(args, "Os", &py_ldb, &ldap_display_name))
+               return NULL;
+
+       PyErr_LDB_OR_RAISE(py_ldb, ldb);
+
+       schema = dsdb_get_schema(ldb, NULL);
+
+       if (!schema) {
+               PyErr_SetString(PyExc_RuntimeError, "Failed to find a schema from ldb");
+               return NULL;
+       }
+
+       attribute = dsdb_attribute_by_lDAPDisplayName(schema, ldap_display_name);
+       if (attribute == NULL) {
+               PyErr_Format(PyExc_RuntimeError, "Failed to find attribute '%s'", ldap_display_name);
+               return NULL;
+       }
+
+       return PyString_FromString(attribute->syntax->ldap_oid);
+}
+
 /*
   convert a python string to a DRSUAPI drsuapi_DsReplicaAttribute attribute
  */
@@ -802,6 +834,8 @@ static PyMethodDef py_dsdb_methods[] = {
                METH_VARARGS, NULL },
        { "_dsdb_get_attid_from_lDAPDisplayName", (PyCFunction)py_dsdb_get_attid_from_lDAPDisplayName,
                METH_VARARGS, NULL },
+       { "_dsdb_get_syntax_oid_from_lDAPDisplayName", (PyCFunction)py_dsdb_get_syntax_oid_from_lDAPDisplayName,
+               METH_VARARGS, NULL },
        { "_dsdb_set_ntds_invocation_id",
                (PyCFunction)py_dsdb_set_ntds_invocation_id, METH_VARARGS,
                NULL },
@@ -966,4 +1000,10 @@ void initdsdb(void)
        ADD_DSDB_FLAG(GPO_FLAG_MACHINE_DISABLE);
        ADD_DSDB_FLAG(GPO_INHERIT);
        ADD_DSDB_FLAG(GPO_BLOCK_INHERITANCE);
+
+#define ADD_DSDB_STRING(val)  PyModule_AddObject(m, #val, PyString_FromString(val))
+
+       ADD_DSDB_STRING(DSDB_SYNTAX_BINARY_DN);
+       ADD_DSDB_STRING(DSDB_SYNTAX_STRING_DN);
+       ADD_DSDB_STRING(DSDB_SYNTAX_OR_NAME);
 }
index 53346e867031f5dd16f62741bd2756d8188339f6..72ee472764b50b7b06fd672d680c713658704c8c 100644 (file)
@@ -476,9 +476,14 @@ accountExpires: %u
 
     def get_attid_from_lDAPDisplayName(self, ldap_display_name,
             is_schema_nc=False):
+        '''return the attribute ID for a LDAP attribute as an integer as found in DRSUAPI'''
         return dsdb._dsdb_get_attid_from_lDAPDisplayName(self,
             ldap_display_name, is_schema_nc)
 
+    def get_syntax_oid_from_lDAPDisplayName(self, ldap_display_name):
+        '''return the syntax OID for a LDAP attribute as a string'''
+        return dsdb._dsdb_get_syntax_oid_from_lDAPDisplayName(self, ldap_display_name)
+
     def set_ntds_settings_dn(self, ntds_settings_dn):
         """Set the NTDS Settings DN, as would be returned on the dsServiceName
         rootDSE attribute.