gnus-notifications: add actions support
[gnus] / lisp / gnus-int.el
1 ;;; gnus-int.el --- backend interface functions for Gnus
2
3 ;; Copyright (C) 1996-2012 Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;;; Code:
26
27 (eval-when-compile (require 'cl))
28
29 (require 'gnus)
30 (require 'message)
31 (require 'gnus-range)
32
33 (autoload 'gnus-run-hook-with-args "gnus-util")
34 (autoload 'gnus-agent-expire "gnus-agent")
35 (autoload 'gnus-agent-regenerate-group "gnus-agent")
36 (autoload 'gnus-agent-read-servers-validate-native "gnus-agent")
37 (autoload 'gnus-agent-possibly-synchronize-flags-server "gnus-agent")
38
39 (defcustom gnus-open-server-hook nil
40   "Hook called just before opening connection to the news server."
41   :group 'gnus-start
42   :type 'hook)
43
44 (defcustom gnus-after-set-mark-hook nil
45   "Hook called just after marks are set in a group."
46   :version "24.1"
47   :group 'gnus-start
48   :type 'hook)
49
50 (defcustom gnus-before-update-mark-hook nil
51   "Hook called just before marks are updated in a group."
52   :version "24.1"
53   :group 'gnus-start
54   :type 'hook)
55
56 (defcustom gnus-server-unopen-status nil
57   "The default status if the server is not able to open.
58 If the server is covered by Gnus agent, the possible values are
59 `denied', set the server denied; `offline', set the server offline;
60 nil, ask user.  If the server is not covered by Gnus agent, set the
61 server denied."
62   :version "22.1"
63   :group 'gnus-start
64   :type '(choice (const :tag "Ask" nil)
65                  (const :tag "Deny server" denied)
66                  (const :tag "Unplug Agent" offline)))
67
68 (defcustom gnus-nntp-server nil
69   "The name of the host running the NNTP server."
70   :group 'gnus-server
71   :type '(choice (const :tag "disable" nil)
72                  string))
73 (make-obsolete-variable 'gnus-nntp-server 'gnus-select-method "24.1")
74
75 (defvar gnus-internal-registry-spool-current-method nil
76   "The current method, for the registry.")
77
78
79 (defun gnus-server-opened (gnus-command-method)
80   "Check whether a connection to GNUS-COMMAND-METHOD has been opened."
81   (unless (eq (gnus-server-status gnus-command-method)
82               'denied)
83     (when (stringp gnus-command-method)
84       (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
85     (funcall (inline (gnus-get-function gnus-command-method 'server-opened))
86              (nth 1 gnus-command-method))))
87
88 (defun gnus-status-message (gnus-command-method)
89   "Return the status message from GNUS-COMMAND-METHOD.
90 If GNUS-COMMAND-METHOD is a string, it is interpreted as a group
91 name.  The method this group uses will be queried."
92   (let ((gnus-command-method
93          (if (stringp gnus-command-method)
94              (gnus-find-method-for-group gnus-command-method)
95            gnus-command-method)))
96     (funcall (gnus-get-function gnus-command-method 'status-message)
97              (nth 1 gnus-command-method))))
98
99 ;;;
100 ;;; Server Communication
101 ;;;
102
103 (defun gnus-start-news-server (&optional confirm)
104   "Open a method for getting news.
105 If CONFIRM is non-nil, the user will be asked for an NNTP server."
106   (let (how)
107     (if gnus-current-select-method
108         ;; Stream is already opened.
109         nil
110       ;; Open NNTP server.
111       (when confirm
112         ;; Read server name with completion.
113         (setq gnus-nntp-server
114               (gnus-completing-read "NNTP server"
115                                     (cons gnus-nntp-server
116                                           gnus-secondary-servers)
117                                     nil gnus-nntp-server)))
118
119       (when (and gnus-nntp-server
120                  (stringp gnus-nntp-server)
121                  (not (string= gnus-nntp-server "")))
122         (setq gnus-select-method
123               (cond ((or (string= gnus-nntp-server "")
124                          (string= gnus-nntp-server "::"))
125                      (list 'nnspool (system-name)))
126                     ((string-match "^:" gnus-nntp-server)
127                      (list 'nnmh gnus-nntp-server
128                            (list 'nnmh-directory
129                                  (file-name-as-directory
130                                   (expand-file-name
131                                    (substring gnus-nntp-server 1) "~/")))
132                            (list 'nnmh-get-new-mail nil)))
133                     (t
134                      (list 'nntp gnus-nntp-server)))))
135
136       (setq how (car gnus-select-method))
137       (cond
138        ((eq how 'nnspool)
139         (require 'nnspool)
140         (gnus-message 5 "Looking up local news spool..."))
141        ((eq how 'nnmh)
142         (require 'nnmh)
143         (gnus-message 5 "Looking up mh spool..."))
144        (t
145         (require 'nntp)))
146       (setq gnus-current-select-method gnus-select-method)
147       (gnus-run-hooks 'gnus-open-server-hook)
148
149       ;; Partially validate agent covered methods now that the
150       ;; gnus-select-method is known.
151
152       (if gnus-agent
153           ;; NOTE: This is here for one purpose only.  By validating
154           ;; the current select method, it converts the old 5.10.3,
155           ;; and earlier, format to the current format.  That enables
156           ;; the agent code within gnus-open-server to function
157           ;; correctly.
158           (gnus-agent-read-servers-validate-native gnus-select-method))
159
160       (or
161        ;; gnus-open-server-hook might have opened it
162        (gnus-server-opened gnus-select-method)
163        (gnus-open-server gnus-select-method)
164        gnus-batch-mode
165        (gnus-y-or-n-p
166         (format
167          "%s (%s) open error: '%s'.  Continue? "
168          (car gnus-select-method) (cadr gnus-select-method)
169          (gnus-status-message gnus-select-method)))
170        (gnus-error 1 "Couldn't open server on %s"
171                    (nth 1 gnus-select-method))))))
172
173 (defun gnus-check-group (group)
174   "Try to make sure that the server where GROUP exists is alive."
175   (let ((method (gnus-find-method-for-group group)))
176     (or (gnus-server-opened method)
177         (gnus-open-server method))))
178
179 (defun gnus-check-server (&optional method silent)
180   "Check whether the connection to METHOD is down.
181 If METHOD is nil, use `gnus-select-method'.
182 If it is down, start it up (again)."
183   (let ((method (or method gnus-select-method))
184         result)
185     ;; Transform virtual server names into select methods.
186     (when (stringp method)
187       (setq method (gnus-server-to-method method)))
188     (if (gnus-server-opened method)
189         ;; The stream is already opened.
190         t
191       ;; Open the server.
192       (unless silent
193         (gnus-message 5 "Opening %s server%s..." (car method)
194                       (if (equal (nth 1 method) "") ""
195                         (format " on %s" (nth 1 method)))))
196       (gnus-run-hooks 'gnus-open-server-hook)
197       (prog1
198           (setq result (gnus-open-server method))
199         (unless silent
200           (gnus-message
201            (if result 5 3)
202            "Opening %s server%s...%s" (car method)
203            (if (equal (nth 1 method) "") ""
204              (format " on %s" (nth 1 method)))
205            (if result
206                "done"
207              (format "failed: %s"
208                      (nnheader-get-report-string (car method))))))))))
209
210 (defun gnus-get-function (method function &optional noerror)
211   "Return a function symbol based on METHOD and FUNCTION."
212   ;; Translate server names into methods.
213   (unless method
214     (error "Attempted use of a nil select method"))
215   (when (stringp method)
216     (setq method (gnus-server-to-method method)))
217   ;; Check cache of constructed names.
218   (let* ((method-sym (if gnus-agent
219                          (inline (gnus-agent-get-function method))
220                        (car method)))
221          (method-fns (get method-sym 'gnus-method-functions))
222          (func (let ((method-fnlist-elt (assq function method-fns)))
223                  (unless method-fnlist-elt
224                    (setq method-fnlist-elt
225                          (cons function
226                                (intern (format "%s-%s" method-sym function))))
227                    (put method-sym 'gnus-method-functions
228                         (cons method-fnlist-elt method-fns)))
229                  (cdr method-fnlist-elt))))
230     ;; Maybe complain if there is no function.
231     (unless (fboundp func)
232       (unless (car method)
233         (error "Trying to require a method that doesn't exist"))
234       (require (car method))
235       (when (not (fboundp func))
236         (if noerror
237             (setq func nil)
238           (error "No such function: %s" func))))
239     func))
240
241 \f
242 ;;;
243 ;;; Interface functions to the backends.
244 ;;;
245
246 (defun gnus-method-denied-p (method)
247   (eq (nth 1 (assoc method gnus-opened-servers))
248       'denied))
249
250 (defvar gnus-backend-trace nil)
251
252 (defun gnus-open-server (gnus-command-method)
253   "Open a connection to GNUS-COMMAND-METHOD."
254   (when (stringp gnus-command-method)
255     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
256   (when gnus-backend-trace
257     (with-current-buffer (get-buffer-create "*gnus trace*")
258       (buffer-disable-undo)
259       (goto-char (point-max))
260       (insert (format-time-string "%H:%M:%S")
261               (format " %S\n" gnus-command-method))))
262   (let ((elem (assoc gnus-command-method gnus-opened-servers))
263         (server (gnus-method-to-server-name gnus-command-method)))
264     ;; If this method was previously denied, we just return nil.
265     (if (eq (nth 1 elem) 'denied)
266         (progn
267           (gnus-message
268            1 "Server %s previously determined to be down; not retrying" server)
269           nil)
270       ;; Open the server.
271       (let* ((open-server-function
272               (gnus-get-function gnus-command-method 'open-server))
273              (result
274               (condition-case err
275                   (funcall open-server-function
276                            (nth 1 gnus-command-method)
277                            (nthcdr 2 gnus-command-method))
278                 (error
279                  (gnus-message 1 "Unable to open server %s due to: %s"
280                                server (error-message-string err))
281                  nil)
282                 (quit
283                  (if debug-on-quit
284                      (debug "Quit")
285                    (gnus-message 1 "Quit trying to open server %s" server))
286                  nil)))
287              open-offline)
288         ;; If this hasn't been opened before, we add it to the list.
289         (unless elem
290           (setq elem (list gnus-command-method nil)
291                 gnus-opened-servers (cons elem gnus-opened-servers)))
292         ;; Set the status of this server.
293         (setcar
294          (cdr elem)
295          (cond (result
296                 (if (eq open-server-function #'nnagent-open-server)
297                     ;; The agent's backend has a "special" status
298                     'offline
299                   'ok))
300                ((and gnus-agent
301                      (gnus-agent-method-p gnus-command-method))
302                 (cond
303                  (gnus-server-unopen-status
304                   ;; Set the server's status to the unopen
305                   ;; status.  If that status is offline,
306                   ;; recurse to open the agent's backend.
307                   (setq open-offline (eq gnus-server-unopen-status 'offline))
308                   gnus-server-unopen-status)
309                  ((not gnus-batch-mode)
310                   (setq open-offline t)
311                   'offline)
312                  (t
313                   ;; This agentized server was still denied
314                   'denied)))
315                (t
316                 ;; This unagentized server must be denied
317                 'denied)))
318
319         ;; NOTE: I MUST set the server's status to offline before this
320         ;; recursive call as this status will drive the
321         ;; gnus-get-function (called above) to return the agent's
322         ;; backend.
323         (if open-offline
324             ;; Recursively open this offline server to perform the
325             ;; open-server function of the agent's backend.
326             (let ((gnus-server-unopen-status 'denied))
327               ;; Bind gnus-server-unopen-status to avoid recursively
328               ;; prompting with "go offline?".  This is only a concern
329               ;; when the agent's backend fails to open the server.
330               (gnus-open-server gnus-command-method))
331           (when (and (eq (cadr elem) 'ok) gnus-agent
332                      (gnus-agent-method-p gnus-command-method))
333             (save-excursion
334               (gnus-agent-possibly-synchronize-flags-server
335                gnus-command-method)))
336           result)))))
337
338 (defun gnus-close-server (gnus-command-method)
339   "Close the connection to GNUS-COMMAND-METHOD."
340   (when (stringp gnus-command-method)
341     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
342   (funcall (gnus-get-function gnus-command-method 'close-server)
343            (nth 1 gnus-command-method)))
344
345 (defun gnus-request-list (gnus-command-method)
346   "Request the active file from GNUS-COMMAND-METHOD."
347   (when (stringp gnus-command-method)
348     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
349   (funcall (gnus-get-function gnus-command-method 'request-list)
350            (nth 1 gnus-command-method)))
351
352 (defun gnus-finish-retrieve-group-infos (gnus-command-method infos data)
353   "Read and update infos from GNUS-COMMAND-METHOD."
354   (when (stringp gnus-command-method)
355     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
356   (funcall (gnus-get-function gnus-command-method 'finish-retrieve-group-infos)
357            (nth 1 gnus-command-method)
358            infos data))
359
360 (defun gnus-retrieve-group-data-early (gnus-command-method infos)
361   "Start early async retrieval of data from GNUS-COMMAND-METHOD."
362   (when (stringp gnus-command-method)
363     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
364   (funcall (gnus-get-function gnus-command-method 'retrieve-group-data-early)
365            (nth 1 gnus-command-method)
366            infos))
367
368 (defun gnus-request-list-newsgroups (gnus-command-method)
369   "Request the newsgroups file from GNUS-COMMAND-METHOD."
370   (when (stringp gnus-command-method)
371     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
372   (funcall (gnus-get-function gnus-command-method 'request-list-newsgroups)
373            (nth 1 gnus-command-method)))
374
375 (defun gnus-request-newgroups (date gnus-command-method)
376   "Request all new groups since DATE from GNUS-COMMAND-METHOD."
377   (when (stringp gnus-command-method)
378     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
379   (let ((func (gnus-get-function gnus-command-method 'request-newgroups t)))
380     (when func
381       (funcall func date (nth 1 gnus-command-method)))))
382
383 (defun gnus-request-regenerate (gnus-command-method)
384   "Request a data generation from GNUS-COMMAND-METHOD."
385   (when (stringp gnus-command-method)
386     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
387   (funcall (gnus-get-function gnus-command-method 'request-regenerate)
388            (nth 1 gnus-command-method)))
389
390 (defun gnus-request-compact-group (group)
391   (let* ((method (gnus-find-method-for-group group))
392          (gnus-command-method method)
393          (result
394           (funcall (gnus-get-function gnus-command-method
395                                       'request-compact-group)
396                    (gnus-group-real-name group)
397                    (nth 1 gnus-command-method) t)))
398     result))
399
400 (defun gnus-request-compact (gnus-command-method)
401   "Request groups compaction from GNUS-COMMAND-METHOD."
402   (when (stringp gnus-command-method)
403     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
404   (funcall (gnus-get-function gnus-command-method 'request-compact)
405            (nth 1 gnus-command-method)))
406
407 (defun gnus-request-group (group &optional dont-check gnus-command-method info)
408   "Request GROUP.  If DONT-CHECK, no information is required."
409   (let ((gnus-command-method
410          (or gnus-command-method (inline (gnus-find-method-for-group group)))))
411     (when (stringp gnus-command-method)
412       (setq gnus-command-method
413             (inline (gnus-server-to-method gnus-command-method))))
414     (funcall (inline (gnus-get-function gnus-command-method 'request-group))
415              (gnus-group-real-name group) (nth 1 gnus-command-method)
416              dont-check
417              info)))
418
419 (defun gnus-request-group-description (group)
420   "Request a description of GROUP."
421   (let ((gnus-command-method (gnus-find-method-for-group group))
422         (func 'request-group-description))
423     (when (gnus-check-backend-function func group)
424       (funcall (gnus-get-function gnus-command-method func)
425                (gnus-group-real-name group) (nth 1 gnus-command-method)))))
426
427 (defun gnus-close-group (group)
428   "Request the GROUP be closed."
429   (let ((gnus-command-method (inline (gnus-find-method-for-group group))))
430     (funcall (gnus-get-function gnus-command-method 'close-group)
431              (gnus-group-real-name group) (nth 1 gnus-command-method))))
432
433 (defun gnus-retrieve-headers (articles group &optional fetch-old)
434   "Request headers for ARTICLES in GROUP.
435 If FETCH-OLD, retrieve all headers (or some subset thereof) in the group."
436   (let ((gnus-command-method (gnus-find-method-for-group group)))
437     (cond
438      ((and gnus-use-cache (numberp (car articles)))
439       (gnus-cache-retrieve-headers articles group fetch-old))
440      ((and gnus-agent (gnus-online gnus-command-method)
441            (gnus-agent-method-p gnus-command-method))
442       (gnus-agent-retrieve-headers articles group fetch-old))
443      (t
444       (funcall (gnus-get-function gnus-command-method 'retrieve-headers)
445                articles (gnus-group-real-name group)
446                (nth 1 gnus-command-method) fetch-old)))))
447
448 (defun gnus-retrieve-articles (articles group)
449   "Request ARTICLES in GROUP."
450   (let ((gnus-command-method (gnus-find-method-for-group group)))
451     (funcall (gnus-get-function gnus-command-method 'retrieve-articles)
452              articles (gnus-group-real-name group)
453              (nth 1 gnus-command-method))))
454
455 (defun gnus-retrieve-groups (groups gnus-command-method)
456   "Request active information on GROUPS from GNUS-COMMAND-METHOD."
457   (when (stringp gnus-command-method)
458     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
459   (funcall (gnus-get-function gnus-command-method 'retrieve-groups)
460            groups (nth 1 gnus-command-method)))
461
462 (defun gnus-request-type (group &optional article)
463   "Return the type (`post' or `mail') of GROUP (and ARTICLE)."
464   (let ((gnus-command-method (gnus-find-method-for-group group)))
465     (if (not (gnus-check-backend-function
466               'request-type (car gnus-command-method)))
467         'unknown
468       (funcall (gnus-get-function gnus-command-method 'request-type)
469                (gnus-group-real-name group) article))))
470
471 (defun gnus-request-update-group-status (group status)
472   "Change the status of a group.
473 Valid statuses include `subscribe' and `unsubscribe'."
474   (let ((gnus-command-method (gnus-find-method-for-group group)))
475     (if (not (gnus-check-backend-function
476               'request-update-group-status (car gnus-command-method)))
477         nil
478       (funcall
479        (gnus-get-function gnus-command-method 'request-update-group-status)
480        (gnus-group-real-name group) status
481        (nth 1 gnus-command-method)))))
482
483 (defun gnus-request-set-mark (group action)
484   "Set marks on articles in the back end."
485   (let ((gnus-command-method (gnus-find-method-for-group group)))
486     (if (not (gnus-check-backend-function
487               'request-set-mark (car gnus-command-method)))
488         action
489       (funcall (gnus-get-function gnus-command-method 'request-set-mark)
490                (gnus-group-real-name group) action
491                (nth 1 gnus-command-method))
492       (gnus-run-hook-with-args gnus-after-set-mark-hook group action))))
493
494 (defun gnus-request-update-mark (group article mark)
495   "Allow the back end to change the mark the user tries to put on an article."
496   (let ((gnus-command-method (gnus-find-method-for-group group)))
497     (if (not (gnus-check-backend-function
498               'request-update-mark (car gnus-command-method)))
499         mark
500       (gnus-run-hook-with-args gnus-before-update-mark-hook group article mark)
501       (funcall (gnus-get-function gnus-command-method 'request-update-mark)
502                (gnus-group-real-name group) article mark))))
503
504 (defun gnus-request-article (article group &optional buffer)
505   "Request the ARTICLE in GROUP.
506 ARTICLE can either be an article number or an article Message-ID.
507 If BUFFER, insert the article in that group."
508   (let ((gnus-command-method (gnus-find-method-for-group group)))
509     (funcall (gnus-get-function gnus-command-method 'request-article)
510              article (gnus-group-real-name group)
511              (nth 1 gnus-command-method) buffer)))
512
513 (defun gnus-request-thread (header group)
514   "Request the headers in the thread containing the article specified by HEADER."
515   (let ((gnus-command-method (gnus-find-method-for-group group)))
516     (funcall (gnus-get-function gnus-command-method 'request-thread)
517              header
518              (gnus-group-real-name group))))
519
520 (defun gnus-select-group-with-message-id (group message-id)
521   "Activate and select GROUP with the given MESSAGE-ID selected.
522 Returns the article number of the message.
523
524 If GROUP is not already selected, the message will be the only one in
525 the group's summary.
526 "
527   ;; TODO: is there a way to know at this point whether the group will
528   ;; be newly-selected?  If so we could clean up the logic at the end
529   ;;
530   ;; save the new group's display parameter, if any, so we
531   ;; can replace it temporarily with zero.
532   (let ((saved-display
533          (gnus-group-get-parameter group 'display :allow-list)))
534
535     ;; Tell gnus we really don't want any articles 
536     (gnus-group-set-parameter group 'display 0)
537
538     (unwind-protect
539         (gnus-summary-read-group-1
540          group (not :show-all) :no-article (not :kill-buffer)
541          ;; The combination of no-display and this dummy list of
542          ;; articles to select somehow makes it possible to open a
543          ;; group with no articles in it.  Black magic.
544          :no-display '(-1); select-articles
545          )
546       ;; Restore the new group's display parameter
547       (gnus-group-set-parameter group 'display saved-display)))
548
549   ;; The summary buffer was suppressed by :no-display above.
550   ;; Create it now and insert the message
551   (let ((group-is-new (gnus-summary-setup-buffer group)))
552     (condition-case err
553         (let ((article-number 
554                (gnus-summary-insert-subject message-id)))
555           (unless article-number
556             (signal 'error "message-id not in group"))
557           (gnus-summary-select-article nil nil nil article-number)
558           article-number)
559       ;; Clean up the new summary and propagate the error
560       (error (when group-is-new (gnus-summary-exit))
561              (apply 'signal err)))))
562
563 (defun gnus-simplify-group-name (group)
564   "Return the simplest representation of the name of GROUP.
565 This is the string that Gnus uses to identify the group."
566   (gnus-group-prefixed-name
567    (gnus-group-real-name group)
568    (gnus-group-method group)))
569
570 (defun gnus-warp-to-article ()
571   "Warps from an article in a virtual group to the article in its
572 real group. Does nothing on a real group."
573   (interactive)
574   (when (gnus-virtual-group-p gnus-newsgroup-name)
575     (let ((gnus-command-method
576            (gnus-find-method-for-group gnus-newsgroup-name)))
577       (or
578        (when (gnus-check-backend-function
579               'warp-to-article (car gnus-command-method))
580          (funcall (gnus-get-function gnus-command-method 'warp-to-article)))
581        (and (bound-and-true-p gnus-registry-enabled)
582             (gnus-try-warping-via-registry))))))
583
584 (defun gnus-request-head (article group)
585   "Request the head of ARTICLE in GROUP."
586   (let* ((gnus-command-method (gnus-find-method-for-group group))
587          (head (gnus-get-function gnus-command-method 'request-head t))
588          res clean-up)
589     (cond
590      ;; Check the cache.
591      ((and gnus-use-cache
592            (numberp article)
593            (gnus-cache-request-article article group))
594       (setq res (cons group article)
595             clean-up t))
596      ;; Check the agent cache.
597      ((gnus-agent-request-article article group)
598       (setq res (cons group article)
599             clean-up t))
600      ;; Use `head' function.
601      ((fboundp head)
602       (setq res (funcall head article
603                          (and (not gnus-override-method) (gnus-group-real-name group))
604                          (nth 1 gnus-command-method))))
605      ;; Use `article' function.
606      (t
607       (setq res (gnus-request-article article group)
608             clean-up t)))
609     (when clean-up
610       (with-current-buffer nntp-server-buffer
611         (goto-char (point-min))
612         (when (search-forward "\n\n" nil t)
613           (delete-region (1- (point)) (point-max)))
614         (nnheader-fold-continuation-lines)))
615     res))
616
617 (defun gnus-request-body (article group)
618   "Request the body of ARTICLE in GROUP."
619   (let* ((gnus-command-method (gnus-find-method-for-group group))
620          (head (gnus-get-function gnus-command-method 'request-body t))
621          res clean-up)
622     (cond
623      ;; Check the cache.
624      ((and gnus-use-cache
625            (numberp article)
626            (gnus-cache-request-article article group))
627       (setq res (cons group article)
628             clean-up t))
629      ;; Check the agent cache.
630      ((gnus-agent-request-article article group)
631       (setq res (cons group article)
632             clean-up t))
633      ;; Use `head' function.
634      ((fboundp head)
635       (setq res (funcall head article (gnus-group-real-name group)
636                          (nth 1 gnus-command-method))))
637      ;; Use `article' function.
638      (t
639       (setq res (gnus-request-article article group)
640             clean-up t)))
641     (when clean-up
642       (with-current-buffer nntp-server-buffer
643         (goto-char (point-min))
644         (when (search-forward "\n\n" nil t)
645           (delete-region (point-min) (1- (point))))))
646     res))
647
648 (defun gnus-request-post (gnus-command-method)
649   "Post the current buffer using GNUS-COMMAND-METHOD."
650   (when (stringp gnus-command-method)
651     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
652   (funcall (gnus-get-function gnus-command-method 'request-post)
653            (nth 1 gnus-command-method)))
654
655 (defun gnus-request-expunge-group (group gnus-command-method)
656   "Expunge GROUP, which is removing articles that have been marked as deleted."
657   (when (stringp gnus-command-method)
658     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
659   (funcall (gnus-get-function gnus-command-method 'request-expunge-group)
660            (gnus-group-real-name group)
661            (nth 1 gnus-command-method)))
662
663 (defun gnus-request-scan (group gnus-command-method)
664   "Request a SCAN being performed in GROUP from GNUS-COMMAND-METHOD.
665 If GROUP is nil, all groups on GNUS-COMMAND-METHOD are scanned."
666   (let ((gnus-command-method
667          (if group (gnus-find-method-for-group group) gnus-command-method))
668         (gnus-inhibit-demon t)
669         (mail-source-plugged gnus-plugged))
670     (when (or gnus-plugged
671               (not (gnus-agent-method-p gnus-command-method)))
672       (setq gnus-internal-registry-spool-current-method gnus-command-method)
673       (funcall (gnus-get-function gnus-command-method 'request-scan)
674                (and group (gnus-group-real-name group))
675                (nth 1 gnus-command-method)))))
676
677 (defun gnus-request-update-info (info gnus-command-method)
678   (when (gnus-check-backend-function
679          'request-update-info (car gnus-command-method))
680     (when (stringp gnus-command-method)
681       (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
682     (funcall (gnus-get-function gnus-command-method 'request-update-info)
683              (gnus-group-real-name (gnus-info-group info)) info
684              (nth 1 gnus-command-method))))
685
686 (defsubst gnus-request-marks (info gnus-command-method)
687   "Request that GNUS-COMMAND-METHOD update INFO."
688   (when (stringp gnus-command-method)
689     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
690   (when (gnus-check-backend-function
691          'request-marks (car gnus-command-method))
692     (let ((group (gnus-info-group info)))
693       (and (funcall (gnus-get-function gnus-command-method 'request-marks)
694                     (gnus-group-real-name group)
695                     info (nth 1 gnus-command-method))
696            ;; If the minimum article number is greater than 1, then all
697            ;; smaller article numbers are known not to exist; we'll
698            ;; artificially add those to the 'read range.
699            (let* ((active (gnus-active group))
700                   (min (car active)))
701              (when (> min 1)
702                (let* ((range (if (= min 2) 1 (cons 1 (1- min))))
703                       (read (gnus-info-read info))
704                       (new-read (gnus-range-add read (list range))))
705                  (gnus-info-set-read info new-read)))
706              info)))))
707
708 (defun gnus-request-expire-articles (articles group &optional force)
709   (let* ((gnus-command-method (gnus-find-method-for-group group))
710          ;; Filter out any negative article numbers; they can't be
711          ;; expired here.
712          (articles
713           (delq nil (mapcar (lambda (n) (and (>= n 0) n)) articles)))
714          (gnus-inhibit-demon t)
715          (not-deleted
716           (funcall
717            (gnus-get-function gnus-command-method 'request-expire-articles)
718            articles (gnus-group-real-name group) (nth 1 gnus-command-method)
719            force)))
720     (when (and gnus-agent
721                (gnus-agent-method-p gnus-command-method))
722       (let ((expired-articles (gnus-sorted-difference articles not-deleted)))
723         (when expired-articles
724           (gnus-agent-expire expired-articles group 'force))))
725     not-deleted))
726
727 (defun gnus-request-move-article (article group server accept-function
728                                           &optional last move-is-internal)
729   (let* ((gnus-command-method (gnus-find-method-for-group group))
730          (result (funcall (gnus-get-function gnus-command-method
731                                              'request-move-article)
732                           article (gnus-group-real-name group)
733                           (nth 1 gnus-command-method) accept-function
734                           last move-is-internal)))
735     (when (and result gnus-agent
736                (gnus-agent-method-p gnus-command-method))
737       (gnus-agent-unfetch-articles group (list article)))
738     result))
739
740 (defun gnus-request-accept-article (group &optional gnus-command-method last
741                                           no-encode)
742   ;; Make sure there's a newline at the end of the article.
743   (when (stringp gnus-command-method)
744     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
745   (when (and (not gnus-command-method)
746              (stringp group))
747     (setq gnus-command-method (or (gnus-find-method-for-group group)
748                                   (gnus-group-name-to-method group))))
749   (goto-char (point-max))
750   (unless (bolp)
751     (insert "\n"))
752   (unless no-encode
753     (let ((message-options message-options))
754       (message-options-set-recipient)
755       (save-restriction
756         (message-narrow-to-head)
757         (let ((mail-parse-charset message-default-charset))
758           (mail-encode-encoded-word-buffer)))
759       (message-encode-message-body)))
760   (let ((gnus-command-method (or gnus-command-method
761                                  (gnus-find-method-for-group group)))
762         (result
763          (funcall
764           (gnus-get-function gnus-command-method 'request-accept-article)
765           (if (stringp group) (gnus-group-real-name group) group)
766           (cadr gnus-command-method)
767           last)))
768     (when (and gnus-agent
769                (gnus-agent-method-p gnus-command-method)
770                (cdr result))
771       (gnus-agent-regenerate-group group (list (cdr result))))
772     result))
773
774 (defun gnus-request-replace-article (article group buffer &optional no-encode)
775   (unless no-encode
776     (let ((message-options message-options))
777       (message-options-set-recipient)
778       (save-restriction
779         (message-narrow-to-head)
780         (let ((mail-parse-charset message-default-charset))
781           (mail-encode-encoded-word-buffer)))
782       (message-encode-message-body)))
783   (let* ((func (car (gnus-group-name-to-method group)))
784          (result (funcall (intern (format "%s-request-replace-article" func))
785                           article (gnus-group-real-name group) buffer)))
786     (when (and gnus-agent (gnus-agent-method-p gnus-command-method))
787       (gnus-agent-regenerate-group group (list article)))
788     result))
789
790 (defun gnus-request-restore-buffer (article group)
791   "Request a new buffer restored to the state of ARTICLE."
792   (let ((gnus-command-method (gnus-find-method-for-group group)))
793     (funcall (gnus-get-function gnus-command-method 'request-restore-buffer)
794              article (gnus-group-real-name group)
795              (nth 1 gnus-command-method))))
796
797 (defun gnus-request-create-group (group &optional gnus-command-method args)
798   (when (stringp gnus-command-method)
799     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
800   (let ((gnus-command-method
801          (or gnus-command-method (gnus-find-method-for-group group))))
802     (funcall (gnus-get-function gnus-command-method 'request-create-group)
803              (gnus-group-real-name group) (nth 1 gnus-command-method) args)))
804
805 (defun gnus-request-delete-group (group &optional force)
806   (let* ((gnus-command-method (gnus-find-method-for-group group))
807          (result
808           (funcall (gnus-get-function gnus-command-method 'request-delete-group)
809                    (gnus-group-real-name group) force (nth 1 gnus-command-method))))
810     (when result
811       (gnus-cache-delete-group group)
812       (gnus-agent-delete-group group))
813     result))
814
815 (defun gnus-request-rename-group (group new-name)
816   (let* ((gnus-command-method (gnus-find-method-for-group group))
817          (result
818           (funcall (gnus-get-function gnus-command-method 'request-rename-group)
819                    (gnus-group-real-name group)
820                    (gnus-group-real-name new-name) (nth 1 gnus-command-method))))
821     (when result
822       (gnus-cache-rename-group group new-name)
823       (gnus-agent-rename-group group new-name))
824     result))
825
826 (defun gnus-close-backends ()
827   ;; Send a close request to all backends that support such a request.
828   (let ((methods gnus-valid-select-methods)
829         (gnus-inhibit-demon t)
830         func gnus-command-method)
831     (while (setq gnus-command-method (pop methods))
832       (when (fboundp (setq func (intern
833                                  (concat (car gnus-command-method)
834                                          "-request-close"))))
835         (funcall func)))))
836
837 (defun gnus-asynchronous-p (gnus-command-method)
838   (let ((func (gnus-get-function gnus-command-method 'asynchronous-p t)))
839     (when (fboundp func)
840       (funcall func))))
841
842 (defun gnus-remove-denial (gnus-command-method)
843   (when (stringp gnus-command-method)
844     (setq gnus-command-method (gnus-server-to-method gnus-command-method)))
845   (let* ((elem (assoc gnus-command-method gnus-opened-servers))
846          (status (cadr elem)))
847     ;; If this hasn't been opened before, we add it to the list.
848     (when (eq status 'denied)
849       ;; Set the status of this server.
850       (setcar (cdr elem) 'closed))))
851
852 (provide 'gnus-int)
853
854 ;;; gnus-int.el ends here