1 ;;; url-news.el --- News Uniform Resource Locator retrieval code
3 ;; Copyright (c) 1996 - 1999, 2004 Free Software Foundation, Inc.
5 ;; Keywords: comm, data, processes
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
30 (autoload 'url-warn
"url")
31 (autoload 'gnus-group-read-ephemeral-group
"gnus-group")
32 (eval-when-compile (require 'cl
))
34 (defgroup url-news nil
35 "News related options"
38 (defun url-news-open-host (host port user pass
)
39 (if (fboundp 'nnheader-init-server-buffer
)
40 (nnheader-init-server-buffer))
41 (nntp-open-server host
(list port
))
44 (nntp-send-command "^.*\r?\n" "AUTHINFO USER" user
)
45 (nntp-send-command "^.*\r?\n" "AUTHINFO PASS" pass
)
46 (if (not (nntp-server-opened host
))
47 (url-warn 'url
(format "NNTP authentication to `%s' as `%s' failed"
50 (defun url-news-fetch-message-id (host message-id
)
51 (let ((buf (generate-new-buffer " *url-news*")))
52 (if (eq ?
> (aref message-id
(1- (length message-id
))))
54 (setq message-id
(concat "<" message-id
">")))
55 (if (cdr-safe (nntp-request-article message-id nil host buf
))
56 ;; Successfully retrieved the article
60 (insert "Content-type: text/html\n\n"
63 " <title>Error</title>\n"
67 " <h1>Error requesting article...</h1>\n"
69 " The status message returned by the NNTP server was:"
76 " If you If you feel this is an error, <a href=\""
77 "mailto:" url-bug-address
"\">send mail</a>\n"
82 "<!-- Automatically generated by URL v" url-version
" -->\n"
86 (defun url-news-fetch-newsgroup (newsgroup host
)
87 (declare (special gnus-group-buffer
))
88 (if (string-match "^/+" newsgroup
)
89 (setq newsgroup
(substring newsgroup
(match-end 0))))
90 (if (string-match "/+$" newsgroup
)
91 (setq newsgroup
(substring newsgroup
0 (match-beginning 0))))
93 ;; This saves us from checking new news if Gnus is already running
94 ;; FIXME - is it relatively safe to use gnus-alive-p here? FIXME
95 (if (or (not (get-buffer gnus-group-buffer
))
97 (set-buffer gnus-group-buffer
)
98 (not (eq major-mode
'gnus-group-mode
))))
100 (set-buffer gnus-group-buffer
)
101 (goto-char (point-min))
102 (gnus-group-read-ephemeral-group newsgroup
104 'nntp-open-connection-function
105 nntp-open-connection-function
)
107 (cons (current-buffer) 'browse
)))
110 (defun url-news (url)
111 ;; Find a news reference
112 (let* ((host (or (url-host url
) url-news-server
))
113 (port (url-port url
))
114 (article-brackets nil
)
116 (article (url-filename url
)))
117 (url-news-open-host host port
(url-user url
) (url-password url
))
118 (setq article
(url-unhex-string article
))
120 ((string-match "@" article
) ; Its a specific article
121 (setq buf
(url-news-fetch-message-id host article
)))
122 ((string= article
"") ; List all newsgroups
125 (url-news-fetch-newsgroup article host
)))
129 (defun url-snews (url)
130 (let ((nntp-open-connection-function (if (eq 'tls url-gateway-method
)
132 nntp-open-ssl-stream
)))
137 ;;; arch-tag: 8975be13-04e8-4d38-bfff-47918e3ad311
138 ;;; url-news.el ends here