]> git.eshelyaron.com Git - emacs.git/commitdiff
Add plstore-delete.
authorDaiki Ueno <ueno@unixuser.org>
Fri, 1 Jul 2011 07:35:39 +0000 (16:35 +0900)
committerDaiki Ueno <ueno@unixuser.org>
Fri, 1 Jul 2011 07:35:39 +0000 (16:35 +0900)
* auth-source.el (plstore-delete): Autoload.
(auth-source-plstore-search): Support delete operation.
* plstore.el (plstore-delete): New function.

lisp/gnus/ChangeLog
lisp/gnus/auth-source.el
lisp/gnus/plstore.el

index 9bb234a1189d83e49b30edce6750773716e02bdd..1b0b31c008881935481f72c670ef6511551e7813 100644 (file)
@@ -1,3 +1,9 @@
+2011-07-01  Daiki Ueno  <ueno@unixuser.org>
+
+       * auth-source.el (plstore-delete): Autoload.
+       (auth-source-plstore-search): Support delete operation.
+       * plstore.el (plstore-delete): New function.
+
 2011-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * gnus-draft.el (gnus-draft-clear-marks): Revert last change;
index 9d62d6a81c42b32b56dc48edee458ed1bb4a8346..1b5b484008529b9e5d17cd3254802036105c063c 100644 (file)
@@ -60,6 +60,7 @@
 (autoload 'plstore-open "plstore")
 (autoload 'plstore-find "plstore")
 (autoload 'plstore-put "plstore")
+(autoload 'plstore-delete "plstore")
 (autoload 'plstore-save "plstore")
 (autoload 'plstore-get-file "plstore")
 
@@ -1523,11 +1524,6 @@ authentication tokens:
                                     type max host user port
                                     &allow-other-keys)
   "Search the PLSTORE; spec is like `auth-source'."
-
-  ;; TODO
-  (assert (not delete) nil
-          "The PLSTORE auth-source backend doesn't support deletion yet")
-
   (let* ((store (oref backend data))
          (max (or max 5000))     ; sanity check: default to stop at 5K
          (ignored-keys '(:create :delete :max :backend :require))
@@ -1551,6 +1547,7 @@ authentication tokens:
                                               '(:host :login :port :secret)
                                               search-keys)))
          (items (plstore-find store search-spec))
+        (item-names (mapcar #'car items))
          (items (butlast items (- (length items) max)))
          ;; convert the item to a full plist
          (items (mapcar (lambda (item)
@@ -1574,9 +1571,10 @@ authentication tokens:
                                           returned-keys))
                            plist))
                         items)))
-    ;; if we need to create an entry AND none were found to match
-    (when (and create
-               (not items))
+    (cond
+     ;; if we need to create an entry AND none were found to match
+     ((and create
+          (not items))
 
       ;; create based on the spec and record the value
       (setq items (or
@@ -1589,6 +1587,11 @@ authentication tokens:
                      ;; the result will be returned, even if the search fails
                      (apply 'auth-source-plstore-search
                             (plist-put spec :create nil)))))
+     ((and delete
+          item-names)
+      (dolist (item-name item-names)
+       (plstore-delete store item-name))
+      (plstore-save store)))
     items))
 
 (defun* auth-source-plstore-create (&rest spec
index 360388d002e4ad4ef0cfc4174e75bc06fe833872..8d973a9b0aef22c2045bea13601f594846254d54 100644 (file)
@@ -337,6 +337,24 @@ SECRET-KEYS is a plist containing secret data."
         (cons (cons name secret-plist) (plstore--get-secret-alist plstore)))))
     (plstore--merge-secret plstore)))
 
+(defun plstore-delete (plstore name)
+  "Delete an entry with NAME from PLSTORE."
+  (let ((entry (assoc name (plstore--get-alist plstore))))
+    (if entry
+       (plstore--set-alist
+        plstore
+        (delq entry (plstore--get-alist plstore))))
+    (setq entry (assoc name (plstore--get-secret-alist plstore)))
+    (if entry
+       (plstore--set-secret-alist
+        plstore
+        (delq entry (plstore--get-secret-alist plstore))))
+    (setq entry (assoc name (plstore--get-merged-alist plstore)))
+    (if entry
+       (plstore--set-merged-alist
+        plstore
+        (delq entry (plstore--get-merged-alist plstore))))))
+
 (defvar pp-escape-newlines)
 (defun plstore-save (plstore)
   "Save the contents of PLSTORE associated with a FILE."