3

我有这个 ldap 条目:

cn=blah,ou=apples,ou=people,dc=yay,dc=edu

我需要将该条目移至:

cn=blah,ou=oranges,ou=people,dc=yay,dc=edu

我的脚本都是 PHP,所以我一直在尝试使用 php.net/ldap_rename

ldap_rename($connection, "cn=blah,ou=apples,ou=people,dc=yay,dc=edu", "cn=blah", "ou=oranges,ou=people,dc=yay,dc=edu", true);

不工作。它返回假。

http://us2.php.net/manual/en/function.ldap-rename.php#82393评论提到 eDirectory 想要将父级保留为 NULL。喜欢:

ldap_rename($connection, "cn=blah,ou=apples,ou=people,dc=yay,dc=edu", "cn=blah", NULL, true);

这将返回 TRUE 但实际上并不移动条目。不足为奇,因为它没有改变父母......我确信它可以将 cn=blah 改变为别的东西......

我曾想过删除该条目并重新创建它。但这是一种痛苦的方式。写出并运行 LDIF 文件也会很痛苦。

那么,如何在 php 中将条目从一个 OU 移动到另一个 OU,而不会遇到其他两个选项的痛苦?

我正在运行的内容:

  • Ubuntu 12.04 LTS
  • PHP 5.3.10
  • eDirectory 8.8 在 SLES 11 上

编辑

所以,我发现了这个:

modrdn 更改类型不能将条目移动到完全不同的子树。要将条目移动到完全不同的分支,您必须使用旧条目的属性在备用子树中创建一个新条目,然后删除旧条目。

来自http://www.centos.org/docs/5/html/CDS/ag/8.0/Creating_Directory_Entries-LDIF_Update_Statements.html

我发现其他几页有类似的陈述。

所以听起来我必须创建一个新条目,复制属性,删除旧的。就像我上面提到的第二个痛苦的选择一样。

4

3 回答 3

2

好吧,我最终使用了“创建新条目,删除旧条目”的方法。我仍然认为我有另一种工作方式,但我不记得是什么。所以这是一个基本的移动功能。

function move($connection, $ldapEntryReference, $new_dn){        
    //First, get the values of the current attributes.
    $attributes = array(); //start attributes array
    $firstattr = ldap_first_attribute($connection, $ldapEntryReference);
    $value = ldap_get_values($connection, $ldapEntryReference, $firstattr);
    $attributes[$firstattr] = $value;
    while($attr = ldap_next_attribute($connection, $ldapEntryReference)) {
        if (strcasecmp($attr, 'ACL') !== 0) { //We don't want ACL attributes since 
                                              //eDir/ldap should deal with them for us.
            if (strcasecmp($attr, 'jpegPhoto') === 0) {
                //binary values need to use the ldap_get_values_len function.
                $value = ldap_get_values_len($this->connection, $ldapEntryReference, $attr);
            } else {
                $value = ldap_get_values($this->connection, $ldapEntryReference, $attr);
            }
            $attributes[$attr] = $value;
        }
    }
    //Create a new entry array with the values.
    $entry = array(); //start entry array.
    foreach($attributes as $key => $value) {
        foreach($value as $key2 => $value2) {
            if (strcasecmp($key2, 'count') !== 0) {//get rid of 'count' indexes
                                                   //ldap_add chokes on them.
                $entry[$key][$key2] = $value2;
            }
        }
    }
    //Add the new entry.
    if (ldap_add($connection, $new_dn, $entry)) {
        //Delete the old entry.
        if (ldap_delete($connection, ldap_get_dn($connection, $ldapEntryReference)) {
            return true;
        } else {
            return false;
        }
    } else {
        return false; 
    }
}

希望这有助于某人,有时。

于 2013-06-14T19:42:16.917 回答
0

实际上不需要在 eDir 中重新创建。在运行 IDM 的环境中执行重新创建会导致问题,因为对象将具有新的 GUID,并且 IDM 引擎不会将该事件视为真正的“移动”。

以下代码可以很好地移动用户(经过测试的 eDir 8.8.x 和 eDir 9.x):

$olduserdn = "cn=userid,ou=container1,o=org";
$newdestdn = "ou=container2,o=org";
if (preg_match('/^(cn=[A-Za-z0-9]+)\,(.+)/i', $olduserdn, $rdnmatches))
{
    if (ldap_rename($ldapconn, $olduserdn, $rdnmatches[1], $newdestdn, TRUE))
    {
        print("Moved $olduserdn to $rdnmatches[1],$newdestdn");
    }
    else
    {
        print("Failed move because " . ldap_error($ldapconn));
    }
}

不要忘记给一点时间来复制......

还要考虑围绕修改/移动对象的约束,这些对象仍在从先前的移动事件中复制。

于 2016-10-12T01:37:37.120 回答
0

尝试这个:

ldap_rename($ldapconn, "cn=blah,ou=apples,ou=people,dc=yay,dc=edu", "cn=blah", "ou=oranges,ou=people,dc=yay,dc=edu", true);
于 2018-10-10T19:56:27.637 回答