Mercurial > emacs
annotate lisp/url/url-http.el @ 73633:2ce1e7f4ca6f
*** empty log message ***
author | Ramprasad B <ramprasad_i82@yahoo.com> |
---|---|
date | Fri, 03 Nov 2006 13:54:32 +0000 |
parents | 064fe7ff7747 |
children | 8368b321b13d |
rev | line source |
---|---|
54695 | 1 ;;; url-http.el --- HTTP retrieval routines |
54830
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
2 |
69043
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
3 ;; Copyright (C) 1999, 2001, 2004, 2005, 2006 Free Software Foundation, Inc. |
54830
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
4 |
54695 | 5 ;; Author: Bill Perry <wmperry@gnu.org> |
6 ;; Keywords: comm, data, processes | |
54932
fd6856033c18
(url-http-head-file-attributes, url-http-file-attributes):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54830
diff
changeset
|
7 |
54830
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
9 ;; |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
10 ;; GNU Emacs is free software; you can redistribute it and/or modify |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
11 ;; it under the terms of the GNU General Public License as published by |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
13 ;; any later version. |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
14 ;; |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
15 ;; GNU Emacs is distributed in the hope that it will be useful, |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
18 ;; GNU General Public License for more details. |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
19 ;; |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
20 ;; You should have received a copy of the GNU General Public License |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64084 | 22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02110-1301, USA. | |
54695 | 24 |
54830
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
25 ;;; Commentary: |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
26 |
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
27 ;;; Code: |
54695 | 28 |
66990
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
29 (eval-when-compile (require 'cl)) |
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
30 (defvar url-http-extra-headers) |
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
31 (defvar url-http-target-url) |
54695 | 32 (require 'url-gw) |
33 (require 'url-util) | |
34 (require 'url-parse) | |
35 (require 'url-cookie) | |
36 (require 'mail-parse) | |
37 (require 'url-auth) | |
69043
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
38 (require 'url) |
54695 | 39 (autoload 'url-cache-create-filename "url-cache") |
40 | |
41 (defconst url-http-default-port 80 "Default HTTP port.") | |
42 (defconst url-http-asynchronous-p t "HTTP retrievals are asynchronous.") | |
43 (defalias 'url-http-expand-file-name 'url-default-expander) | |
44 | |
45 (defvar url-http-real-basic-auth-storage nil) | |
46 (defvar url-http-proxy-basic-auth-storage nil) | |
47 | |
48 (defvar url-http-open-connections (make-hash-table :test 'equal | |
49 :size 17) | |
50 "A hash table of all open network connections.") | |
51 | |
52 (defvar url-http-version "1.1" | |
53 "What version of HTTP we advertise, as a string. | |
54 Valid values are 1.1 and 1.0. | |
55 This is only useful when debugging the HTTP subsystem. | |
56 | |
57 Setting this to 1.0 will tell servers not to send chunked encoding, | |
69043
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
58 and other HTTP/1.1 specific features.") |
54695 | 59 |
60 (defvar url-http-attempt-keepalives t | |
61 "Whether to use a single TCP connection multiple times in HTTP. | |
62 This is only useful when debugging the HTTP subsystem. Setting to | |
69043
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
63 nil will explicitly close the connection to the server after every |
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
64 request.") |
54695 | 65 |
66 ;(eval-when-compile | |
67 ;; These are all macros so that they are hidden from external sight | |
68 ;; when the file is byte-compiled. | |
69 ;; | |
70 ;; This allows us to expose just the entry points we want. | |
71 | |
72 ;; These routines will allow us to implement persistent HTTP | |
73 ;; connections. | |
74 (defsubst url-http-debug (&rest args) | |
75 (if quit-flag | |
76 (let ((proc (get-buffer-process (current-buffer)))) | |
77 ;; The user hit C-g, honor it! Some things can get in an | |
78 ;; incredibly tight loop (chunked encoding) | |
79 (if proc | |
80 (progn | |
81 (set-process-sentinel proc nil) | |
82 (set-process-filter proc nil))) | |
83 (error "Transfer interrupted!"))) | |
84 (apply 'url-debug 'http args)) | |
85 | |
86 (defun url-http-mark-connection-as-busy (host port proc) | |
87 (url-http-debug "Marking connection as busy: %s:%d %S" host port proc) | |
88 (puthash (cons host port) | |
89 (delq proc (gethash (cons host port) url-http-open-connections)) | |
90 url-http-open-connections) | |
91 proc) | |
92 | |
93 (defun url-http-mark-connection-as-free (host port proc) | |
94 (url-http-debug "Marking connection as free: %s:%d %S" host port proc) | |
73501
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
95 (when (memq (process-status proc) '(open run)) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
96 (set-process-buffer proc nil) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
97 (set-process-sentinel proc 'url-http-idle-sentinel) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
98 (puthash (cons host port) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
99 (cons proc (gethash (cons host port) url-http-open-connections)) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
100 url-http-open-connections)) |
54695 | 101 nil) |
102 | |
103 (defun url-http-find-free-connection (host port) | |
104 (let ((conns (gethash (cons host port) url-http-open-connections)) | |
105 (found nil)) | |
106 (while (and conns (not found)) | |
107 (if (not (memq (process-status (car conns)) '(run open))) | |
108 (progn | |
109 (url-http-debug "Cleaning up dead process: %s:%d %S" | |
110 host port (car conns)) | |
111 (url-http-idle-sentinel (car conns) nil)) | |
112 (setq found (car conns)) | |
113 (url-http-debug "Found existing connection: %s:%d %S" host port found)) | |
114 (pop conns)) | |
115 (if found | |
116 (url-http-debug "Reusing existing connection: %s:%d" host port) | |
117 (url-http-debug "Contacting host: %s:%d" host port)) | |
118 (url-lazy-message "Contacting host: %s:%d" host port) | |
69043
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
119 (url-http-mark-connection-as-busy |
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
120 host port |
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
121 (or found |
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
122 (let ((buf (generate-new-buffer " *url-http-temp*"))) |
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
123 ;; `url-open-stream' needs a buffer in which to do things |
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
124 ;; like authentication. But we use another buffer afterwards. |
69296
64b44b996827
(url-http-find-free-connection): Don't kill the process
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69054
diff
changeset
|
125 (unwind-protect |
64b44b996827
(url-http-find-free-connection): Don't kill the process
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69054
diff
changeset
|
126 (let ((proc (url-open-stream host buf host port))) |
73347
2530d72a03db
(url-http-find-free-connection): Handle url-open-stream returning nil.
Magnus Henoch <mange@freemail.hu>
parents:
73336
diff
changeset
|
127 ;; url-open-stream might return nil. |
2530d72a03db
(url-http-find-free-connection): Handle url-open-stream returning nil.
Magnus Henoch <mange@freemail.hu>
parents:
73336
diff
changeset
|
128 (when (processp proc) |
2530d72a03db
(url-http-find-free-connection): Handle url-open-stream returning nil.
Magnus Henoch <mange@freemail.hu>
parents:
73336
diff
changeset
|
129 ;; Drop the temp buffer link before killing the buffer. |
2530d72a03db
(url-http-find-free-connection): Handle url-open-stream returning nil.
Magnus Henoch <mange@freemail.hu>
parents:
73336
diff
changeset
|
130 (set-process-buffer proc nil)) |
69328
7383e30e90bb
(url-http-find-free-connection): Fix braino in last fix.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69296
diff
changeset
|
131 proc) |
69043
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
132 (kill-buffer buf))))))) |
54695 | 133 |
134 ;; Building an HTTP request | |
135 (defun url-http-user-agent-string () | |
136 (if (or (eq url-privacy-level 'paranoid) | |
137 (and (listp url-privacy-level) | |
138 (memq 'agent url-privacy-level))) | |
139 "" | |
140 (format "User-Agent: %sURL/%s%s\r\n" | |
141 (if url-package-name | |
142 (concat url-package-name "/" url-package-version " ") | |
143 "") | |
144 url-version | |
145 (cond | |
146 ((and url-os-type url-system-type) | |
147 (concat " (" url-os-type "; " url-system-type ")")) | |
148 ((or url-os-type url-system-type) | |
149 (concat " (" (or url-system-type url-os-type) ")")) | |
150 (t ""))))) | |
151 | |
152 (defun url-http-create-request (url &optional ref-url) | |
153 "Create an HTTP request for URL, referred to by REF-URL." | |
73600
fe1f7fc1d1d6
(url-http-create-request): Use buffer-locale equivalents of
Magnus Henoch <mange@freemail.hu>
parents:
73516
diff
changeset
|
154 (declare (special proxy-object proxy-info |
fe1f7fc1d1d6
(url-http-create-request): Use buffer-locale equivalents of
Magnus Henoch <mange@freemail.hu>
parents:
73516
diff
changeset
|
155 url-http-method url-http-data |
fe1f7fc1d1d6
(url-http-create-request): Use buffer-locale equivalents of
Magnus Henoch <mange@freemail.hu>
parents:
73516
diff
changeset
|
156 url-http-extra-headers)) |
54695 | 157 (let* ((extra-headers) |
158 (request nil) | |
73600
fe1f7fc1d1d6
(url-http-create-request): Use buffer-locale equivalents of
Magnus Henoch <mange@freemail.hu>
parents:
73516
diff
changeset
|
159 (no-cache (cdr-safe (assoc "Pragma" url-http-extra-headers))) |
54695 | 160 (proxy-obj (and (boundp 'proxy-object) proxy-object)) |
161 (proxy-auth (if (or (cdr-safe (assoc "Proxy-Authorization" | |
73600
fe1f7fc1d1d6
(url-http-create-request): Use buffer-locale equivalents of
Magnus Henoch <mange@freemail.hu>
parents:
73516
diff
changeset
|
162 url-http-extra-headers)) |
54695 | 163 (not proxy-obj)) |
164 nil | |
165 (let ((url-basic-auth-storage | |
166 'url-http-proxy-basic-auth-storage)) | |
167 (url-get-authentication url nil 'any nil)))) | |
72590
210a878f1395
(url-http-create-request):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
70606
diff
changeset
|
168 (real-fname (concat (url-filename (or proxy-obj url)) |
210a878f1395
(url-http-create-request):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
70606
diff
changeset
|
169 (url-recreate-url-attributes (or proxy-obj url)))) |
54695 | 170 (host (url-host (or proxy-obj url))) |
73600
fe1f7fc1d1d6
(url-http-create-request): Use buffer-locale equivalents of
Magnus Henoch <mange@freemail.hu>
parents:
73516
diff
changeset
|
171 (auth (if (cdr-safe (assoc "Authorization" url-http-extra-headers)) |
54695 | 172 nil |
173 (url-get-authentication (or | |
174 (and (boundp 'proxy-info) | |
175 proxy-info) | |
176 url) nil 'any nil)))) | |
177 (if (equal "" real-fname) | |
178 (setq real-fname "/")) | |
179 (setq no-cache (and no-cache (string-match "no-cache" no-cache))) | |
180 (if auth | |
181 (setq auth (concat "Authorization: " auth "\r\n"))) | |
182 (if proxy-auth | |
183 (setq proxy-auth (concat "Proxy-Authorization: " proxy-auth "\r\n"))) | |
184 | |
185 ;; Protection against stupid values in the referer | |
186 (if (and ref-url (stringp ref-url) (or (string= ref-url "file:nil") | |
187 (string= ref-url ""))) | |
188 (setq ref-url nil)) | |
189 | |
190 ;; We do not want to expose the referer if the user is paranoid. | |
191 (if (or (memq url-privacy-level '(low high paranoid)) | |
192 (and (listp url-privacy-level) | |
193 (memq 'lastloc url-privacy-level))) | |
194 (setq ref-url nil)) | |
195 | |
73600
fe1f7fc1d1d6
(url-http-create-request): Use buffer-locale equivalents of
Magnus Henoch <mange@freemail.hu>
parents:
73516
diff
changeset
|
196 ;; url-http-extra-headers contains an assoc-list of |
54695 | 197 ;; header/value pairs that we need to put into the request. |
198 (setq extra-headers (mapconcat | |
199 (lambda (x) | |
200 (concat (car x) ": " (cdr x))) | |
73600
fe1f7fc1d1d6
(url-http-create-request): Use buffer-locale equivalents of
Magnus Henoch <mange@freemail.hu>
parents:
73516
diff
changeset
|
201 url-http-extra-headers "\r\n")) |
54695 | 202 (if (not (equal extra-headers "")) |
203 (setq extra-headers (concat extra-headers "\r\n"))) | |
204 | |
205 ;; This was done with a call to `format'. Concatting parts has | |
65804
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
206 ;; the advantage of keeping the parts of each header together and |
54695 | 207 ;; allows us to elide null lines directly, at the cost of making |
208 ;; the layout less clear. | |
209 (setq request | |
65804
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
210 ;; We used to concat directly, but if one of the strings happens |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
211 ;; to being multibyte (even if it only contains pure ASCII) then |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
212 ;; every string gets converted with `string-MAKE-multibyte' which |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
213 ;; turns the 127-255 codes into things like latin-1 accented chars |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
214 ;; (it would work right if it used `string-TO-multibyte' instead). |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
215 ;; So to avoid the problem we force every string to be unibyte. |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
216 (mapconcat |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
217 ;; FIXME: Instead of `string-AS-unibyte' we'd want |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
218 ;; `string-to-unibyte', so as to properly signal an error if one |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
219 ;; of the strings contains a multibyte char. |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
220 'string-as-unibyte |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
221 (delq nil |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
222 (list |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
223 ;; The request |
73600
fe1f7fc1d1d6
(url-http-create-request): Use buffer-locale equivalents of
Magnus Henoch <mange@freemail.hu>
parents:
73516
diff
changeset
|
224 (or url-http-method "GET") " " |
65804
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
225 (if proxy-obj (url-recreate-url proxy-obj) real-fname) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
226 " HTTP/" url-http-version "\r\n" |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
227 ;; Version of MIME we speak |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
228 "MIME-Version: 1.0\r\n" |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
229 ;; (maybe) Try to keep the connection open |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
230 "Connection: " (if (or proxy-obj |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
231 (not url-http-attempt-keepalives)) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
232 "close" "keep-alive") "\r\n" |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
233 ;; HTTP extensions we support |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
234 (if url-extensions-header |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
235 (format |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
236 "Extension: %s\r\n" url-extensions-header)) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
237 ;; Who we want to talk to |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
238 (if (/= (url-port (or proxy-obj url)) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
239 (url-scheme-get-property |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
240 (url-type (or proxy-obj url)) 'default-port)) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
241 (format |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
242 "Host: %s:%d\r\n" host (url-port (or proxy-obj url))) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
243 (format "Host: %s\r\n" host)) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
244 ;; Who its from |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
245 (if url-personal-mail-address |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
246 (concat |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
247 "From: " url-personal-mail-address "\r\n")) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
248 ;; Encodings we understand |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
249 (if url-mime-encoding-string |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
250 (concat |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
251 "Accept-encoding: " url-mime-encoding-string "\r\n")) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
252 (if url-mime-charset-string |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
253 (concat |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
254 "Accept-charset: " url-mime-charset-string "\r\n")) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
255 ;; Languages we understand |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
256 (if url-mime-language-string |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
257 (concat |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
258 "Accept-language: " url-mime-language-string "\r\n")) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
259 ;; Types we understand |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
260 "Accept: " (or url-mime-accept-string "*/*") "\r\n" |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
261 ;; User agent |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
262 (url-http-user-agent-string) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
263 ;; Proxy Authorization |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
264 proxy-auth |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
265 ;; Authorization |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
266 auth |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
267 ;; Cookies |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
268 (url-cookie-generate-header-lines host real-fname |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
269 (equal "https" (url-type url))) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
270 ;; If-modified-since |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
271 (if (and (not no-cache) |
73600
fe1f7fc1d1d6
(url-http-create-request): Use buffer-locale equivalents of
Magnus Henoch <mange@freemail.hu>
parents:
73516
diff
changeset
|
272 (member url-http-method '("GET" nil))) |
65804
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
273 (let ((tm (url-is-cached (or proxy-obj url)))) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
274 (if tm |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
275 (concat "If-modified-since: " |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
276 (url-get-normalized-date tm) "\r\n")))) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
277 ;; Whence we came |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
278 (if ref-url (concat |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
279 "Referer: " ref-url "\r\n")) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
280 extra-headers |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
281 ;; Length of data |
73600
fe1f7fc1d1d6
(url-http-create-request): Use buffer-locale equivalents of
Magnus Henoch <mange@freemail.hu>
parents:
73516
diff
changeset
|
282 (if url-http-data |
65804
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
283 (concat |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
284 "Content-length: " (number-to-string |
73600
fe1f7fc1d1d6
(url-http-create-request): Use buffer-locale equivalents of
Magnus Henoch <mange@freemail.hu>
parents:
73516
diff
changeset
|
285 (length url-http-data)) |
65804
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
286 "\r\n")) |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
287 ;; End request |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
288 "\r\n" |
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
289 ;; Any data |
73600
fe1f7fc1d1d6
(url-http-create-request): Use buffer-locale equivalents of
Magnus Henoch <mange@freemail.hu>
parents:
73516
diff
changeset
|
290 url-http-data)) |
65804
f8c4f76b7870
(url-http-create-request): Avoid incorrect implicit uni->multibyte conversion.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65097
diff
changeset
|
291 "")) |
54695 | 292 (url-http-debug "Request is: \n%s" request) |
293 request)) | |
294 | |
295 ;; Parsing routines | |
296 (defun url-http-clean-headers () | |
297 "Remove trailing \r from header lines. | |
298 This allows us to use `mail-fetch-field', etc." | |
299 (declare (special url-http-end-of-headers)) | |
300 (goto-char (point-min)) | |
301 (while (re-search-forward "\r$" url-http-end-of-headers t) | |
302 (replace-match ""))) | |
303 | |
304 (defun url-http-handle-authentication (proxy) | |
305 (declare (special status success url-http-method url-http-data | |
306 url-callback-function url-callback-arguments)) | |
307 (url-http-debug "Handling %s authentication" (if proxy "proxy" "normal")) | |
73626
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
308 (let ((auths (or (nreverse |
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
309 (mail-fetch-field |
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
310 (if proxy "proxy-authenticate" "www-authenticate") |
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
311 nil nil t)) |
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
312 '("basic"))) |
54695 | 313 (type nil) |
314 (url (url-recreate-url url-current-object)) | |
315 (url-basic-auth-storage 'url-http-real-basic-auth-storage) | |
73626
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
316 auth) |
54695 | 317 ;; Cheating, but who cares? :) |
318 (if proxy | |
319 (setq url-basic-auth-storage 'url-http-proxy-basic-auth-storage)) | |
320 | |
73626
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
321 ;; find first supported auth |
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
322 (while auths |
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
323 (setq auth (url-eat-trailing-space (url-strip-leading-spaces (car auths)))) |
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
324 (if (string-match "[ \t]" auth) |
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
325 (setq type (downcase (substring auth 0 (match-beginning 0)))) |
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
326 (setq type (downcase auth))) |
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
327 (if (url-auth-registered type) |
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
328 (setq auths nil) ; no more check |
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
329 (setq auth nil |
064fe7ff7747
(url-http-handle-authentication): If there are several authentication
Magnus Henoch <mange@freemail.hu>
parents:
73600
diff
changeset
|
330 auths (cdr auths)))) |
54695 | 331 |
332 (if (not (url-auth-registered type)) | |
333 (progn | |
334 (widen) | |
335 (goto-char (point-max)) | |
336 (insert "<hr>Sorry, but I do not know how to handle " type | |
337 " authentication. If you'd like to write it," | |
338 " send it to " url-bug-address ".<hr>") | |
339 (setq status t)) | |
66990
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
340 (let* ((args (url-parse-args (subst-char-in-string ?, ?\; auth))) |
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
341 (auth (url-get-authentication url (cdr-safe (assoc "realm" args)) |
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
342 type t args))) |
54695 | 343 (if (not auth) |
344 (setq success t) | |
345 (push (cons (if proxy "Proxy-Authorization" "Authorization") auth) | |
346 url-http-extra-headers) | |
347 (let ((url-request-method url-http-method) | |
348 (url-request-data url-http-data) | |
349 (url-request-extra-headers url-http-extra-headers)) | |
73501
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
350 (url-retrieve-internal url url-callback-function |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
351 url-callback-arguments))))))) |
54695 | 352 |
353 (defun url-http-parse-response () | |
354 "Parse just the response code." | |
355 (declare (special url-http-end-of-headers url-http-response-status)) | |
356 (if (not url-http-end-of-headers) | |
357 (error "Trying to parse HTTP response code in odd buffer: %s" (buffer-name))) | |
358 (url-http-debug "url-http-parse-response called in (%s)" (buffer-name)) | |
359 (goto-char (point-min)) | |
360 (skip-chars-forward " \t\n") ; Skip any blank crap | |
361 (skip-chars-forward "HTTP/") ; Skip HTTP Version | |
362 (read (current-buffer)) | |
363 (setq url-http-response-status (read (current-buffer)))) | |
364 | |
365 (defun url-http-handle-cookies () | |
366 "Handle all set-cookie / set-cookie2 headers in an HTTP response. | |
69043
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
367 The buffer must already be narrowed to the headers, so `mail-fetch-field' will |
54695 | 368 work correctly." |
369 (let ((cookies (mail-fetch-field "Set-Cookie" nil nil t)) | |
58686
2d413ef5bfec
(url-http-handle-cookies): Bind `url-current-object'
Andreas Schwab <schwab@suse.de>
parents:
58606
diff
changeset
|
370 (cookies2 (mail-fetch-field "Set-Cookie2" nil nil t)) |
66990
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
371 (url-current-object url-http-target-url)) |
54695 | 372 (and cookies (url-http-debug "Found %d Set-Cookie headers" (length cookies))) |
373 (and cookies2 (url-http-debug "Found %d Set-Cookie2 headers" (length cookies2))) | |
374 (while cookies | |
375 (url-cookie-handle-set-cookie (pop cookies))) | |
376 ;;; (while cookies2 | |
377 ;;; (url-cookie-handle-set-cookie2 (pop cookies))) | |
378 ) | |
379 ) | |
380 | |
381 (defun url-http-parse-headers () | |
382 "Parse and handle HTTP specific headers. | |
383 Return t if and only if the current buffer is still active and | |
384 should be shown to the user." | |
385 ;; The comments after each status code handled are taken from RFC | |
386 ;; 2616 (HTTP/1.1) | |
387 (declare (special url-http-end-of-headers url-http-response-status | |
388 url-http-method url-http-data url-http-process | |
389 url-callback-function url-callback-arguments)) | |
390 | |
391 (url-http-mark-connection-as-free (url-host url-current-object) | |
392 (url-port url-current-object) | |
393 url-http-process) | |
394 | |
395 (if (or (not (boundp 'url-http-end-of-headers)) | |
396 (not url-http-end-of-headers)) | |
397 (error "Trying to parse headers in odd buffer: %s" (buffer-name))) | |
398 (goto-char (point-min)) | |
399 (url-http-debug "url-http-parse-headers called in (%s)" (buffer-name)) | |
400 (url-http-parse-response) | |
401 (mail-narrow-to-head) | |
402 ;;(narrow-to-region (point-min) url-http-end-of-headers) | |
70396
083f558fe283
(url-http-parse-headers): Don't reuse connection if "Connection: close" header
Eli Zaretskii <eliz@gnu.org>
parents:
69328
diff
changeset
|
403 (let ((connection (mail-fetch-field "Connection"))) |
083f558fe283
(url-http-parse-headers): Don't reuse connection if "Connection: close" header
Eli Zaretskii <eliz@gnu.org>
parents:
69328
diff
changeset
|
404 (if (and connection |
083f558fe283
(url-http-parse-headers): Don't reuse connection if "Connection: close" header
Eli Zaretskii <eliz@gnu.org>
parents:
69328
diff
changeset
|
405 (string= (downcase connection) "close")) |
083f558fe283
(url-http-parse-headers): Don't reuse connection if "Connection: close" header
Eli Zaretskii <eliz@gnu.org>
parents:
69328
diff
changeset
|
406 (delete-process url-http-process))) |
54830
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
407 (let ((class nil) |
54695 | 408 (success nil)) |
409 (setq class (/ url-http-response-status 100)) | |
410 (url-http-debug "Parsed HTTP headers: class=%d status=%d" class url-http-response-status) | |
411 (url-http-handle-cookies) | |
412 | |
413 (case class | |
414 ;; Classes of response codes | |
415 ;; | |
416 ;; 5xx = Server Error | |
417 ;; 4xx = Client Error | |
418 ;; 3xx = Redirection | |
419 ;; 2xx = Successful | |
420 ;; 1xx = Informational | |
421 (1 ; Information messages | |
422 ;; 100 = Continue with request | |
423 ;; 101 = Switching protocols | |
424 ;; 102 = Processing (Added by DAV) | |
425 (url-mark-buffer-as-dead (current-buffer)) | |
426 (error "HTTP responses in class 1xx not supported (%d)" url-http-response-status)) | |
427 (2 ; Success | |
428 ;; 200 Ok | |
429 ;; 201 Created | |
430 ;; 202 Accepted | |
431 ;; 203 Non-authoritative information | |
432 ;; 204 No content | |
433 ;; 205 Reset content | |
434 ;; 206 Partial content | |
435 ;; 207 Multi-status (Added by DAV) | |
436 (case url-http-response-status | |
437 ((204 205) | |
438 ;; No new data, just stay at the same document | |
439 (url-mark-buffer-as-dead (current-buffer)) | |
440 (setq success t)) | |
441 (otherwise | |
442 ;; Generic success for all others. Store in the cache, and | |
443 ;; mark it as successful. | |
444 (widen) | |
60035
a39aff2f88c4
(url-http-parse-headers): Test url-automatic-caching.
Richard M. Stallman <rms@gnu.org>
parents:
59685
diff
changeset
|
445 (if (and url-automatic-caching (equal url-http-method "GET")) |
54695 | 446 (url-store-in-cache (current-buffer))) |
447 (setq success t)))) | |
448 (3 ; Redirection | |
449 ;; 300 Multiple choices | |
450 ;; 301 Moved permanently | |
451 ;; 302 Found | |
452 ;; 303 See other | |
453 ;; 304 Not modified | |
454 ;; 305 Use proxy | |
455 ;; 307 Temporary redirect | |
456 (let ((redirect-uri (or (mail-fetch-field "Location") | |
457 (mail-fetch-field "URI")))) | |
458 (case url-http-response-status | |
459 (300 | |
460 ;; Quoth the spec (section 10.3.1) | |
461 ;; ------------------------------- | |
462 ;; The requested resource corresponds to any one of a set of | |
463 ;; representations, each with its own specific location and | |
464 ;; agent-driven negotiation information is being provided so | |
465 ;; that the user can select a preferred representation and | |
466 ;; redirect its request to that location. | |
467 ;; [...] | |
468 ;; If the server has a preferred choice of representation, it | |
469 ;; SHOULD include the specific URI for that representation in | |
470 ;; the Location field; user agents MAY use the Location field | |
471 ;; value for automatic redirection. | |
472 ;; ------------------------------- | |
473 ;; We do not support agent-driven negotiation, so we just | |
474 ;; redirect to the preferred URI if one is provided. | |
475 nil) | |
476 ((301 302 307) | |
477 ;; If the 301|302 status code is received in response to a | |
478 ;; request other than GET or HEAD, the user agent MUST NOT | |
479 ;; automatically redirect the request unless it can be | |
480 ;; confirmed by the user, since this might change the | |
481 ;; conditions under which the request was issued. | |
482 (if (member url-http-method '("HEAD" "GET")) | |
483 ;; Automatic redirection is ok | |
484 nil | |
485 ;; It is just too big of a pain in the ass to get this | |
486 ;; prompt all the time. We will just silently lose our | |
487 ;; data and convert to a GET method. | |
488 (url-http-debug "Converting `%s' request to `GET' because of REDIRECT(%d)" | |
489 url-http-method url-http-response-status) | |
490 (setq url-http-method "GET" | |
59685
d980e03df4e4
(url-http-parse-headers): Reset url-http-data to nil,
Eli Zaretskii <eliz@gnu.org>
parents:
59326
diff
changeset
|
491 url-http-data nil))) |
54695 | 492 (303 |
493 ;; The response to the request can be found under a different | |
494 ;; URI and SHOULD be retrieved using a GET method on that | |
495 ;; resource. | |
496 (setq url-http-method "GET" | |
497 url-http-data nil)) | |
498 (304 | |
499 ;; The 304 response MUST NOT contain a message-body. | |
500 (url-http-debug "Extracting document from cache... (%s)" | |
501 (url-cache-create-filename (url-view-url t))) | |
502 (url-cache-extract (url-cache-create-filename (url-view-url t))) | |
503 (setq redirect-uri nil | |
504 success t)) | |
505 (305 | |
506 ;; The requested resource MUST be accessed through the | |
507 ;; proxy given by the Location field. The Location field | |
508 ;; gives the URI of the proxy. The recipient is expected | |
509 ;; to repeat this single request via the proxy. 305 | |
510 ;; responses MUST only be generated by origin servers. | |
511 (error "Redirection thru a proxy server not supported: %s" | |
512 redirect-uri)) | |
513 (otherwise | |
514 ;; Treat everything like '300' | |
515 nil)) | |
516 (when redirect-uri | |
517 ;; Clean off any whitespace and/or <...> cruft. | |
518 (if (string-match "\\([^ \t]+\\)[ \t]" redirect-uri) | |
519 (setq redirect-uri (match-string 1 redirect-uri))) | |
520 (if (string-match "^<\\(.*\\)>$" redirect-uri) | |
521 (setq redirect-uri (match-string 1 redirect-uri))) | |
522 | |
523 ;; Some stupid sites (like sourceforge) send a | |
524 ;; non-fully-qualified URL (ie: /), which royally confuses | |
525 ;; the URL library. | |
526 (if (not (string-match url-nonrelative-link redirect-uri)) | |
66990
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
527 ;; Be careful to use the real target URL, otherwise we may |
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
528 ;; compute the redirection relative to the URL of the proxy. |
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
529 (setq redirect-uri |
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
530 (url-expand-file-name redirect-uri url-http-target-url))) |
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
531 (let ((url-request-method url-http-method) |
54695 | 532 (url-request-data url-http-data) |
533 (url-request-extra-headers url-http-extra-headers)) | |
73501
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
534 ;; Remember that the request was redirected. |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
535 (setf (car url-callback-arguments) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
536 (nconc (list :redirect redirect-uri) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
537 (car url-callback-arguments))) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
538 ;; Put in the current buffer a forwarding pointer to the new |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
539 ;; destination buffer. |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
540 ;; FIXME: This is a hack to fix url-retrieve-synchronously |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
541 ;; without changing the API. Instead url-retrieve should |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
542 ;; either simply not return the "destination" buffer, or it |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
543 ;; should take an optional `dest-buf' argument. |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
544 (set (make-local-variable 'url-redirect-buffer) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
545 (url-retrieve-internal |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
546 redirect-uri url-callback-function |
73516
a4f1d5ea6dee
(url-http-parse-headers): Fix misplaced paren.
Magnus Henoch <mange@freemail.hu>
parents:
73501
diff
changeset
|
547 url-callback-arguments)) |
a4f1d5ea6dee
(url-http-parse-headers): Fix misplaced paren.
Magnus Henoch <mange@freemail.hu>
parents:
73501
diff
changeset
|
548 (url-mark-buffer-as-dead (current-buffer)))))) |
54695 | 549 (4 ; Client error |
550 ;; 400 Bad Request | |
551 ;; 401 Unauthorized | |
552 ;; 402 Payment required | |
553 ;; 403 Forbidden | |
554 ;; 404 Not found | |
555 ;; 405 Method not allowed | |
556 ;; 406 Not acceptable | |
557 ;; 407 Proxy authentication required | |
558 ;; 408 Request time-out | |
559 ;; 409 Conflict | |
560 ;; 410 Gone | |
561 ;; 411 Length required | |
562 ;; 412 Precondition failed | |
563 ;; 413 Request entity too large | |
564 ;; 414 Request-URI too large | |
565 ;; 415 Unsupported media type | |
566 ;; 416 Requested range not satisfiable | |
567 ;; 417 Expectation failed | |
568 ;; 422 Unprocessable Entity (Added by DAV) | |
569 ;; 423 Locked | |
570 ;; 424 Failed Dependency | |
571 (case url-http-response-status | |
572 (401 | |
573 ;; The request requires user authentication. The response | |
574 ;; MUST include a WWW-Authenticate header field containing a | |
575 ;; challenge applicable to the requested resource. The | |
576 ;; client MAY repeat the request with a suitable | |
577 ;; Authorization header field. | |
578 (url-http-handle-authentication nil)) | |
579 (402 | |
580 ;; This code is reserved for future use | |
581 (url-mark-buffer-as-dead (current-buffer)) | |
582 (error "Somebody wants you to give them money")) | |
583 (403 | |
584 ;; The server understood the request, but is refusing to | |
585 ;; fulfill it. Authorization will not help and the request | |
586 ;; SHOULD NOT be repeated. | |
587 (setq success t)) | |
588 (404 | |
589 ;; Not found | |
590 (setq success t)) | |
591 (405 | |
592 ;; The method specified in the Request-Line is not allowed | |
593 ;; for the resource identified by the Request-URI. The | |
594 ;; response MUST include an Allow header containing a list of | |
595 ;; valid methods for the requested resource. | |
596 (setq success t)) | |
597 (406 | |
598 ;; The resource identified by the request is only capable of | |
599 ;; generating response entities which have content | |
600 ;; characteristics nota cceptable according to the accept | |
601 ;; headers sent in the request. | |
602 (setq success t)) | |
603 (407 | |
604 ;; This code is similar to 401 (Unauthorized), but indicates | |
605 ;; that the client must first authenticate itself with the | |
606 ;; proxy. The proxy MUST return a Proxy-Authenticate header | |
607 ;; field containing a challenge applicable to the proxy for | |
608 ;; the requested resource. | |
609 (url-http-handle-authentication t)) | |
610 (408 | |
611 ;; The client did not produce a request within the time that | |
612 ;; the server was prepared to wait. The client MAY repeat | |
613 ;; the request without modifications at any later time. | |
614 (setq success t)) | |
615 (409 | |
616 ;; The request could not be completed due to a conflict with | |
617 ;; the current state of the resource. This code is only | |
618 ;; allowed in situations where it is expected that the user | |
619 ;; mioght be able to resolve the conflict and resubmit the | |
620 ;; request. The response body SHOULD include enough | |
621 ;; information for the user to recognize the source of the | |
622 ;; conflict. | |
623 (setq success t)) | |
624 (410 | |
625 ;; The requested resource is no longer available at the | |
626 ;; server and no forwarding address is known. | |
627 (setq success t)) | |
628 (411 | |
629 ;; The server refuses to accept the request without a defined | |
630 ;; Content-Length. The client MAY repeat the request if it | |
631 ;; adds a valid Content-Length header field containing the | |
632 ;; length of the message-body in the request message. | |
633 ;; | |
634 ;; NOTE - this will never happen because | |
635 ;; `url-http-create-request' automatically calculates the | |
636 ;; content-length. | |
637 (setq success t)) | |
638 (412 | |
639 ;; The precondition given in one or more of the | |
640 ;; request-header fields evaluated to false when it was | |
641 ;; tested on the server. | |
642 (setq success t)) | |
643 ((413 414) | |
644 ;; The server is refusing to process a request because the | |
645 ;; request entity|URI is larger than the server is willing or | |
646 ;; able to process. | |
647 (setq success t)) | |
648 (415 | |
649 ;; The server is refusing to service the request because the | |
650 ;; entity of the request is in a format not supported by the | |
651 ;; requested resource for the requested method. | |
652 (setq success t)) | |
653 (416 | |
654 ;; A server SHOULD return a response with this status code if | |
655 ;; a request included a Range request-header field, and none | |
656 ;; of the range-specifier values in this field overlap the | |
657 ;; current extent of the selected resource, and the request | |
658 ;; did not include an If-Range request-header field. | |
659 (setq success t)) | |
660 (417 | |
661 ;; The expectation given in an Expect request-header field | |
662 ;; could not be met by this server, or, if the server is a | |
663 ;; proxy, the server has unambiguous evidence that the | |
664 ;; request could not be met by the next-hop server. | |
665 (setq success t)) | |
666 (otherwise | |
667 ;; The request could not be understood by the server due to | |
668 ;; malformed syntax. The client SHOULD NOT repeat the | |
669 ;; request without modifications. | |
73501
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
670 (setq success t))) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
671 ;; Tell the callback that an error occurred, and what the |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
672 ;; status code was. |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
673 (when success |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
674 (setf (car url-callback-arguments) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
675 (nconc (list :error (list 'error 'http url-http-response-status)) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
676 (car url-callback-arguments))))) |
54695 | 677 (5 |
678 ;; 500 Internal server error | |
679 ;; 501 Not implemented | |
680 ;; 502 Bad gateway | |
681 ;; 503 Service unavailable | |
682 ;; 504 Gateway time-out | |
683 ;; 505 HTTP version not supported | |
684 ;; 507 Insufficient storage | |
685 (setq success t) | |
686 (case url-http-response-status | |
687 (501 | |
688 ;; The server does not support the functionality required to | |
689 ;; fulfill the request. | |
690 nil) | |
691 (502 | |
692 ;; The server, while acting as a gateway or proxy, received | |
693 ;; an invalid response from the upstream server it accessed | |
694 ;; in attempting to fulfill the request. | |
695 nil) | |
696 (503 | |
697 ;; The server is currently unable to handle the request due | |
698 ;; to a temporary overloading or maintenance of the server. | |
699 ;; The implication is that this is a temporary condition | |
700 ;; which will be alleviated after some delay. If known, the | |
701 ;; length of the delay MAY be indicated in a Retry-After | |
702 ;; header. If no Retry-After is given, the client SHOULD | |
703 ;; handle the response as it would for a 500 response. | |
704 nil) | |
705 (504 | |
706 ;; The server, while acting as a gateway or proxy, did not | |
707 ;; receive a timely response from the upstream server | |
708 ;; specified by the URI (e.g. HTTP, FTP, LDAP) or some other | |
709 ;; auxiliary server (e.g. DNS) it needed to access in | |
710 ;; attempting to complete the request. | |
711 nil) | |
712 (505 | |
713 ;; The server does not support, or refuses to support, the | |
714 ;; HTTP protocol version that was used in the request | |
715 ;; message. | |
716 nil) | |
717 (507 ; DAV | |
718 ;; The method could not be performed on the resource | |
719 ;; because the server is unable to store the representation | |
720 ;; needed to successfully complete the request. This | |
721 ;; condition is considered to be temporary. If the request | |
722 ;; which received this status code was the result of a user | |
723 ;; action, the request MUST NOT be repeated until it is | |
724 ;; requested by a separate user action. | |
73501
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
725 nil)) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
726 ;; Tell the callback that an error occurred, and what the |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
727 ;; status code was. |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
728 (when success |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
729 (setf (car url-callback-arguments) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
730 (nconc (list :error (list 'error 'http url-http-response-status)) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
731 (car url-callback-arguments))))) |
54695 | 732 (otherwise |
733 (error "Unknown class of HTTP response code: %d (%d)" | |
734 class url-http-response-status))) | |
735 (if (not success) | |
736 (url-mark-buffer-as-dead (current-buffer))) | |
737 (url-http-debug "Finished parsing HTTP headers: %S" success) | |
738 (widen) | |
739 success)) | |
740 | |
741 ;; Miscellaneous | |
742 (defun url-http-activate-callback () | |
743 "Activate callback specified when this buffer was created." | |
744 (declare (special url-http-process | |
745 url-callback-function | |
746 url-callback-arguments)) | |
747 (url-http-mark-connection-as-free (url-host url-current-object) | |
748 (url-port url-current-object) | |
749 url-http-process) | |
750 (url-http-debug "Activating callback in buffer (%s)" (buffer-name)) | |
751 (apply url-callback-function url-callback-arguments)) | |
752 | |
753 ;; ) | |
754 | |
755 ;; These unfortunately cannot be macros... please ignore them! | |
756 (defun url-http-idle-sentinel (proc why) | |
757 "Remove this (now defunct) process PROC from the list of open connections." | |
758 (maphash (lambda (key val) | |
759 (if (memq proc val) | |
760 (puthash key (delq proc val) url-http-open-connections))) | |
761 url-http-open-connections)) | |
762 | |
763 (defun url-http-end-of-document-sentinel (proc why) | |
764 ;; Sentinel used for old HTTP/0.9 or connections we know are going | |
765 ;; to die as the 'end of document' notifier. | |
766 (url-http-debug "url-http-end-of-document-sentinel in buffer (%s)" | |
767 (process-buffer proc)) | |
768 (url-http-idle-sentinel proc why) | |
66990
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
769 (with-current-buffer (process-buffer proc) |
54695 | 770 (goto-char (point-min)) |
771 (if (not (looking-at "HTTP/")) | |
772 ;; HTTP/0.9 just gets passed back no matter what | |
773 (url-http-activate-callback) | |
774 (if (url-http-parse-headers) | |
775 (url-http-activate-callback))))) | |
776 | |
777 (defun url-http-simple-after-change-function (st nd length) | |
778 ;; Function used when we do NOT know how long the document is going to be | |
779 ;; Just _very_ simple 'downloaded %d' type of info. | |
780 (declare (special url-http-end-of-headers)) | |
781 (url-lazy-message "Reading %s..." (url-pretty-length nd))) | |
782 | |
783 (defun url-http-content-length-after-change-function (st nd length) | |
784 "Function used when we DO know how long the document is going to be. | |
785 More sophisticated percentage downloaded, etc. | |
786 Also does minimal parsing of HTTP headers and will actually cause | |
787 the callback to be triggered." | |
788 (declare (special url-current-object | |
789 url-http-end-of-headers | |
790 url-http-content-length | |
791 url-http-content-type | |
792 url-http-process)) | |
793 (if url-http-content-type | |
794 (url-display-percentage | |
795 "Reading [%s]... %s of %s (%d%%)" | |
796 (url-percentage (- nd url-http-end-of-headers) | |
797 url-http-content-length) | |
798 url-http-content-type | |
799 (url-pretty-length (- nd url-http-end-of-headers)) | |
800 (url-pretty-length url-http-content-length) | |
801 (url-percentage (- nd url-http-end-of-headers) | |
802 url-http-content-length)) | |
803 (url-display-percentage | |
804 "Reading... %s of %s (%d%%)" | |
805 (url-percentage (- nd url-http-end-of-headers) | |
806 url-http-content-length) | |
807 (url-pretty-length (- nd url-http-end-of-headers)) | |
808 (url-pretty-length url-http-content-length) | |
809 (url-percentage (- nd url-http-end-of-headers) | |
810 url-http-content-length))) | |
811 | |
812 (if (> (- nd url-http-end-of-headers) url-http-content-length) | |
813 (progn | |
814 ;; Found the end of the document! Wheee! | |
815 (url-display-percentage nil nil) | |
816 (message "Reading... done.") | |
817 (if (url-http-parse-headers) | |
818 (url-http-activate-callback))))) | |
819 | |
820 (defun url-http-chunked-encoding-after-change-function (st nd length) | |
821 "Function used when dealing with 'chunked' encoding. | |
822 Cannot give a sophisticated percentage, but we need a different | |
823 function to look for the special 0-length chunk that signifies | |
824 the end of the document." | |
825 (declare (special url-current-object | |
826 url-http-end-of-headers | |
827 url-http-content-type | |
828 url-http-chunked-length | |
829 url-http-chunked-counter | |
830 url-http-process url-http-chunked-start)) | |
831 (save-excursion | |
832 (goto-char st) | |
833 (let ((read-next-chunk t) | |
834 (case-fold-search t) | |
835 (regexp nil) | |
836 (no-initial-crlf nil)) | |
837 ;; We need to loop thru looking for more chunks even within | |
838 ;; one after-change-function call. | |
839 (while read-next-chunk | |
840 (setq no-initial-crlf (= 0 url-http-chunked-counter)) | |
841 (if url-http-content-type | |
842 (url-display-percentage nil | |
843 "Reading [%s]... chunk #%d" | |
844 url-http-content-type url-http-chunked-counter) | |
845 (url-display-percentage nil | |
846 "Reading... chunk #%d" | |
847 url-http-chunked-counter)) | |
848 (url-http-debug "Reading chunk %d (%d %d %d)" | |
849 url-http-chunked-counter st nd length) | |
850 (setq regexp (if no-initial-crlf | |
851 "\\([0-9a-z]+\\).*\r?\n" | |
852 "\r?\n\\([0-9a-z]+\\).*\r?\n")) | |
853 | |
854 (if url-http-chunked-start | |
855 ;; We know how long the chunk is supposed to be, skip over | |
856 ;; leading crap if possible. | |
857 (if (> nd (+ url-http-chunked-start url-http-chunked-length)) | |
858 (progn | |
859 (url-http-debug "Got to the end of chunk #%d!" | |
860 url-http-chunked-counter) | |
861 (goto-char (+ url-http-chunked-start | |
862 url-http-chunked-length))) | |
863 (url-http-debug "Still need %d bytes to hit end of chunk" | |
864 (- (+ url-http-chunked-start | |
865 url-http-chunked-length) | |
866 nd)) | |
867 (setq read-next-chunk nil))) | |
868 (if (not read-next-chunk) | |
869 (url-http-debug "Still spinning for next chunk...") | |
870 (if no-initial-crlf (skip-chars-forward "\r\n")) | |
871 (if (not (looking-at regexp)) | |
872 (progn | |
873 ;; Must not have received the entirety of the chunk header, | |
874 ;; need to spin some more. | |
875 (url-http-debug "Did not see start of chunk @ %d!" (point)) | |
876 (setq read-next-chunk nil)) | |
877 (add-text-properties (match-beginning 0) (match-end 0) | |
878 (list 'start-open t | |
879 'end-open t | |
880 'chunked-encoding t | |
66225 | 881 'face 'cursor |
54695 | 882 'invisible t)) |
62400
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
60035
diff
changeset
|
883 (setq url-http-chunked-length (string-to-number (buffer-substring |
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
60035
diff
changeset
|
884 (match-beginning 1) |
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
60035
diff
changeset
|
885 (match-end 1)) |
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
60035
diff
changeset
|
886 16) |
54695 | 887 url-http-chunked-counter (1+ url-http-chunked-counter) |
888 url-http-chunked-start (set-marker | |
889 (or url-http-chunked-start | |
890 (make-marker)) | |
891 (match-end 0))) | |
892 ; (if (not url-http-debug) | |
893 (delete-region (match-beginning 0) (match-end 0));) | |
894 (url-http-debug "Saw start of chunk %d (length=%d, start=%d" | |
895 url-http-chunked-counter url-http-chunked-length | |
896 (marker-position url-http-chunked-start)) | |
897 (if (= 0 url-http-chunked-length) | |
898 (progn | |
899 ;; Found the end of the document! Wheee! | |
900 (url-http-debug "Saw end of stream chunk!") | |
901 (setq read-next-chunk nil) | |
902 (url-display-percentage nil nil) | |
903 (goto-char (match-end 1)) | |
904 (if (re-search-forward "^\r*$" nil t) | |
63000
a2b860ef5fde
(url-http-chunked-encoding-after-change-function): Use `url-http-debug'
Eli Zaretskii <eliz@gnu.org>
parents:
62999
diff
changeset
|
905 (url-http-debug "Saw end of trailers...")) |
54695 | 906 (if (url-http-parse-headers) |
907 (url-http-activate-callback)))))))))) | |
908 | |
909 (defun url-http-wait-for-headers-change-function (st nd length) | |
910 ;; This will wait for the headers to arrive and then splice in the | |
911 ;; next appropriate after-change-function, etc. | |
912 (declare (special url-current-object | |
913 url-http-end-of-headers | |
914 url-http-content-type | |
915 url-http-content-length | |
916 url-http-transfer-encoding | |
917 url-callback-function | |
918 url-callback-arguments | |
919 url-http-process | |
920 url-http-method | |
921 url-http-after-change-function | |
922 url-http-response-status)) | |
923 (url-http-debug "url-http-wait-for-headers-change-function (%s)" | |
924 (buffer-name)) | |
925 (if (not (bobp)) | |
926 (let ((end-of-headers nil) | |
927 (old-http nil) | |
928 (content-length nil)) | |
929 (goto-char (point-min)) | |
930 (if (not (looking-at "^HTTP/[1-9]\\.[0-9]")) | |
931 ;; Not HTTP/x.y data, must be 0.9 | |
932 ;; God, I wish this could die. | |
933 (setq end-of-headers t | |
934 url-http-end-of-headers 0 | |
935 old-http t) | |
936 (if (re-search-forward "^\r*$" nil t) | |
937 ;; Saw the end of the headers | |
938 (progn | |
939 (url-http-debug "Saw end of headers... (%s)" (buffer-name)) | |
940 (setq url-http-end-of-headers (set-marker (make-marker) | |
941 (point)) | |
942 end-of-headers t) | |
943 (url-http-clean-headers)))) | |
944 | |
945 (if (not end-of-headers) | |
946 ;; Haven't seen the end of the headers yet, need to wait | |
947 ;; for more data to arrive. | |
948 nil | |
949 (if old-http | |
950 (message "HTTP/0.9 How I hate thee!") | |
951 (progn | |
952 (url-http-parse-response) | |
953 (mail-narrow-to-head) | |
954 ;;(narrow-to-region (point-min) url-http-end-of-headers) | |
955 (setq url-http-transfer-encoding (mail-fetch-field | |
956 "transfer-encoding") | |
957 url-http-content-type (mail-fetch-field "content-type")) | |
958 (if (mail-fetch-field "content-length") | |
959 (setq url-http-content-length | |
62400
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
60035
diff
changeset
|
960 (string-to-number (mail-fetch-field "content-length")))) |
54695 | 961 (widen))) |
962 (if url-http-transfer-encoding | |
963 (setq url-http-transfer-encoding | |
964 (downcase url-http-transfer-encoding))) | |
965 | |
966 (cond | |
967 ((or (= url-http-response-status 204) | |
968 (= url-http-response-status 205)) | |
969 (url-http-debug "%d response must have headers only (%s)." | |
970 url-http-response-status (buffer-name)) | |
971 (if (url-http-parse-headers) | |
972 (url-http-activate-callback))) | |
973 ((string= "HEAD" url-http-method) | |
974 ;; A HEAD request is _ALWAYS_ terminated by the header | |
975 ;; information, regardless of any entity headers, | |
976 ;; according to section 4.4 of the HTTP/1.1 draft. | |
977 (url-http-debug "HEAD request must have headers only (%s)." | |
978 (buffer-name)) | |
979 (if (url-http-parse-headers) | |
980 (url-http-activate-callback))) | |
981 ((string= "CONNECT" url-http-method) | |
982 ;; A CONNECT request is finished, but we cannot stick this | |
983 ;; back on the free connectin list | |
984 (url-http-debug "CONNECT request must have headers only.") | |
985 (if (url-http-parse-headers) | |
986 (url-http-activate-callback))) | |
987 ((equal url-http-response-status 304) | |
988 ;; Only allowed to have a header section. We have to handle | |
989 ;; this here instead of in url-http-parse-headers because if | |
990 ;; you have a cached copy of something without a known | |
991 ;; content-length, and try to retrieve it from the cache, we'd | |
992 ;; fall into the 'being dumb' section and wait for the | |
993 ;; connection to terminate, which means we'd wait for 10 | |
994 ;; seconds for the keep-alives to time out on some servers. | |
995 (if (url-http-parse-headers) | |
996 (url-http-activate-callback))) | |
997 (old-http | |
998 ;; HTTP/0.9 always signaled end-of-connection by closing the | |
999 ;; connection. | |
1000 (url-http-debug | |
1001 "Saw HTTP/0.9 response, connection closed means end of document.") | |
1002 (setq url-http-after-change-function | |
1003 'url-http-simple-after-change-function)) | |
1004 ((equal url-http-transfer-encoding "chunked") | |
1005 (url-http-debug "Saw chunked encoding.") | |
1006 (setq url-http-after-change-function | |
1007 'url-http-chunked-encoding-after-change-function) | |
1008 (if (> nd url-http-end-of-headers) | |
1009 (progn | |
1010 (url-http-debug | |
1011 "Calling initial chunked-encoding for extra data at end of headers") | |
1012 (url-http-chunked-encoding-after-change-function | |
1013 (marker-position url-http-end-of-headers) nd | |
1014 (- nd url-http-end-of-headers))))) | |
1015 ((integerp url-http-content-length) | |
1016 (url-http-debug | |
1017 "Got a content-length, being smart about document end.") | |
1018 (setq url-http-after-change-function | |
1019 'url-http-content-length-after-change-function) | |
1020 (cond | |
1021 ((= 0 url-http-content-length) | |
1022 ;; We got a NULL body! Activate the callback | |
1023 ;; immediately! | |
1024 (url-http-debug | |
1025 "Got 0-length content-length, activating callback immediately.") | |
1026 (if (url-http-parse-headers) | |
1027 (url-http-activate-callback))) | |
1028 ((> nd url-http-end-of-headers) | |
1029 ;; Have some leftover data | |
1030 (url-http-debug "Calling initial content-length for extra data at end of headers") | |
1031 (url-http-content-length-after-change-function | |
1032 (marker-position url-http-end-of-headers) | |
1033 nd | |
1034 (- nd url-http-end-of-headers))) | |
1035 (t | |
1036 nil))) | |
1037 (t | |
1038 (url-http-debug "No content-length, being dumb.") | |
1039 (setq url-http-after-change-function | |
1040 'url-http-simple-after-change-function))))) | |
1041 ;; We are still at the beginning of the buffer... must just be | |
1042 ;; waiting for a response. | |
1043 (url-http-debug "Spinning waiting for headers...")) | |
1044 (goto-char (point-max))) | |
1045 | |
1046 ;;;###autoload | |
1047 (defun url-http (url callback cbargs) | |
1048 "Retrieve URL via HTTP asynchronously. | |
1049 URL must be a parsed URL. See `url-generic-parse-url' for details. | |
1050 When retrieval is completed, the function CALLBACK is executed with | |
1051 CBARGS as the arguments." | |
1052 (check-type url vector "Need a pre-parsed URL.") | |
1053 (declare (special url-current-object | |
1054 url-http-end-of-headers | |
1055 url-http-content-type | |
1056 url-http-content-length | |
1057 url-http-transfer-encoding | |
1058 url-http-after-change-function | |
1059 url-callback-function | |
1060 url-callback-arguments | |
1061 url-http-method | |
1062 url-http-extra-headers | |
1063 url-http-data | |
1064 url-http-chunked-length | |
1065 url-http-chunked-start | |
1066 url-http-chunked-counter | |
1067 url-http-process)) | |
1068 (let ((connection (url-http-find-free-connection (url-host url) | |
1069 (url-port url))) | |
1070 (buffer (generate-new-buffer (format " *http %s:%d*" | |
1071 (url-host url) | |
1072 (url-port url))))) | |
1073 (if (not connection) | |
1074 ;; Failed to open the connection for some reason | |
1075 (progn | |
1076 (kill-buffer buffer) | |
1077 (setq buffer nil) | |
1078 (error "Could not create connection to %s:%d" (url-host url) | |
1079 (url-port url))) | |
66990
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
1080 (with-current-buffer buffer |
54695 | 1081 (mm-disable-multibyte) |
1082 (setq url-current-object url | |
1083 mode-line-format "%b [%s]") | |
1084 | |
1085 (dolist (var '(url-http-end-of-headers | |
1086 url-http-content-type | |
1087 url-http-content-length | |
1088 url-http-transfer-encoding | |
1089 url-http-after-change-function | |
1090 url-http-response-status | |
1091 url-http-chunked-length | |
1092 url-http-chunked-counter | |
1093 url-http-chunked-start | |
1094 url-callback-function | |
1095 url-callback-arguments | |
1096 url-http-process | |
1097 url-http-method | |
1098 url-http-extra-headers | |
58686
2d413ef5bfec
(url-http-handle-cookies): Bind `url-current-object'
Andreas Schwab <schwab@suse.de>
parents:
58606
diff
changeset
|
1099 url-http-data |
66990
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
1100 url-http-target-url)) |
54695 | 1101 (set (make-local-variable var) nil)) |
1102 | |
1103 (setq url-http-method (or url-request-method "GET") | |
1104 url-http-extra-headers url-request-extra-headers | |
1105 url-http-data url-request-data | |
1106 url-http-process connection | |
1107 url-http-chunked-length nil | |
1108 url-http-chunked-start nil | |
1109 url-http-chunked-counter 0 | |
1110 url-callback-function callback | |
1111 url-callback-arguments cbargs | |
58686
2d413ef5bfec
(url-http-handle-cookies): Bind `url-current-object'
Andreas Schwab <schwab@suse.de>
parents:
58606
diff
changeset
|
1112 url-http-after-change-function 'url-http-wait-for-headers-change-function |
66990
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
1113 url-http-target-url (if (boundp 'proxy-object) |
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
1114 proxy-object |
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
1115 url-current-object)) |
54695 | 1116 |
1117 (set-process-buffer connection buffer) | |
1118 (set-process-filter connection 'url-http-generic-filter) | |
73501
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1119 (let ((status (process-status connection))) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1120 (cond |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1121 ((eq status 'connect) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1122 ;; Asynchronous connection |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1123 (set-process-sentinel connection 'url-http-async-sentinel)) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1124 ((eq status 'failed) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1125 ;; Asynchronous connection failed |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1126 (error "Could not create connection to %s:%d" (url-host url) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1127 (url-port url))) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1128 (t |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1129 (set-process-sentinel connection 'url-http-end-of-document-sentinel) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1130 (process-send-string connection (url-http-create-request url))))))) |
54695 | 1131 buffer)) |
1132 | |
73501
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1133 (defun url-http-async-sentinel (proc why) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1134 (declare (special url-callback-arguments)) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1135 ;; We are performing an asynchronous connection, and a status change |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1136 ;; has occurred. |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1137 (with-current-buffer (process-buffer proc) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1138 (cond |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1139 ((string= (substring why 0 4) "open") |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1140 (set-process-sentinel proc 'url-http-end-of-document-sentinel) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1141 (process-send-string proc (url-http-create-request url-current-object))) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1142 (t |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1143 (setf (car url-callback-arguments) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1144 (nconc (list :error (list 'error 'connection-failed why |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1145 :host (url-host url-current-object) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1146 :service (url-port url-current-object))) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1147 (car url-callback-arguments))) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1148 (url-http-activate-callback))))) |
437fb645afb4
* url-http.el (url-http-mark-connection-as-free): Verify that
Chong Yidong <cyd@stupidchicken.com>
parents:
73390
diff
changeset
|
1149 |
54695 | 1150 ;; Since Emacs 19/20 does not allow you to change the |
1151 ;; `after-change-functions' hook in the midst of running them, we fake | |
1152 ;; an after change by hooking into the process filter and inserting | |
1153 ;; the data ourselves. This is slightly less efficient, but there | |
1154 ;; were tons of weird ways the after-change code was biting us in the | |
1155 ;; shorts. | |
1156 (defun url-http-generic-filter (proc data) | |
1157 ;; Sometimes we get a zero-length data chunk after the process has | |
1158 ;; been changed to 'free', which means it has no buffer associated | |
1159 ;; with it. Do nothing if there is no buffer, or 0 length data. | |
1160 (declare (special url-http-after-change-function)) | |
1161 (and (process-buffer proc) | |
1162 (/= (length data) 0) | |
66990
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
1163 (with-current-buffer (process-buffer proc) |
54695 | 1164 (url-http-debug "Calling after change function `%s' for `%S'" url-http-after-change-function proc) |
1165 (funcall url-http-after-change-function | |
1166 (point-max) | |
1167 (progn | |
1168 (goto-char (point-max)) | |
1169 (insert data) | |
1170 (point-max)) | |
1171 (length data))))) | |
1172 | |
1173 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
1174 ;;; file-name-handler stuff from here on out | |
1175 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
69296
64b44b996827
(url-http-find-free-connection): Don't kill the process
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69054
diff
changeset
|
1176 (defalias 'url-http-symbol-value-in-buffer |
64b44b996827
(url-http-find-free-connection): Don't kill the process
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69054
diff
changeset
|
1177 (if (fboundp 'symbol-value-in-buffer) |
64b44b996827
(url-http-find-free-connection): Don't kill the process
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69054
diff
changeset
|
1178 'symbol-value-in-buffer |
64b44b996827
(url-http-find-free-connection): Don't kill the process
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69054
diff
changeset
|
1179 (lambda (symbol buffer &optional unbound-value) |
54695 | 1180 "Return the value of SYMBOL in BUFFER, or UNBOUND-VALUE if it is unbound." |
66990
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
1181 (with-current-buffer buffer |
69296
64b44b996827
(url-http-find-free-connection): Don't kill the process
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69054
diff
changeset
|
1182 (if (not (boundp symbol)) |
64b44b996827
(url-http-find-free-connection): Don't kill the process
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69054
diff
changeset
|
1183 unbound-value |
64b44b996827
(url-http-find-free-connection): Don't kill the process
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
69054
diff
changeset
|
1184 (symbol-value symbol)))))) |
54695 | 1185 |
1186 (defun url-http-head (url) | |
1187 (let ((url-request-method "HEAD") | |
1188 (url-request-data nil)) | |
1189 (url-retrieve-synchronously url))) | |
1190 | |
1191 ;;;###autoload | |
1192 (defun url-http-file-exists-p (url) | |
54830
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
1193 (let ((status nil) |
54695 | 1194 (exists nil) |
1195 (buffer (url-http-head url))) | |
1196 (if (not buffer) | |
1197 (setq exists nil) | |
1198 (setq status (url-http-symbol-value-in-buffer 'url-http-response-status | |
1199 buffer 500) | |
70606
13e99595c0ba
(url-http-file-exists-p): Test if status is integer.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70396
diff
changeset
|
1200 exists (and (integerp status) |
13e99595c0ba
(url-http-file-exists-p): Test if status is integer.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70396
diff
changeset
|
1201 (>= status 200) (< status 300))) |
54695 | 1202 (kill-buffer buffer)) |
1203 exists)) | |
1204 | |
1205 ;;;###autoload | |
1206 (defalias 'url-http-file-readable-p 'url-http-file-exists-p) | |
1207 | |
54932
fd6856033c18
(url-http-head-file-attributes, url-http-file-attributes):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54830
diff
changeset
|
1208 (defun url-http-head-file-attributes (url &optional id-format) |
73022
aafdfc34b06a
(url-http-head-file-attributes): Add device "info".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72590
diff
changeset
|
1209 (let ((buffer (url-http-head url))) |
54695 | 1210 (when buffer |
73022
aafdfc34b06a
(url-http-head-file-attributes): Add device "info".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72590
diff
changeset
|
1211 (prog1 |
aafdfc34b06a
(url-http-head-file-attributes): Add device "info".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72590
diff
changeset
|
1212 (list |
aafdfc34b06a
(url-http-head-file-attributes): Add device "info".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72590
diff
changeset
|
1213 nil ;dir / link / normal file |
aafdfc34b06a
(url-http-head-file-attributes): Add device "info".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72590
diff
changeset
|
1214 1 ;number of links to file. |
aafdfc34b06a
(url-http-head-file-attributes): Add device "info".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72590
diff
changeset
|
1215 0 0 ;uid ; gid |
aafdfc34b06a
(url-http-head-file-attributes): Add device "info".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72590
diff
changeset
|
1216 nil nil nil ;atime ; mtime ; ctime |
aafdfc34b06a
(url-http-head-file-attributes): Add device "info".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72590
diff
changeset
|
1217 (url-http-symbol-value-in-buffer 'url-http-content-length |
aafdfc34b06a
(url-http-head-file-attributes): Add device "info".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72590
diff
changeset
|
1218 buffer -1) |
aafdfc34b06a
(url-http-head-file-attributes): Add device "info".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72590
diff
changeset
|
1219 (eval-when-compile (make-string 10 ?-)) |
aafdfc34b06a
(url-http-head-file-attributes): Add device "info".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72590
diff
changeset
|
1220 nil nil nil) ;whether gid would change ; inode ; device. |
aafdfc34b06a
(url-http-head-file-attributes): Add device "info".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
72590
diff
changeset
|
1221 (kill-buffer buffer))))) |
54695 | 1222 |
1223 ;;;###autoload | |
54932
fd6856033c18
(url-http-head-file-attributes, url-http-file-attributes):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54830
diff
changeset
|
1224 (defun url-http-file-attributes (url &optional id-format) |
54695 | 1225 (if (url-dav-supported-p url) |
54932
fd6856033c18
(url-http-head-file-attributes, url-http-file-attributes):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54830
diff
changeset
|
1226 (url-dav-file-attributes url id-format) |
fd6856033c18
(url-http-head-file-attributes, url-http-file-attributes):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54830
diff
changeset
|
1227 (url-http-head-file-attributes url id-format))) |
54695 | 1228 |
1229 ;;;###autoload | |
1230 (defun url-http-options (url) | |
69043
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
1231 "Return a property list describing options available for URL. |
54695 | 1232 This list is retrieved using the `OPTIONS' HTTP method. |
1233 | |
1234 Property list members: | |
1235 | |
1236 methods | |
1237 A list of symbols specifying what HTTP methods the resource | |
1238 supports. | |
1239 | |
1240 dav | |
1241 A list of numbers specifying what DAV protocol/schema versions are | |
1242 supported. | |
1243 | |
1244 dasl | |
1245 A list of supported DASL search types supported (string form) | |
1246 | |
1247 ranges | |
1248 A list of the units available for use in partial document fetches. | |
1249 | |
1250 p3p | |
1251 The `Platform For Privacy Protection' description for the resource. | |
1252 Currently this is just the raw header contents. This is likely to | |
1253 change once P3P is formally supported by the URL package or | |
69043
9ba40a61ae5b
Require `url' rather than try to autoload parts of it.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68640
diff
changeset
|
1254 Emacs/W3." |
54695 | 1255 (let* ((url-request-method "OPTIONS") |
1256 (url-request-data nil) | |
1257 (buffer (url-retrieve-synchronously url)) | |
1258 (header nil) | |
1259 (options nil)) | |
1260 (when (and buffer (= 2 (/ (url-http-symbol-value-in-buffer | |
1261 'url-http-response-status buffer 0) 100))) | |
1262 ;; Only parse the options if we got a 2xx response code! | |
66990
7b94c70f4e78
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
66225
diff
changeset
|
1263 (with-current-buffer buffer |
54695 | 1264 (save-restriction |
1265 (save-match-data | |
1266 (mail-narrow-to-head) | |
1267 | |
1268 ;; Figure out what methods are supported. | |
1269 (when (setq header (mail-fetch-field "allow")) | |
1270 (setq options (plist-put | |
1271 options 'methods | |
1272 (mapcar 'intern (split-string header "[ ,]+"))))) | |
1273 | |
1274 ;; Check for DAV | |
1275 (when (setq header (mail-fetch-field "dav")) | |
1276 (setq options (plist-put | |
1277 options 'dav | |
1278 (delq 0 | |
1279 (mapcar 'string-to-number | |
1280 (split-string header "[, ]+")))))) | |
1281 | |
1282 ;; Now for DASL | |
1283 (when (setq header (mail-fetch-field "dasl")) | |
1284 (setq options (plist-put | |
1285 options 'dasl | |
1286 (split-string header "[, ]+")))) | |
1287 | |
1288 ;; P3P - should get more detailed here. FIXME | |
1289 (when (setq header (mail-fetch-field "p3p")) | |
1290 (setq options (plist-put options 'p3p header))) | |
1291 | |
1292 ;; Check for whether they accept byte-range requests. | |
1293 (when (setq header (mail-fetch-field "accept-ranges")) | |
1294 (setq options (plist-put | |
1295 options 'ranges | |
1296 (delq 'none | |
1297 (mapcar 'intern | |
1298 (split-string header "[, ]+")))))) | |
1299 )))) | |
1300 (if buffer (kill-buffer buffer)) | |
1301 options)) | |
1302 | |
73336
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1303 ;; HTTPS. This used to be in url-https.el, but that file collides |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1304 ;; with url-http.el on systems with 8-character file names. |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1305 (require 'tls) |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1306 |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1307 ;;;###autoload |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1308 (defconst url-https-default-port 443 "Default HTTPS port.") |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1309 ;;;###autoload |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1310 (defconst url-https-asynchronous-p t "HTTPS retrievals are asynchronous.") |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1311 ;;;###autoload |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1312 (defalias 'url-https-expand-file-name 'url-http-expand-file-name) |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1313 |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1314 (defmacro url-https-create-secure-wrapper (method args) |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1315 `(defun ,(intern (format (if method "url-https-%s" "url-https") method)) ,args |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1316 ,(format "HTTPS wrapper around `%s' call." (or method "url-http")) |
73390
3289ed0d2f0c
(url-https-create-secure-wrapper): Always use tls gateway method.
Magnus Henoch <mange@freemail.hu>
parents:
73347
diff
changeset
|
1317 (let ((url-gateway-method 'tls)) |
73336
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1318 (,(intern (format (if method "url-http-%s" "url-http") method)) |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1319 ,@(remove '&rest (remove '&optional args)))))) |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1320 |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1321 ;;;###autoload (autoload 'url-https "url-http") |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1322 (url-https-create-secure-wrapper nil (url callback cbargs)) |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1323 ;;;###autoload (autoload 'url-https-file-exists-p "url-http") |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1324 (url-https-create-secure-wrapper file-exists-p (url)) |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1325 ;;;###autoload (autoload 'url-https-file-readable-p "url-http") |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1326 (url-https-create-secure-wrapper file-readable-p (url)) |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1327 ;;;###autoload (autoload 'url-https-file-attributes "url-http") |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1328 (url-https-create-secure-wrapper file-attributes (url &optional id-format)) |
2d470bed887d
url-https.el: Remove (clashes with url-http on 8+3 systems).
Magnus Henoch <mange@freemail.hu>
parents:
73022
diff
changeset
|
1329 |
54695 | 1330 (provide 'url-http) |
1331 | |
54830
ccfdda7b76d2
(url-http-parse-headers, url-http-file-exists-p): Remove unused var `version'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
1332 ;; arch-tag: ba7c59ae-c0f4-4a31-9617-d85f221732ee |
54695 | 1333 ;;; url-http.el ends here |