phpldapadmin/htdocs/download_binary_attr.php

45 lines
1.5 KiB
PHP
Raw Normal View History

2009-06-30 08:07:14 +00:00
<?php
2009-06-30 09:40:37 +00:00
// $Header: /cvsroot/phpldapadmin/phpldapadmin/htdocs/download_binary_attr.php,v 1.12.2.1 2005/10/09 09:07:21 wurley Exp $
2009-06-30 08:07:14 +00:00
2009-06-30 09:29:51 +00:00
/**
* @package phpLDAPadmin
* Variables that come in via common.php
* - server_id
*/
/**
*/
2009-06-30 09:22:30 +00:00
require './common.php';
2009-06-30 08:07:14 +00:00
2009-06-30 09:29:51 +00:00
if ($ldapserver->isReadOnly())
pla_error($lang['no_updates_in_read_only_mode']);
if (! $ldapserver->haveAuthInfo())
pla_error($lang['not_enough_login_info']);
$dn = rawurldecode($_GET['dn']);
2009-06-30 08:07:14 +00:00
$attr = $_GET['attr'];
2009-06-30 09:29:51 +00:00
# if there are multiple values in this attribute, which one do you want to see?
$value_num = isset($_GET['value_num']) ? $_GET['value_num'] : 0;
dn_exists($ldapserver,$dn) or
pla_error(sprintf($lang['no_such_entry'],pretty_print_dn($dn)));
$search = @ldap_read($ldapserver->connect(),$dn,"(objectClass=*)",array($attr),0,0,0,$config->GetValue('deref','view'));
if (! $search)
2009-06-30 09:40:37 +00:00
pla_error($lang['error_performing_search'],$ldapserver->error(),$ldapserver->errno());
2009-06-30 09:29:51 +00:00
$entry = ldap_first_entry($ldapserver->connect(),$search);
$attrs = ldap_get_attributes($ldapserver->connect(),$entry);
$attr = ldap_first_attribute($ldapserver->connect(),$entry,$attrs);
$values = ldap_get_values_len($ldapserver->connect(),$entry,$attr);
2009-06-30 08:07:14 +00:00
$count = $values['count'];
2009-06-30 09:22:30 +00:00
// Dump the binary data to the browser
2009-06-30 09:29:51 +00:00
header("Content-type: octet-stream");
header("Content-disposition: attachment; filename=$attr");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
2009-06-30 08:07:14 +00:00
echo $values[$value_num];
?>