emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Fixing url-ldap.el


From: Chong Yidong
Subject: Re: Fixing url-ldap.el
Date: Sat, 09 Apr 2005 09:53:43 -0700

"Stefan Monnier" <address@hidden> wrote:
    The reason why it was still in FOR-RELEASE is that noone had the
    expertise the fix it (e.g. I wouldn't even know how to try it
    out), so I doubt you'll get any real review here. But for what
    it's worth, your patch looks very reasonable to me. If you tested
    it and it works, then please install it.

The first patch I sent had a couple typos.  Here is an amended patch.
I have indeed tested that it works, using the OpenLDAP project's
ldapsearch program.  I don't have CVS access, so someone will have to
check it in for me.



*** emacs/lisp/url/url-ldap.el~ Sat Apr  9 11:22:56 2005
--- emacs/lisp/url/url-ldap.el  Sun Apr 10 00:49:33 2005
***************
*** 1,5 ****
  ;;; url-ldap.el --- LDAP Uniform Resource Locator retrieval code
! ;; Copyright (c) 1998 - 1999, 2004 Free Software Foundation, Inc.
  
  ;; Keywords: comm, data, processes
  
--- 1,5 ----
  ;;; url-ldap.el --- LDAP Uniform Resource Locator retrieval code
! ;; Copyright (c) 1998, 1999, 2004, 2005 Free Software Foundation, Inc.
  
  ;; Keywords: comm, data, processes
  
***************
*** 112,121 ****
    (format "<img alt='JPEG Photo' src='data:image/jpeg;base64,%s'>"
          (url-hexify-string (base64-encode-string data))))
  
- ;; FIXME: This needs sorting out for the Emacs LDAP functions, specifically
- ;; calls of ldap-open, ldap-close, ldap-search-internal
  ;;;###autoload
  (defun url-ldap (url)
    (save-excursion
      (set-buffer (generate-new-buffer " *url-ldap*"))
      (setq url-current-object url)
--- 112,127 ----
    (format "<img alt='JPEG Photo' src='data:image/jpeg;base64,%s'>"
          (url-hexify-string (base64-encode-string data))))
  
  ;;;###autoload
  (defun url-ldap (url)
+   "Perform an LDAP search specified by URL.
+ The return value is a buffer displaying the search results in HTML.
+ URL can be a URL string, or a URL vector of the type returned by
+ `url-generic-parse-url'."
+   (if (stringp url)
+       (setq url (url-generic-parse-url (url-unhex-string url)))
+     (if (not (vectorp url))
+         (error "Argument is not a valid URL")))
    (save-excursion
      (set-buffer (generate-new-buffer " *url-ldap*"))
      (setq url-current-object url)
***************
*** 142,151 ****
             (scope nil)
             (filter nil)
             (extensions nil)
!            (connection nil)
!            (results nil)
!            (extract-dn (and (fboundp 'function-max-args)
!                             (= (function-max-args 'ldap-search-internal) 7))))
  
        ;; Get rid of leading /
        (if (string-match "^/" data)
--- 148,154 ----
             (scope nil)
             (filter nil)
             (extensions nil)
!            (results nil))
  
        ;; Get rid of leading /
        (if (string-match "^/" data)
***************
*** 163,169 ****
              scope (intern (url-unhex-string (or scope "base")))
              filter (url-unhex-string (or filter "(objectClass=*)")))
  
!       (if (not (memq scope '(base one tree)))
            (error "Malformed LDAP URL: Unknown scope: %S" scope))
  
        ;; Convert to the internal LDAP support scoping names.
--- 166,172 ----
              scope (intern (url-unhex-string (or scope "base")))
              filter (url-unhex-string (or filter "(objectClass=*)")))
  
!       (if (not (memq scope '(base one sub)))
            (error "Malformed LDAP URL: Unknown scope: %S" scope))
  
        ;; Convert to the internal LDAP support scoping names.
***************
*** 188,199 ****
                                   (assoc "!bindname" extensions))))
      
        ;; Now, let's actually do something with it.
!       (setq connection (ldap-open host (if binddn (list 'binddn binddn)))
!             results (if extract-dn
!                         (ldap-search-internal connection filter base-object 
scope attributes nil t)
!                       (ldap-search-internal connection filter base-object 
scope attributes nil)))
!                     
!       (ldap-close connection)
        (insert "<html>\n"
                " <head>\n"
                "  <title>LDAP Search Results</title>\n"
--- 191,204 ----
                                   (assoc "!bindname" extensions))))
      
        ;; Now, let's actually do something with it.
!       (setq results (cdr (ldap-search-internal
!                      (list 'host (concat host ":" (number-to-string port))
!                            'base base-object
!                            'attributes attributes
!                            'scope scope
!                            'filter filter
!                            'binddn binddn))))
! 
        (insert "<html>\n"
                " <head>\n"
                "  <title>LDAP Search Results</title>\n"
***************
*** 205,212 ****
        (mapc (lambda (obj)
                (insert "  <hr>\n"
                        "  <table border=1>\n")
-               (if extract-dn
-                   (insert "   <tr><th colspan=2>" (car obj) "</th></tr>\n"))
                (mapc (lambda (attr)
                        (if (= (length (cdr attr)) 1)
                            ;; single match, easy
--- 210,215 ----
***************
*** 225,231 ****
                                             "<br>\n")
                                  "</td>"
                                  "   </tr>\n")))
!                     (if extract-dn (cdr obj) obj))
                (insert "  </table>\n"))
              results)
  
--- 228,234 ----
                                             "<br>\n")
                                  "</td>"
                                  "   </tr>\n")))
!                       obj)
                (insert "  </table>\n"))
              results)
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]