使用Groovy从OpenLDAP服务器读取和保存二进制映像

时间:2013-03-29 16:43:16

标签: grails groovy ldap apacheds

我正在尝试从OpenLDAP服务器保存图像。它是二进制格式,我的所有代码似乎都有效,但图像已损坏。

然后我尝试在PHP中这样做并且成功了,但我想在Grails项目中这样做。

PHP示例(有效)

<?php
    $conn = ldap_connect('ldap.example.com') or die("Could not connect.\n");
    ldap_set_option($conn, LDAP_OPT_PROTOCOL_VERSION, 3);
    $dn = 'ou=People,o=Acme';
    $ldap_rs = ldap_bind($conn) or die("Can't bind to LDAP");
    $res = ldap_search($conn,$dn,"someID=123456789");
    $info = ldap_get_entries($conn, $res);
    $entry = ldap_first_entry($conn, $res);
    $jpeg_data = ldap_get_values_len( $conn, $entry, "someimage-jpeg");
    $jpeg_filename = '/tmp/' . basename( tempnam ('.', 'djp') );
    $outjpeg = fopen($jpeg_filename, "wb");
    fwrite($outjpeg, $jpeg_data[0]);
    fclose ($outjpeg);
    copy ($jpeg_filename, '/some/dir/test.jpg');
    unlink($jpeg_filename);
?>

Groovy示例(不起作用)

def ldap = org.apache.directory.groovyldap.LDAP.newInstance('ldap://ldap.example.com/ou=People,o=Acme')

ldap.eachEntry (filter: 'someID=123456789') { entry ->

    new File('/Some/dir/123456789.jpg').withOutputStream {
        it.write entry.get('someimage-jpeg').getBytes()  // File is created, but image is corrupted (size also doesn't match the PHP version)
    }

}

我如何告诉Apache LDAP库“image-jpeg”实际上是二进制而不是字符串?是否有更好的简单库可用于从LDAP服务器读取二进制数据?从查看Apache邮件列表someone else had a similar issue,但我在帖子中找不到解决方案。

技术堆栈

2 个答案:

答案 0 :(得分:1)

您是否检查过图像属性值是否为base-64编码?

答案 1 :(得分:0)

我找到了答案。 Apache Groovy LDAP库使用JNDI。使用JNDI时,某些条目会自动读取为二进制文件,但如果您的LDAP服务器使用自定义名称,则库将不知道它是二进制文件。

对于那些使用Grails遇到此问题的人,这里是将特定条目设置为二进制格式的步骤。

  • 创建一个新的属性文件调用“jndi.properties”并将其添加到grails-app / conf目录中(此文件夹中的所有属性文件都自动包含在类路径中)

  • 在属性文件中添加一行,其中包含图像变量的名称:

    java.naming.ldap.attributes.binary=some_custom_image

  • 保存文件并运行Grails应用程序

以下是将二进制条目保存到文件的示例代码。

def ldap = LDAP.newInstance('ldap://some.server.com/ou=People,o=Acme')      
ldap.eachEntry (filter: 'id=1234567') { entry ->             
    new File('/var/dir/something.jpg').withOutputStream {          
        it.write entry.image          
    }         
}