changeset 42517:400e6bda5a0d

(ldap-host-parameters-alist): Remove duplicated entry. (ldap-ignore-attribute-codings): Change the default value to allow encoding/decoding of attributes. (ldap-coding-system): Use UTF-8 as the coding-system. Doc fix.
author Pavel Janík <Pavel@Janik.cz>
date Fri, 04 Jan 2002 07:17:32 +0000
parents 23cdfafe44c0
children 94675a933205
files lisp/net/ldap.el
diffstat 1 files changed, 148 insertions(+), 156 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/net/ldap.el	Fri Jan 04 02:13:46 2002 +0000
+++ b/lisp/net/ldap.el	Fri Jan 04 07:17:32 2002 +0000
@@ -27,8 +27,8 @@
 ;;; Commentary:
 
 ;;    This package provides basic functionality to perform searches on LDAP
-;;    servers.  It requires a command line utility generally named 
-;;    `ldapsearch' to actually perform the searches.  That program can be 
+;;    servers.  It requires a command line utility generally named
+;;    `ldapsearch' to actually perform the searches.  That program can be
 ;;    found in all LDAP developer kits such as:
 ;;      - UM-LDAP 3.3 (http://www.umich.edu/~dirsvcs/ldap/)
 ;;      - OpenLDAP (http://www.openldap.org/)
@@ -44,7 +44,7 @@
 
 (defcustom ldap-default-host nil
   "*Default LDAP server.
-A TCP port number can be appended to that name using a colon as 
+A TCP port number can be appended to that name using a colon as
 a separator."
   :type '(choice (string :tag "Host name")
 		 (const :tag "Use library default" nil))
@@ -71,13 +71,13 @@
   "*Alist of host-specific options for LDAP transactions.
 The format of each list element is (HOST PROP1 VAL1 PROP2 VAL2 ...).
 HOST is the hostname of an LDAP server(with an optional TCP port number
-appended to it  using a colon as a separator). 
+appended to it using a colon as a separator).
 PROPn and VALn are property/value pairs describing parameters for the server.
-Valid properties include: 
-  `binddn' is the distinguished name of the user to bind as 
+Valid properties include:
+  `binddn' is the distinguished name of the user to bind as
     (in RFC 1779 syntax).
   `passwd' is the password to use for simple authentication.
-  `auth' is the authentication method to use. 
+  `auth' is the authentication method to use.
     Possible values are: `simple', `krbv41' and `krbv42'.
   `base' is the base for the search as described in RFC 1779.
   `scope' is one of the three symbols `subtree', `base' or `onelevel'.
@@ -93,7 +93,7 @@
 		       (checklist :inline t
 				  :greedy t
 				  (list
-				   :tag "Search Base" 
+				   :tag "Search Base"
 				   :inline t
 				   (const :tag "Search Base" base)
 				   string)
@@ -117,12 +117,7 @@
 				    (const :menu-tag "Kerberos 4.1" :tag "Kerberos 4.1" krbv41)
 				    (const :menu-tag "Kerberos 4.2" :tag "Kerberos 4.2" krbv42)))
 				  (list
-				   :tag "Search Base" 
-				   :inline t
-				   (const :tag "Search Base" base)
-				   string)
-				  (list
-				   :tag "Search Scope" 
+				   :tag "Search Scope"
 				   :inline t
 				   (const :tag "Search Scope" scope)
 				   (choice
@@ -161,13 +156,13 @@
   "*A list of additional arguments to pass to `ldapsearch'.
 It is recommended to use the `-T' switch with Netscape's
 implementation to avoid line wrapping.
-The `-B' switch should be used to enable the retrieval of 
+The `-B' switch should be used to enable the retrieval of
 binary values."
   :type '(repeat :tag "`ldapsearch' Arguments"
 		 (string :tag "Argument"))
   :group 'ldap)
 
