(url-redirect-buffer): New var.
[bpt/emacs.git] / lisp / url / url.el
CommitLineData
8c8b8430 1;;; url.el --- Uniform Resource Locator retrieval tool
42b369cd 2
71ddfde5 3;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004,
2ef88a69 4;; 2005, 2006 Free Software Foundation, Inc.
42b369cd 5
8c8b8430 6;; Author: Bill Perry <wmperry@gnu.org>
8c8b8430
SM
7;; Keywords: comm, data, processes, hypermedia
8
42b369cd
SM
9;; This file is part of GNU Emacs.
10;;
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15;;
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20;;
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
4fc5845f
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
42b369cd
SM
25
26;;; Commentary:
8c8b8430
SM
27
28;; Registered URI schemes: http://www.iana.org/assignments/uri-schemes
29
42b369cd
SM
30;;; Code:
31
8c8b8430 32(eval-when-compile (require 'cl))
8c8b8430
SM
33
34(eval-when-compile
35 (require 'mm-decode)
36 (require 'mm-view))
37
38(require 'mailcap)
39(require 'url-vars)
40(require 'url-cookie)
41(require 'url-history)
42(require 'url-expand)
43(require 'url-privacy)
44(require 'url-methods)
45(require 'url-proxy)
46(require 'url-parse)
47(require 'url-util)
48
71ddfde5 49;; Fixme: customize? convert-standard-filename?
208d4577
SM
50(defvar url-configuration-directory
51 (cond
52 ((file-directory-p "~/.url") "~/.url")
53 ((file-directory-p "~/.emacs.d") "~/.emacs.d/url")
54 (t "~/.url")))
8c8b8430
SM
55
56(defun url-do-setup ()
57 "Setup the url package.
58This is to avoid conflict with user settings if URL is dumped with
59Emacs."
60 (unless url-setup-done
61
62 ;; Make OS/2 happy
63 ;;(push '("http" "80") tcp-binary-process-input-services)
64
65 (mailcap-parse-mailcaps)
66 (mailcap-parse-mimetypes)
71ddfde5 67
8c8b8430
SM
68 ;; Register all the authentication schemes we can handle
69 (url-register-auth-scheme "basic" nil 4)
70 (url-register-auth-scheme "digest" nil 7)
71
72 (setq url-cookie-file
73 (or url-cookie-file
74 (expand-file-name "cookies" url-configuration-directory)))
71ddfde5 75
8c8b8430
SM
76 (setq url-history-file
77 (or url-history-file
78 (expand-file-name "history" url-configuration-directory)))
71ddfde5 79
8c8b8430
SM
80 ;; Parse the global history file if it exists, so that it can be used
81 ;; for URL completion, etc.
82 (url-history-parse-history)
83 (url-history-setup-save-timer)
84
85 ;; Ditto for cookies
86 (url-cookie-setup-save-timer)
87 (url-cookie-parse-file url-cookie-file)
88
89 ;; Read in proxy gateways
90 (let ((noproxy (and (not (assoc "no_proxy" url-proxy-services))
91 (or (getenv "NO_PROXY")
92 (getenv "no_PROXY")
93 (getenv "no_proxy")))))
94 (if noproxy
95 (setq url-proxy-services
96 (cons (cons "no_proxy"
97 (concat "\\("
98 (mapconcat
99 (lambda (x)
100 (cond
101 ((= x ?,) "\\|")
102 ((= x ? ) "")
103 ((= x ?.) (regexp-quote "."))
104 ((= x ?*) ".*")
105 ((= x ??) ".")
106 (t (char-to-string x))))
107 noproxy "") "\\)"))
108 url-proxy-services))))
109
8c8b8430
SM
110 (url-setup-privacy-info)
111 (run-hooks 'url-load-hook)
112 (setq url-setup-done t)))
113
114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
115;;; Retrieval functions
116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
9b4cf231
SM
117
118(defvar url-redirect-buffer nil
119 "New buffer into which the retrieval will take place.
120Sometimes while retrieving a URL, the URL library needs to use another buffer
121than the one returned initially by `url-retrieve'. In this case, it sets this
122variable in the original buffer as a forwarding pointer.")
123
2ef88a69 124;;;###autoload
8c8b8430
SM
125(defun url-retrieve (url callback &optional cbargs)
126 "Retrieve URL asynchronously and call CALLBACK with CBARGS when finished.
497803ed
RS
127URL is either a string or a parsed URL.
128
129CALLBACK is called when the object has been completely retrieved, with
8c8b8430 130the current buffer containing the object, and any MIME headers associated
497803ed
RS
131with it. Normally it gets the arguments in the list CBARGS.
132However, if what we find is a redirect, CALLBACK is given
133two additional args, `:redirect' and the redirected URL,
134followed by CBARGS.
8c8b8430
SM
135
136Return the buffer URL will load into, or nil if the process has
137already completed."
138 (url-do-setup)
139 (url-gc-dead-buffers)
140 (if (stringp url)
141 (set-text-properties 0 (length url) nil url))
142 (if (not (vectorp url))
143 (setq url (url-generic-parse-url url)))
144 (if (not (functionp callback))
145 (error "Must provide a callback function to url-retrieve"))
146 (unless (url-type url)
147 (error "Bad url: %s" (url-recreate-url url)))
148 (let ((loader (url-scheme-get-property (url-type url) 'loader))
149 (url-using-proxy (if (url-host url)
150 (url-find-proxy-for-url url (url-host url))))
151 (buffer nil)
152 (asynch (url-scheme-get-property (url-type url) 'asynchronous-p)))
153 (if url-using-proxy
154 (setq asynch t
155 loader 'url-proxy))
156 (if asynch
157 (setq buffer (funcall loader url callback cbargs))
158 (setq buffer (funcall loader url))
159 (if buffer
42b369cd 160 (with-current-buffer buffer
8c8b8430 161 (apply callback cbargs))))
11b5750f
RS
162 (if url-history-track
163 (url-history-update-url url (current-time)))
8c8b8430
SM
164 buffer))
165
2ef88a69 166;;;###autoload
8c8b8430
SM
167(defun url-retrieve-synchronously (url)
168 "Retrieve URL synchronously.
169Return the buffer containing the data, or nil if there are no data
170associated with it (the case for dired, info, or mailto URLs that need
171no further processing). URL is either a string or a parsed URL."
172 (url-do-setup)
173
174 (lexical-let ((retrieval-done nil)
175 (asynch-buffer nil))
176 (setq asynch-buffer
177 (url-retrieve url (lambda (&rest ignored)
178 (url-debug 'retrieval "Synchronous fetching done (%S)" (current-buffer))
179 (setq retrieval-done t
180 asynch-buffer (current-buffer)))))
7f954571
SM
181 (if (null asynch-buffer)
182 ;; We do not need to do anything, it was a mailto or something
183 ;; similar that takes processing completely outside of the URL
184 ;; package.
185 nil
186 (let ((proc (get-buffer-process asynch-buffer)))
187 ;; If the access method was synchronous, `retrieval-done' should
188 ;; hopefully already be set to t. If it is nil, and `proc' is also
189 ;; nil, it implies that the async process is not running in
190 ;; asynch-buffer. This happens e.g. for FTP files. In such a case
191 ;; url-file.el should probably set something like a `url-process'
192 ;; buffer-local variable so we can find the exact process that we
193 ;; should be waiting for. In the mean time, we'll just wait for any
194 ;; process output.
944b2ab6
SM
195 (while (not retrieval-done)
196 (url-debug 'retrieval
197 "Spinning in url-retrieve-synchronously: %S (%S)"
198 retrieval-done asynch-buffer)
9b4cf231
SM
199 (if (buffer-local-value 'url-redirect-buffer asynch-buffer)
200 (setq proc (get-buffer-process
201 (setq asynch-buffer
202 (buffer-local-value 'url-redirect-buffer
203 asynch-buffer))))
204 (if (and proc (memq (process-status proc)
205 '(closed exit signal failed))
206 ;; Make sure another process hasn't been started.
207 (eq proc (or (get-buffer-process asynch-buffer) proc)))
208 ;; FIXME: It's not clear whether url-retrieve's callback is
209 ;; guaranteed to be called or not. It seems that url-http
210 ;; decides sometimes consciously not to call it, so it's not
211 ;; clear that it's a bug, but even then we need to decide how
212 ;; url-http can then warn us that the download has completed.
213 ;; In the mean time, we use this here workaround.
214 (setq retrieval-done t))
799fba8f
SM
215 ;; We used to use `sit-for' here, but in some cases it wouldn't
216 ;; work because apparently pending keyboard input would always
217 ;; interrupt it before it got a chance to handle process input.
218 ;; `sleep-for' was tried but it lead to other forms of
219 ;; hanging. --Stef
7f954571 220 (unless (or (accept-process-output proc) (null proc))
799fba8f
SM
221 ;; accept-process-output returned nil, maybe because the process
222 ;; exited (and may have been replaced with another).
223 (setq proc (get-buffer-process asynch-buffer))))))
8c8b8430
SM
224 asynch-buffer)))
225
226(defun url-mm-callback (&rest ignored)
227 (let ((handle (mm-dissect-buffer t)))
7f954571
SM
228 (url-mark-buffer-as-dead (current-buffer))
229 (with-current-buffer
230 (generate-new-buffer (url-recreate-url url-current-object))
8c8b8430
SM
231 (if (eq (mm-display-part handle) 'external)
232 (progn
233 (set-process-sentinel
234 ;; Fixme: this shouldn't have to know the form of the
235 ;; undisplayer produced by `mm-display-part'.
236 (get-buffer-process (cdr (mm-handle-undisplayer handle)))
237 `(lambda (proc event)
238 (mm-destroy-parts (quote ,handle))))
239 (message "Viewing externally")
240 (kill-buffer (current-buffer)))
241 (display-buffer (current-buffer))
71ddfde5 242 (add-hook 'kill-buffer-hook
14e25c87
MY
243 `(lambda () (mm-destroy-parts ',handle))
244 nil
245 t)))))
8c8b8430
SM
246
247(defun url-mm-url (url)
248 "Retrieve URL and pass to the appropriate viewing application."
717c6bde
SM
249 ;; These requires could advantageously be moved to url-mm-callback or
250 ;; turned into autoloads, but I suspect that it would introduce some bugs
251 ;; because loading those files from a process sentinel or filter may
252 ;; result in some undesirable carner cases.
8c8b8430
SM
253 (require 'mm-decode)
254 (require 'mm-view)
255 (url-retrieve url 'url-mm-callback nil))
256
257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
258;;; Miscellaneous
259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
260(defvar url-dead-buffer-list nil)
261
262(defun url-mark-buffer-as-dead (buff)
263 (push buff url-dead-buffer-list))
264
265(defun url-gc-dead-buffers ()
266 (let ((buff))
267 (while (setq buff (pop url-dead-buffer-list))
268 (if (buffer-live-p buff)
269 (kill-buffer buff)))))
270
271(cond
272 ((fboundp 'display-warning)
273 (defalias 'url-warn 'display-warning))
274 ((fboundp 'warn)
275 (defun url-warn (class message &optional level)
276 (warn "(%s/%s) %s" class (or level 'warning) message)))
277 (t
278 (defun url-warn (class message &optional level)
42b369cd 279 (with-current-buffer (get-buffer-create "*URL-WARNINGS*")
8c8b8430
SM
280 (goto-char (point-max))
281 (save-excursion
282 (insert (format "(%s/%s) %s\n" class (or level 'warning) message)))
283 (display-buffer (current-buffer))))))
284
285(provide 'url)
286
42b369cd 287;; arch-tag: bc182f1f-d187-4f10-b961-47af2066579a
8c8b8430 288;;; url.el ends here