summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 75ccab1)
raw | patch | inline | side by side (parent: 75ccab1)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 31 Oct 2006 07:12:20 +0000 (07:12 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 31 Oct 2006 07:12:20 +0000 (07:12 +0000) |
Fixed error msgs from getxls
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4967 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4967 594d385d-05f5-0310-b6e9-bd551577e9d8
html/getldif.php | patch | blob | history | |
html/getxls.php | patch | blob | history |
diff --git a/html/getldif.php b/html/getldif.php
index 1c32f12ace8d473822e2d8d9ada9fc1653b86ac9..0045c6757fbf6a1a749a56b9706caceb9dba88bc 100644 (file)
--- a/html/getldif.php
+++ b/html/getldif.php
$display = "";
- if($mode == 2){ // Single Entry Export !
- $dn = base64_decode($_GET['dn']);
- $display = $ldap->gen_one_entry($dn);
- echo $display;
- }
- elseif($mode == 3){ // Full LDIF Export !
- $dn = base64_decode($_GET['dn']);
- $display = $ldap->gen_ldif($dn);
- echo $display;
- }
- elseif($mode == 4){ // IVBB LDIF Export
- $dn = base64_decode($_GET['dn']);
- $display= $ldap->gen_ldif($dn,"(objectClass=ivbbentry)",array(
- "GouvernmentOrganizationalUnit","houseIdentifier","vocation",
- "ivbbLastDeliveryCollective","gouvernmentOrganizationalPersonLocality",
- "gouvernmentOrganizationalUnitDescription","gouvernmentOrganizationalUnitSubjectArea",
- "functionalTitle","role","certificateSerialNumber","userCertificate","publicVisible",
- "telephoneNumber","seeAlso","description","title","x121Address","registeredAddress",
- "destinationIndicator","preferredDeliveryMethod","telexNumber","teletexTerminalIdentifier",
- "telephoneNumber","internationaliSDNNumber","facsimileTelephoneNumber","street",
- "postOfficeBox","postalCode","postalAddress","physicalDeliveryOfficeName","ou",
- "st","l","audio","businessCategory","carLicense","departmentNumber","displayName",
- "employeeNumber","employeeType","givenName","homePhone","homePostalAddress",
- "initials","jpegPhoto","labeledURI","mail","manager","mobile","o","pager","photo",
- "roomNumber","secretary","userCertificate","x500uniqueIdentifier","preferredLanguage",
- "userSMIMECertificate","userPKCS12"));
-
- echo $display;
+ if($mode == 2){ // Single Entry Export !
+ $dn = base64_decode($_GET['dn']);
+ $display = $ldap->gen_one_entry($dn);
+ echo $display;
+ }
+ elseif($mode == 3){ // Full LDIF Export !
+ $dn = base64_decode($_GET['dn']);
+ $display = $ldap->gen_ldif($dn);
+ echo $display;
+ }
+ elseif($mode == 4){ // IVBB LDIF Export
+ $dn = base64_decode($_GET['dn']);
+ $display= $ldap->gen_ldif($dn,"(objectClass=ivbbentry)",array(
+ "GouvernmentOrganizationalUnit","houseIdentifier","vocation",
+ "ivbbLastDeliveryCollective","gouvernmentOrganizationalPersonLocality",
+ "gouvernmentOrganizationalUnitDescription","gouvernmentOrganizationalUnitSubjectArea",
+ "functionalTitle","role","certificateSerialNumber","userCertificate","publicVisible",
+ "telephoneNumber","seeAlso","description","title","x121Address","registeredAddress",
+ "destinationIndicator","preferredDeliveryMethod","telexNumber","teletexTerminalIdentifier",
+ "telephoneNumber","internationaliSDNNumber","facsimileTelephoneNumber","street",
+ "postOfficeBox","postalCode","postalAddress","physicalDeliveryOfficeName","ou",
+ "st","l","audio","businessCategory","carLicense","departmentNumber","displayName",
+ "employeeNumber","employeeType","givenName","homePhone","homePostalAddress",
+ "initials","jpegPhoto","labeledURI","mail","manager","mobile","o","pager","photo",
+ "roomNumber","secretary","userCertificate","x500uniqueIdentifier","preferredLanguage",
+ "userSMIMECertificate","userPKCS12"));
+
+ echo $display;
}
}
$ui= $_SESSION["ui"];
$config= $_SESSION['config'];
+/* Check ACL's */
+$dn = base64_decode($_GET['dn']);
+$acl = $ui->get_permissions($dn,"ldapmanager/ldifexport");
+if(!preg_match("/r/",$acl)){
+ echo "insufficient permissions";
+ exit();
+}
+
+
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-cache");
header("Content-type: text/plain");
-/* Check ACL's */
-$acl= get_permissions ($config->current['BASE'], $ui->subtreeACL);
-$acl= get_module_permission($acl, "all", $config->current['BASE']);
-if (chkacl($acl, "all") != ""){
- header ("Location: index.php");
- exit;
-}
switch ($_GET['ivbb']){
- case 2: dump_ldap (2);
- break;
+ case 2: dump_ldap (2);
+ break;
- case 3: dump_ldap (3);
- break;
+ case 3: dump_ldap (3);
+ break;
- case 4: dump_ldap (4);
- break;
-
- default:
- echo "Error in ivbb parameter. Request aborted.";
- }
+ case 4: dump_ldap (4);
+ break;
+
+ default:
+ echo "Error in ivbb parameter. Request aborted.";
+}
// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
?>
diff --git a/html/getxls.php b/html/getxls.php
index 7bb560e7dfa866e4580e634d87ab52737feb7516..ef5acfb9a36921b171fe1130fbfad6397e5101c7 100644 (file)
--- a/html/getxls.php
+++ b/html/getxls.php
/* Logged in? Simple security check */
if (!isset($_SESSION['ui'])){
- gosa_log ("Error: getldif.php called without session");
+ gosa_log ("Error: getxls.php called without session");
header ("Location: index.php");
exit;
}