-(defcustom ldap-ignore-attribute-codings t
+(defcustom ldap-ignore-attribute-codings nil
   "*If non-nil, do not encode/decode LDAP attribute values."
   :type 'boolean
   :group 'ldap)
@@ -177,141 +172,140 @@
   :type 'symbol
   :group 'ldap)
 
-(defcustom ldap-coding-system nil
+(defcustom ldap-coding-system 'utf-8
   "*Coding system of LDAP string values.
-LDAP v3 specifies the coding system of strings to be UTF-8 but 
-Emacs still does not have reasonable support for that."
+LDAP v3 specifies the coding system of strings to be UTF-8."
   :type 'symbol
   :group 'ldap)
 
 (defvar ldap-attribute-syntax-encoders
-  [nil					; 1  ACI Item                        N  
-   nil					; 2  Access Point                    Y  
-   nil					; 3  Attribute Type Description      Y  
-   nil					; 4  Audio                           N  
-   nil					; 5  Binary                          N  
-   nil					; 6  Bit String                      Y  
-   ldap-encode-boolean			; 7  Boolean                         Y  
-   nil					; 8  Certificate                     N  
-   nil					; 9  Certificate List                N  
-   nil					; 10 Certificate Pair                N  
-   ldap-encode-country-string		; 11 Country String                  Y  
-   ldap-encode-string			; 12 DN                              Y  
-   nil					; 13 Data Quality Syntax             Y  
-   nil					; 14 Delivery Method                 Y  
-   ldap-encode-string			; 15 Directory String                Y  
-   nil					; 16 DIT Content Rule Description    Y  
-   nil					; 17 DIT Structure Rule Description  Y  
-   nil					; 18 DL Submit Permission            Y  
-   nil					; 19 DSA Quality Syntax              Y  
-   nil					; 20 DSE Type                        Y  
-   nil					; 21 Enhanced Guide                  Y  
-   nil					; 22 Facsimile Telephone Number      Y  
-   nil					; 23 Fax                             N  
-   nil					; 24 Generalized Time                Y  
-   nil					; 25 Guide                           Y  
-   nil					; 26 IA5 String                      Y  
-   number-to-string			; 27 INTEGER                         Y  
-   nil					; 28 JPEG                            N  
-   nil					; 29 Master And Shadow Access Points Y  
-   nil					; 30 Matching Rule Description       Y  
-   nil					; 31 Matching Rule Use Description   Y  
-   nil					; 32 Mail Preference                 Y  
-   nil					; 33 MHS OR Address                  Y  
-   nil					; 34 Name And Optional UID           Y  
-   nil					; 35 Name Form Description           Y  
-   nil					; 36 Numeric String                  Y  
-   nil					; 37 Object Class Description        Y  
-   nil					; 38 OID                             Y  
-   nil					; 39 Other Mailbox                   Y  
-   nil					; 40 Octet String                    Y  
-   ldap-encode-address			; 41 Postal Address                  Y  
-   nil					; 42 Protocol Information            Y  
-   nil					; 43 Presentation Address            Y  
-   ldap-encode-string			; 44 Printable String                Y  
-   nil					; 45 Subtree Specification           Y  
-   nil					; 46 Supplier Information            Y  
-   nil					; 47 Supplier Or Consumer            Y  
-   nil					; 48 Supplier And Consumer           Y  
-   nil					; 49 Supported Algorithm             N  
-   nil					; 50 Telephone Number                Y  
-   nil					; 51 Teletex Terminal Identifier     Y  
-   nil					; 52 Telex Number                    Y  
-   nil					; 53 UTC Time                        Y  
-   nil					; 54 LDAP Syntax Description         Y  
-   nil					; 55 Modify Rights                   Y  
-   nil					; 56 LDAP Schema Definition          Y  
-   nil					; 57 LDAP Schema Description         Y  
-   nil					; 58 Substring Assertion             Y  
-   ]  
+  [nil					; 1  ACI Item                        N
+   nil					; 2  Access Point                    Y
+   nil					; 3  Attribute Type Description      Y
+   nil					; 4  Audio                           N
+   nil					; 5  Binary                          N
+   nil					; 6  Bit String                      Y
+   ldap-encode-boolean			; 7  Boolean                         Y
+   nil					; 8  Certificate                     N
+   nil					; 9  Certificate List                N
+   nil					; 10 Certificate Pair                N
+   ldap-encode-country-string		; 11 Country String                  Y
+   ldap-encode-string			; 12 DN                              Y
+   nil					; 13 Data Quality Syntax             Y
+   nil					; 14 Delivery Method                 Y
+   ldap-encode-string			; 15 Directory String                Y
+   nil					; 16 DIT Content Rule Description    Y
+   nil					; 17 DIT Structure Rule Description  Y
+   nil					; 18 DL Submit Permission            Y
+   nil					; 19 DSA Quality Syntax              Y
+   nil					; 20 DSE Type                        Y
+   nil					; 21 Enhanced Guide                  Y
+   nil					; 22 Facsimile Telephone Number      Y
+   nil					; 23 Fax                             N
+   nil					; 24 Generalized Time                Y
+   nil					; 25 Guide                           Y
+   nil					; 26 IA5 String                      Y
+   number-to-string			; 27 INTEGER                         Y
+   nil					; 28 JPEG                            N
+   nil					; 29 Master And Shadow Access Points Y
+   nil					; 30 Matching Rule Description       Y
+   nil					; 31 Matching Rule Use Description   Y
+   nil					; 32 Mail Preference                 Y
+   nil					; 33 MHS OR Address                  Y
+   nil					; 34 Name And Optional UID           Y
+   nil					; 35 Name Form Description           Y
+   nil					; 36 Numeric String                  Y
+   nil					; 37 Object Class Description        Y
+   nil					; 38 OID                             Y
+   nil					; 39 Other Mailbox                   Y
+   nil					; 40 Octet String                    Y
+   ldap-encode-address			; 41 Postal Address                  Y
+   nil					; 42 Protocol Information            Y
+   nil					; 43 Presentation Address            Y
+   ldap-encode-string			; 44 Printable String                Y
+   nil					; 45 Subtree Specification           Y
+   nil					; 46 Supplier Information            Y
+   nil					; 47 Supplier Or Consumer            Y
+   nil					; 48 Supplier And Consumer           Y
+   nil					; 49 Supported Algorithm             N
+   nil					; 50 Telephone Number                Y
+   nil					; 51 Teletex Terminal Identifier     Y
+   nil					; 52 Telex Number                    Y
+   nil					; 53 UTC Time                        Y
+   nil					; 54 LDAP Syntax Description         Y
+   nil					; 55 Modify Rights                   Y
+   nil					; 56 LDAP Schema Definition          Y
+   nil					; 57 LDAP Schema Description         Y
+   nil					; 58 Substring Assertion             Y
+   ]
   "A vector of functions used to encode LDAP attribute values.
 The sequence of functions corresponds to the sequence of LDAP attribute syntax
-object identifiers of the form 1.3.6.1.4.1.1466.1115.121.1.* as defined in 
+object identifiers of the form 1.3.6.1.4.1.1466.1115.121.1.* as defined in
 RFC2252 section 4.3.2")
 
 (defvar ldap-attribute-syntax-decoders
-  [nil					; 1  ACI Item                        N  
-   nil					; 2  Access Point                    Y  
-   nil					; 3  Attribute Type Description      Y  
-   nil					; 4  Audio                           N  
-   nil					; 5  Binary                          N  
-   nil					; 6  Bit String                      Y  
-   ldap-decode-boolean			; 7  Boolean                         Y  
-   nil					; 8  Certificate                     N  
-   nil					; 9  Certificate List                N  
-   nil					; 10 Certificate Pair                N  
-   ldap-decode-string			; 11 Country String                  Y  
-   ldap-decode-string			; 12 DN                              Y  
-   nil					; 13 Data Quality Syntax             Y  
-   nil					; 14 Delivery Method                 Y  
-   ldap-decode-string			; 15 Directory String                Y  
-   nil					; 16 DIT Content Rule Description    Y  
-   nil					; 17 DIT Structure Rule Description  Y  
-   nil					; 18 DL Submit Permission            Y  
-   nil					; 19 DSA Quality Syntax              Y  
-   nil					; 20 DSE Type                        Y  
-   nil					; 21 Enhanced Guide                  Y  
-   nil					; 22 Facsimile Telephone Number      Y  
-   nil					; 23 Fax                             N  
-   nil					; 24 Generalized Time                Y  
-   nil					; 25 Guide                           Y  
-   nil					; 26 IA5 String                      Y  
-   string-to-number			; 27 INTEGER                         Y  
-   nil					; 28 JPEG                            N  
-   nil					; 29 Master And Shadow Access Points Y  
-   nil					; 30 Matching Rule Description       Y  
-   nil					; 31 Matching Rule Use Description   Y  
-   nil					; 32 Mail Preference                 Y  
-   nil					; 33 MHS OR Address                  Y  
-   nil					; 34 Name And Optional UID           Y  
-   nil					; 35 Name Form Description           Y  
-   nil					; 36 Numeric String                  Y  
-   nil					; 37 Object Class Description        Y  
-   nil					; 38 OID                             Y  
-   nil					; 39 Other Mailbox                   Y  
-   nil					; 40 Octet String                    Y  
-   ldap-decode-address			; 41 Postal Address                  Y  
-   nil					; 42 Protocol Information            Y  
-   nil					; 43 Presentation Address            Y  
-   ldap-decode-string			; 44 Printable String                Y  
-   nil					; 45 Subtree Specification           Y  
-   nil					; 46 Supplier Information            Y  
-   nil					; 47 Supplier Or Consumer            Y  
-   nil					; 48 Supplier And Consumer           Y  
-   nil					; 49 Supported Algorithm             N  
-   nil					; 50 Telephone Number                Y  
-   nil					; 51 Teletex Terminal Identifier     Y  
-   nil					; 52 Telex Number                    Y  
-   nil					; 53 UTC Time                        Y  
-   nil					; 54 LDAP Syntax Description         Y  
-   nil					; 55 Modify Rights                   Y  
-   nil					; 56 LDAP Schema Definition          Y  
-   nil					; 57 LDAP Schema Description         Y  
-   nil					; 58 Substring Assertion             Y  
-   ]  
+  [nil					; 1  ACI Item                        N
+   nil					; 2  Access Point                    Y
+   nil					; 3  Attribute Type Description      Y
+   nil					; 4  Audio                           N
+   nil					; 5  Binary                          N
+   nil					; 6  Bit String                      Y
+   ldap-decode-boolean			; 7  Boolean                         Y
+   nil					; 8  Certificate                     N
+   nil					; 9  Certificate List                N
+   nil					; 10 Certificate Pair                N
+   ldap-decode-string			; 11 Country String                  Y
+   ldap-decode-string			; 12 DN                              Y
+   nil					; 13 Data Quality Syntax             Y
+   nil					; 14 Delivery Method                 Y
+   ldap-decode-string			; 15 Directory String                Y
+   nil					; 16 DIT Content Rule Description    Y
+   nil					; 17 DIT Structure Rule Description  Y
+   nil					; 18 DL Submit Permission            Y
+   nil					; 19 DSA Quality Syntax              Y
+   nil					; 20 DSE Type                        Y
+   nil					; 21 Enhanced Guide                  Y
+   nil					; 22 Facsimile Telephone Number      Y
+   nil					; 23 Fax                             N
+   nil					; 24 Generalized Time                Y
+   nil					; 25 Guide                           Y
+   nil					; 26 IA5 String                      Y
+   string-to-number			; 27 INTEGER                         Y
+   nil					; 28 JPEG                            N
+   nil					; 29 Master And Shadow Access Points Y
+   nil					; 30 Matching Rule Description       Y
+   nil					; 31 Matching Rule Use Description   Y
+   nil					; 32 Mail Preference                 Y
+   nil					; 33 MHS OR Address                  Y
+   nil					; 34 Name And Optional UID           Y
+   nil					; 35 Name Form Description           Y
+   nil					; 36 Numeric String                  Y
+   nil					; 37 Object Class Description        Y
+   nil					; 38 OID                             Y
+   nil					; 39 Other Mailbox                   Y
+   nil					; 40 Octet String                    Y
+   ldap-decode-address			; 41 Postal Address                  Y
+   nil					; 42 Protocol Information            Y
+   nil					; 43 Presentation Address            Y
+   ldap-decode-string			; 44 Printable String                Y
+   nil					; 45 Subtree Specification           Y
+   nil					; 46 Supplier Information            Y
+   nil					; 47 Supplier Or Consumer            Y
+   nil					; 48 Supplier And Consumer           Y
+   nil					; 49 Supported Algorithm             N
+   nil					; 50 Telephone Number                Y
+   nil					; 51 Teletex Terminal Identifier     Y
+   nil					; 52 Telex Number                    Y
+   nil					; 53 UTC Time                        Y
+   nil					; 54 LDAP Syntax Description         Y
+   nil					; 55 Modify Rights                   Y
+   nil					; 56 LDAP Schema Definition          Y
+   nil					; 57 LDAP Schema Description         Y
+   nil					; 58 Substring Assertion             Y
+   ]
   "A vector of functions used to decode LDAP attribute values.
 The sequence of functions corresponds to the sequence of LDAP attribute syntax
-object identifiers of the form 1.3.6.1.4.1.1466.1115.121.1.* as defined in 
+object identifiers of the form 1.3.6.1.4.1.1466.1115.121.1.* as defined in
 RFC2252 section 4.3.2")
 
 
@@ -408,7 +402,7 @@
     nil)
    (t
     (error "Wrong LDAP boolean string: %s" str))))
-    
+
 (defun ldap-encode-country-string (str)
   ;; We should do something useful here...
   (if (not (= 2 (length str)))
@@ -432,16 +426,16 @@
 
 
 ;; LDAP protocol functions
-    
+
 (defun ldap-get-host-parameter (host parameter)
   "Get the value of PARAMETER for HOST in `ldap-host-parameters-alist'."
   (plist-get (cdr (assoc host ldap-host-parameters-alist))
 	     parameter))
-	
+
 (defun ldap-decode-attribute (attr)
   "Decode the attribute/value pair ATTR according to LDAP rules.
-The attribute name is looked up in `ldap-attribute-syntaxes-alist' 
-and the corresponding decoder is then retrieved from 
+The attribute name is looked up in `ldap-attribute-syntaxes-alist'
+and the corresponding decoder is then retrieved from
 `ldap-attribute-syntax-decoders' and applied on the value(s)."
   (let* ((name (car attr))
 	 (values (cdr attr))
@@ -455,19 +449,18 @@
     (if decoder
 	(cons name (mapcar decoder values))
       attr)))
-    
 
 (defun ldap-search (filter &optional host attributes attrsonly withdn)
   "Perform an LDAP search.
 FILTER is the search filter in RFC1558 syntax.
 HOST is the LDAP host on which to perform the search.
-ATTRIBUTES are the specific attributes to retrieve, nil means 
+ATTRIBUTES are the specific attributes to retrieve, nil means
 retrieve all.
-ATTRSONLY, if non-nil, retrieves the attributes only, without 
+ATTRSONLY, if non-nil, retrieves the attributes only, without
 the associated values.
 If WITHDN is non-nil, each entry in the result will be prepended with
 its distinguished name WITHDN.
-Additional search parameters can be specified through 
+Additional search parameters can be specified through
 `ldap-host-parameters-alist', which see."
   (interactive "sFilter:")
   (or host
@@ -478,7 +471,7 @@
     (setq result (ldap-search-internal (append host-plist
 					       (list 'host host
 						     'filter filter
-						     'attributes attributes 
+						     'attributes attributes
 						     'attrsonly attrsonly
 						     'withdn withdn))))
     (if ldap-ignore-attribute-codings
@@ -566,21 +559,21 @@
       (eval `(call-process ldap-ldapsearch-prog
 			   nil
 			   buf
-			   nil	  
+			   nil
 			   ,@arglist
 			   "-t"		; Write values to temp files
 			   ,@ldap-ldapsearch-args
 			   ,@filter))
       (insert "\n")
       (goto-char (point-min))
-      
+
       (if (looking-at "usage")
 	  (error "Incorrect ldapsearch invocation")
 	(message "Parsing results... ")
-	(while (progn 
+	(while (progn
 		 (skip-chars-forward " \t\n")
 		 (not (eobp)))
-	  (setq dn (buffer-substring (point) (save-excursion 
+	  (setq dn (buffer-substring (point) (save-excursion
 					       (end-of-line)
 					       (point))))
 	  (forward-line 1)
@@ -596,17 +589,16 @@
 	    (setq record (cons (list name value)
 			       record))
 	    (forward-line 1))
-	  (setq result (cons (if withdn 
+	  (setq result (cons (if withdn
 				 (cons dn (nreverse record))
 			       (nreverse record)) result))
 	  (setq record nil)
-	  (skip-chars-forward " \t\n")      
+	  (skip-chars-forward " \t\n")
 	  (message "Parsing results... %d" numres)
 	  (1+ numres))
 	(message "Parsing results... done")
 	(nreverse result)))))
 
-
 (provide 'ldap)
 
 ;;; ldap.el ends here