Code

Moved getldif.php
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 14 Apr 2008 08:35:13 +0000 (08:35 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 14 Apr 2008 08:35:13 +0000 (08:35 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10387 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/html/getldif.php [deleted file]
gosa-plugins/ldapmanager/addons/ldapmanager/contentexport.tpl
gosa-plugins/ldapmanager/html/getldif.php [new file with mode: 0644]

diff --git a/gosa-core/html/getldif.php b/gosa-core/html/getldif.php
deleted file mode 100644 (file)
index 96111af..0000000
+++ /dev/null
@@ -1,110 +0,0 @@
-<?php
-/*
- * This code is part of GOsa (http://www.gosa-project.org)
- * Copyright (C) 2003-2008 GONICUS GmbH
- *
- * ID: $$Id$$
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- */
-
-function dump_ldap ($mode= 0)
-{
-  global $config;
-  $ldap= $config->get_ldap_link();
-
-  $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;
-  }
-}
-
-
-/* Basic setup, remove eventually registered sessions */
-@require_once ("../include/php_setup.inc");
-@require_once ("functions.inc");
-error_reporting (E_ALL | E_STRICT);
-session::start();
-session::set('errorsAlreadyPosted',array());
-
-/* Logged in? Simple security check */
-if (!session::is_set('ui')){
-  new log("security","all/all","",array(),"Error: getldif.php called without session") ;
-  header ("Location: index.php");
-  exit;
-}
-$ui= session::get("ui");
-$config= session::get('config');
-
-/* Check ACL's */
-$dn =  base64_decode($_GET['dn']);
-$acl = $ui->get_permissions($dn,"ldapmanager/ldifexport");
-if(!preg_match("/r/",$acl)){
-       msg_dialog::display(_("Permission error"),_("You have no permission to create LDAP dumps!"),FATAL_ERROR_DIALOG);
-       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("Pragma: no-cache");
-header("Cache-Control: post-check=0, pre-check=0");
-
-header("Content-type: text/plain");
-
-
-switch ($_GET['ivbb']){
-  case 2: dump_ldap (2);
-          break;
-
-  case 3: dump_ldap (3);
-          break;
-
-  case 4: dump_ldap (4);
-          break;
-
-  default:
-          echo _("Error in ivbb parameter!");
-}
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
index 587f33f9a27b8e0b8d84fce9fc3fb025ed3b9cd8..d2a6945e30cfa15f995932329ea218afe314e93e 100644 (file)
@@ -56,7 +56,7 @@
 <br>
        <div>
                <img alt="" border="0" align=middle src="images/filesaveas.png">
-               <a href = "getldif.php{$para}" title="{t}Click here to save the complete LDAP database to a file{/t} ">{t}Click here to save the LDAP Export {/t}</a>
+               <a href = "ldapmanager/getldif.php{$para}" title="{t}Click here to save the complete LDAP database to a file{/t} ">{t}Click here to save the LDAP Export {/t}</a>
 
 
                <br>
diff --git a/gosa-plugins/ldapmanager/html/getldif.php b/gosa-plugins/ldapmanager/html/getldif.php
new file mode 100644 (file)
index 0000000..96111af
--- /dev/null
@@ -0,0 +1,110 @@
+<?php
+/*
+ * This code is part of GOsa (http://www.gosa-project.org)
+ * Copyright (C) 2003-2008 GONICUS GmbH
+ *
+ * ID: $$Id$$
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+function dump_ldap ($mode= 0)
+{
+  global $config;
+  $ldap= $config->get_ldap_link();
+
+  $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;
+  }
+}
+
+
+/* Basic setup, remove eventually registered sessions */
+@require_once ("../include/php_setup.inc");
+@require_once ("functions.inc");
+error_reporting (E_ALL | E_STRICT);
+session::start();
+session::set('errorsAlreadyPosted',array());
+
+/* Logged in? Simple security check */
+if (!session::is_set('ui')){
+  new log("security","all/all","",array(),"Error: getldif.php called without session") ;
+  header ("Location: index.php");
+  exit;
+}
+$ui= session::get("ui");
+$config= session::get('config');
+
+/* Check ACL's */
+$dn =  base64_decode($_GET['dn']);
+$acl = $ui->get_permissions($dn,"ldapmanager/ldifexport");
+if(!preg_match("/r/",$acl)){
+       msg_dialog::display(_("Permission error"),_("You have no permission to create LDAP dumps!"),FATAL_ERROR_DIALOG);
+       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("Pragma: no-cache");
+header("Cache-Control: post-check=0, pre-check=0");
+
+header("Content-type: text/plain");
+
+
+switch ($_GET['ivbb']){
+  case 2: dump_ldap (2);
+          break;
+
+  case 3: dump_ldap (3);
+          break;
+
+  case 4: dump_ldap (4);
+          break;
+
+  default:
+          echo _("Error in ivbb parameter!");
+}
+// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
+?>