1 ;;; url-http.el --- HTTP retrieval routines
3 ;; Copyright (C) 1999, 2001, 2004, 2005, 2006, 2007, 2008,
4 ;; 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: Bill Perry <wmperry@gnu.org>
7 ;; Keywords: comm, data, processes
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 (eval-when-compile (require 'cl
))
29 (defvar url-http-extra-headers
)
30 (defvar url-http-target-url
)
31 (defvar url-http-proxy
)
32 (defvar url-http-connection-opened
)
40 (autoload 'url-cache-create-filename
"url-cache")
42 (defconst url-http-default-port
80 "Default HTTP port.")
43 (defconst url-http-asynchronous-p t
"HTTP retrievals are asynchronous.")
44 (defalias 'url-http-expand-file-name
'url-default-expander
)
46 (defvar url-http-real-basic-auth-storage nil
)
47 (defvar url-http-proxy-basic-auth-storage nil
)
49 (defvar url-http-open-connections
(make-hash-table :test
'equal
51 "A hash table of all open network connections.")
53 (defvar url-http-version
"1.1"
54 "What version of HTTP we advertise, as a string.
55 Valid values are 1.1 and 1.0.
56 This is only useful when debugging the HTTP subsystem.
58 Setting this to 1.0 will tell servers not to send chunked encoding,
59 and other HTTP/1.1 specific features.")
61 (defvar url-http-attempt-keepalives t
62 "Whether to use a single TCP connection multiple times in HTTP.
63 This is only useful when debugging the HTTP subsystem. Setting to
64 nil will explicitly close the connection to the server after every
67 (defconst url-http-codes
68 '((100 continue
"Continue with request")
69 (101 switching-protocols
"Switching protocols")
70 (102 processing
"Processing (Added by DAV)")
72 (201 created
"Created")
73 (202 accepted
"Accepted")
74 (203 non-authoritative
"Non-authoritative information")
75 (204 no-content
"No content")
76 (205 reset-content
"Reset content")
77 (206 partial-content
"Partial content")
78 (207 multi-status
"Multi-status (Added by DAV)")
79 (300 multiple-choices
"Multiple choices")
80 (301 moved-permanently
"Moved permanently")
82 (303 see-other
"See other")
83 (304 not-modified
"Not modified")
84 (305 use-proxy
"Use proxy")
85 (307 temporary-redirect
"Temporary redirect")
86 (400 bad-request
"Bad Request")
87 (401 unauthorized
"Unauthorized")
88 (402 payment-required
"Payment required")
89 (403 forbidden
"Forbidden")
90 (404 not-found
"Not found")
91 (405 method-not-allowed
"Method not allowed")
92 (406 not-acceptable
"Not acceptable")
93 (407 proxy-authentication-required
"Proxy authentication required")
94 (408 request-timeout
"Request time-out")
95 (409 conflict
"Conflict")
97 (411 length-required
"Length required")
98 (412 precondition-failed
"Precondition failed")
99 (413 request-entity-too-large
"Request entity too large")
100 (414 request-uri-too-large
"Request-URI too large")
101 (415 unsupported-media-type
"Unsupported media type")
102 (416 requested-range-not-satisfiable
"Requested range not satisfiable")
103 (417 expectation-failed
"Expectation failed")
104 (422 unprocessable-entity
"Unprocessable Entity (Added by DAV)")
105 (423 locked
"Locked")
106 (424 failed-Dependency
"Failed Dependency")
107 (500 internal-server-error
"Internal server error")
108 (501 not-implemented
"Not implemented")
109 (502 bad-gateway
"Bad gateway")
110 (503 service-unavailable
"Service unavailable")
111 (504 gateway-timeout
"Gateway time-out")
112 (505 http-version-not-supported
"HTTP version not supported")
113 (507 insufficient-storage
"Insufficient storage")
114 "The HTTP return codes and their text."))
117 ;; These are all macros so that they are hidden from external sight
118 ;; when the file is byte-compiled.
120 ;; This allows us to expose just the entry points we want.
122 ;; These routines will allow us to implement persistent HTTP
124 (defsubst url-http-debug
(&rest args
)
126 (let ((proc (get-buffer-process (current-buffer))))
127 ;; The user hit C-g, honor it! Some things can get in an
128 ;; incredibly tight loop (chunked encoding)
131 (set-process-sentinel proc nil
)
132 (set-process-filter proc nil
)))
133 (error "Transfer interrupted!")))
134 (apply 'url-debug
'http args
))
136 (defun url-http-mark-connection-as-busy (host port proc
)
137 (url-http-debug "Marking connection as busy: %s:%d %S" host port proc
)
138 (set-process-query-on-exit-flag proc t
)
139 (puthash (cons host port
)
140 (delq proc
(gethash (cons host port
) url-http-open-connections
))
141 url-http-open-connections
)
144 (defun url-http-mark-connection-as-free (host port proc
)
145 (url-http-debug "Marking connection as free: %s:%d %S" host port proc
)
146 (when (memq (process-status proc
) '(open run connect
))
147 (set-process-buffer proc nil
)
148 (set-process-sentinel proc
'url-http-idle-sentinel
)
149 (set-process-query-on-exit-flag proc nil
)
150 (puthash (cons host port
)
151 (cons proc
(gethash (cons host port
) url-http-open-connections
))
152 url-http-open-connections
))
155 (defun url-http-find-free-connection (host port
)
156 (let ((conns (gethash (cons host port
) url-http-open-connections
))
158 (while (and conns
(not found
))
159 (if (not (memq (process-status (car conns
)) '(run open connect
)))
161 (url-http-debug "Cleaning up dead process: %s:%d %S"
162 host port
(car conns
))
163 (url-http-idle-sentinel (car conns
) nil
))
164 (setq found
(car conns
))
165 (url-http-debug "Found existing connection: %s:%d %S" host port found
))
168 (url-http-debug "Reusing existing connection: %s:%d" host port
)
169 (url-http-debug "Contacting host: %s:%d" host port
))
170 (url-lazy-message "Contacting host: %s:%d" host port
)
171 (url-http-mark-connection-as-busy
174 (let ((buf (generate-new-buffer " *url-http-temp*")))
175 ;; `url-open-stream' needs a buffer in which to do things
176 ;; like authentication. But we use another buffer afterwards.
178 (let ((proc (url-open-stream host buf host port
)))
179 ;; url-open-stream might return nil.
180 (when (processp proc
)
181 ;; Drop the temp buffer link before killing the buffer.
182 (set-process-buffer proc nil
))
184 (kill-buffer buf
)))))))
186 ;; Building an HTTP request
187 (defun url-http-user-agent-string ()
188 (if (or (eq url-privacy-level
'paranoid
)
189 (and (listp url-privacy-level
)
190 (memq 'agent url-privacy-level
)))
192 (format "User-Agent: %sURL/%s%s\r\n"
194 (concat url-package-name
"/" url-package-version
" ")
198 ((and url-os-type url-system-type
)
199 (concat " (" url-os-type
"; " url-system-type
")"))
200 ((or url-os-type url-system-type
)
201 (concat " (" (or url-system-type url-os-type
) ")"))
204 (defun url-http-create-request (&optional ref-url
)
205 "Create an HTTP request for `url-http-target-url', referred to by REF-URL."
206 (declare (special proxy-info
207 url-http-method url-http-data
208 url-http-extra-headers
))
209 (let* ((extra-headers)
211 (no-cache (cdr-safe (assoc "Pragma" url-http-extra-headers
)))
212 (using-proxy url-http-proxy
)
213 (proxy-auth (if (or (cdr-safe (assoc "Proxy-Authorization"
214 url-http-extra-headers
))
217 (let ((url-basic-auth-storage
218 'url-http-proxy-basic-auth-storage
))
219 (url-get-authentication url-http-target-url nil
'any nil
))))
220 (real-fname (concat (url-filename url-http-target-url
)
221 (url-recreate-url-attributes url-http-target-url
)))
222 (host (url-host url-http-target-url
))
223 (auth (if (cdr-safe (assoc "Authorization" url-http-extra-headers
))
225 (url-get-authentication (or
226 (and (boundp 'proxy-info
)
228 url-http-target-url
) nil
'any nil
))))
229 (if (equal "" real-fname
)
230 (setq real-fname
"/"))
231 (setq no-cache
(and no-cache
(string-match "no-cache" no-cache
)))
233 (setq auth
(concat "Authorization: " auth
"\r\n")))
235 (setq proxy-auth
(concat "Proxy-Authorization: " proxy-auth
"\r\n")))
237 ;; Protection against stupid values in the referer
238 (if (and ref-url
(stringp ref-url
) (or (string= ref-url
"file:nil")
239 (string= ref-url
"")))
242 ;; We do not want to expose the referer if the user is paranoid.
243 (if (or (memq url-privacy-level
'(low high paranoid
))
244 (and (listp url-privacy-level
)
245 (memq 'lastloc url-privacy-level
)))
248 ;; url-http-extra-headers contains an assoc-list of
249 ;; header/value pairs that we need to put into the request.
250 (setq extra-headers
(mapconcat
252 (concat (car x
) ": " (cdr x
)))
253 url-http-extra-headers
"\r\n"))
254 (if (not (equal extra-headers
""))
255 (setq extra-headers
(concat extra-headers
"\r\n")))
257 ;; This was done with a call to `format'. Concatting parts has
258 ;; the advantage of keeping the parts of each header together and
259 ;; allows us to elide null lines directly, at the cost of making
260 ;; the layout less clear.
262 ;; We used to concat directly, but if one of the strings happens
263 ;; to being multibyte (even if it only contains pure ASCII) then
264 ;; every string gets converted with `string-MAKE-multibyte' which
265 ;; turns the 127-255 codes into things like latin-1 accented chars
266 ;; (it would work right if it used `string-TO-multibyte' instead).
267 ;; So to avoid the problem we force every string to be unibyte.
269 ;; FIXME: Instead of `string-AS-unibyte' we'd want
270 ;; `string-to-unibyte', so as to properly signal an error if one
271 ;; of the strings contains a multibyte char.
276 (or url-http-method
"GET") " "
277 (if using-proxy
(url-recreate-url url-http-target-url
) real-fname
)
278 " HTTP/" url-http-version
"\r\n"
279 ;; Version of MIME we speak
280 "MIME-Version: 1.0\r\n"
281 ;; (maybe) Try to keep the connection open
282 "Connection: " (if (or using-proxy
283 (not url-http-attempt-keepalives
))
284 "close" "keep-alive") "\r\n"
285 ;; HTTP extensions we support
286 (if url-extensions-header
288 "Extension: %s\r\n" url-extensions-header
))
289 ;; Who we want to talk to
290 (if (/= (url-port url-http-target-url
)
291 (url-scheme-get-property
292 (url-type url-http-target-url
) 'default-port
))
294 "Host: %s:%d\r\n" host
(url-port url-http-target-url
))
295 (format "Host: %s\r\n" host
))
297 (if url-personal-mail-address
299 "From: " url-personal-mail-address
"\r\n"))
300 ;; Encodings we understand
301 (if url-mime-encoding-string
303 "Accept-encoding: " url-mime-encoding-string
"\r\n"))
304 (if url-mime-charset-string
306 "Accept-charset: " url-mime-charset-string
"\r\n"))
307 ;; Languages we understand
308 (if url-mime-language-string
310 "Accept-language: " url-mime-language-string
"\r\n"))
311 ;; Types we understand
312 "Accept: " (or url-mime-accept-string
"*/*") "\r\n"
314 (url-http-user-agent-string)
315 ;; Proxy Authorization
320 (url-cookie-generate-header-lines host real-fname
321 (equal "https" (url-type url-http-target-url
)))
323 (if (and (not no-cache
)
324 (member url-http-method
'("GET" nil
)))
325 (let ((tm (url-is-cached url-http-target-url
)))
327 (concat "If-modified-since: "
328 (url-get-normalized-date tm
) "\r\n"))))
331 "Referer: " ref-url
"\r\n"))
336 "Content-length: " (number-to-string
337 (length url-http-data
))
344 (url-http-debug "Request is: \n%s" request
)
348 (defun url-http-clean-headers ()
349 "Remove trailing \r from header lines.
350 This allows us to use `mail-fetch-field', etc."
351 (declare (special url-http-end-of-headers
))
352 (goto-char (point-min))
353 (while (re-search-forward "\r$" url-http-end-of-headers t
)
356 (defun url-http-handle-authentication (proxy)
357 (declare (special status success url-http-method url-http-data
358 url-callback-function url-callback-arguments
))
359 (url-http-debug "Handling %s authentication" (if proxy
"proxy" "normal"))
360 (let ((auths (or (nreverse
362 (if proxy
"proxy-authenticate" "www-authenticate")
366 (url (url-recreate-url url-current-object
))
367 (auth-url (url-recreate-url
368 (if (and proxy
(boundp 'url-http-proxy
))
370 url-current-object
)))
371 (url-basic-auth-storage (if proxy
372 ;; Cheating, but who cares? :)
373 'url-http-proxy-basic-auth-storage
374 'url-http-real-basic-auth-storage
))
378 ;; find strongest supported auth
379 (dolist (this-auth auths
)
380 (setq this-auth
(url-eat-trailing-space
381 (url-strip-leading-spaces
384 (if (string-match "[ \t]" this-auth
)
385 (downcase (substring this-auth
0 (match-beginning 0)))
386 (downcase this-auth
)))
387 (registered (url-auth-registered this-type
))
388 (this-strength (cddr registered
)))
389 (when (and registered
(> this-strength strength
))
392 strength this-strength
))))
394 (if (not (url-auth-registered type
))
397 (goto-char (point-max))
398 (insert "<hr>Sorry, but I do not know how to handle " type
399 " authentication. If you'd like to write it,"
400 " send it to " url-bug-address
".<hr>")
402 (let* ((args (url-parse-args (subst-char-in-string ?
, ?\
; auth)))
403 (auth (url-get-authentication auth-url
404 (cdr-safe (assoc "realm" args
))
408 (push (cons (if proxy
"Proxy-Authorization" "Authorization") auth
)
409 url-http-extra-headers
)
410 (let ((url-request-method url-http-method
)
411 (url-request-data url-http-data
)
412 (url-request-extra-headers url-http-extra-headers
))
413 (url-retrieve-internal url url-callback-function
414 url-callback-arguments
)))))))
416 (defun url-http-parse-response ()
417 "Parse just the response code."
418 (declare (special url-http-end-of-headers url-http-response-status
419 url-http-response-version
))
420 (if (not url-http-end-of-headers
)
421 (error "Trying to parse HTTP response code in odd buffer: %s" (buffer-name)))
422 (url-http-debug "url-http-parse-response called in (%s)" (buffer-name))
423 (goto-char (point-min))
424 (skip-chars-forward " \t\n") ; Skip any blank crap
425 (skip-chars-forward "HTTP/") ; Skip HTTP Version
426 (setq url-http-response-version
427 (buffer-substring (point)
429 (skip-chars-forward "[0-9].")
431 (setq url-http-response-status
(read (current-buffer))))
433 (defun url-http-handle-cookies ()
434 "Handle all set-cookie / set-cookie2 headers in an HTTP response.
435 The buffer must already be narrowed to the headers, so `mail-fetch-field' will
437 (let ((cookies (nreverse (mail-fetch-field "Set-Cookie" nil nil t
)))
438 (cookies2 (nreverse (mail-fetch-field "Set-Cookie2" nil nil t
))))
439 (and cookies
(url-http-debug "Found %d Set-Cookie headers" (length cookies
)))
440 (and cookies2
(url-http-debug "Found %d Set-Cookie2 headers" (length cookies2
)))
442 (url-cookie-handle-set-cookie (pop cookies
)))
444 ;;; (url-cookie-handle-set-cookie2 (pop cookies)))
448 (defun url-http-parse-headers ()
449 "Parse and handle HTTP specific headers.
450 Return t if and only if the current buffer is still active and
451 should be shown to the user."
452 ;; The comments after each status code handled are taken from RFC
454 (declare (special url-http-end-of-headers url-http-response-status
455 url-http-response-version
456 url-http-method url-http-data url-http-process
457 url-callback-function url-callback-arguments
))
459 (url-http-mark-connection-as-free (url-host url-current-object
)
460 (url-port url-current-object
)
463 (if (or (not (boundp 'url-http-end-of-headers
))
464 (not url-http-end-of-headers
))
465 (error "Trying to parse headers in odd buffer: %s" (buffer-name)))
466 (goto-char (point-min))
467 (url-http-debug "url-http-parse-headers called in (%s)" (buffer-name))
468 (url-http-parse-response)
469 (mail-narrow-to-head)
470 ;;(narrow-to-region (point-min) url-http-end-of-headers)
471 (let ((connection (mail-fetch-field "Connection")))
472 ;; In HTTP 1.0, keep the connection only if there is a
473 ;; "Connection: keep-alive" header.
474 ;; In HTTP 1.1 (and greater), keep the connection unless there is a
475 ;; "Connection: close" header
477 ((string= url-http-response-version
"1.0")
478 (unless (and connection
479 (string= (downcase connection
) "keep-alive"))
480 (delete-process url-http-process
)))
482 (when (and connection
483 (string= (downcase connection
) "close"))
484 (delete-process url-http-process
)))))
485 (let ((buffer (current-buffer))
488 ;; other status symbols: jewelry and luxury cars
489 (status-symbol (cadr (assq url-http-response-status url-http-codes
))))
490 (setq class
(/ url-http-response-status
100))
491 (url-http-debug "Parsed HTTP headers: class=%d status=%d" class url-http-response-status
)
492 (url-http-handle-cookies)
495 ;; Classes of response codes
497 ;; 5xx = Server Error
498 ;; 4xx = Client Error
501 ;; 1xx = Informational
502 (1 ; Information messages
503 ;; 100 = Continue with request
504 ;; 101 = Switching protocols
505 ;; 102 = Processing (Added by DAV)
506 (url-mark-buffer-as-dead buffer
)
507 (error "HTTP responses in class 1xx not supported (%d)" url-http-response-status
))
512 ;; 203 Non-authoritative information
515 ;; 206 Partial content
516 ;; 207 Multi-status (Added by DAV)
518 ((no-content reset-content
)
519 ;; No new data, just stay at the same document
520 (url-mark-buffer-as-dead buffer
)
523 ;; Generic success for all others. Store in the cache, and
524 ;; mark it as successful.
526 (if (and url-automatic-caching
(equal url-http-method
"GET"))
527 (url-store-in-cache buffer
))
530 ;; 300 Multiple choices
531 ;; 301 Moved permanently
536 ;; 307 Temporary redirect
537 (let ((redirect-uri (or (mail-fetch-field "Location")
538 (mail-fetch-field "URI"))))
540 (multiple-choices ; 300
541 ;; Quoth the spec (section 10.3.1)
542 ;; -------------------------------
543 ;; The requested resource corresponds to any one of a set of
544 ;; representations, each with its own specific location and
545 ;; agent-driven negotiation information is being provided so
546 ;; that the user can select a preferred representation and
547 ;; redirect its request to that location.
549 ;; If the server has a preferred choice of representation, it
550 ;; SHOULD include the specific URI for that representation in
551 ;; the Location field; user agents MAY use the Location field
552 ;; value for automatic redirection.
553 ;; -------------------------------
554 ;; We do not support agent-driven negotiation, so we just
555 ;; redirect to the preferred URI if one is provided.
557 ((moved-permanently found temporary-redirect
) ; 301 302 307
558 ;; If the 301|302 status code is received in response to a
559 ;; request other than GET or HEAD, the user agent MUST NOT
560 ;; automatically redirect the request unless it can be
561 ;; confirmed by the user, since this might change the
562 ;; conditions under which the request was issued.
563 (if (member url-http-method
'("HEAD" "GET"))
564 ;; Automatic redirection is ok
566 ;; It is just too big of a pain in the ass to get this
567 ;; prompt all the time. We will just silently lose our
568 ;; data and convert to a GET method.
569 (url-http-debug "Converting `%s' request to `GET' because of REDIRECT(%d)"
570 url-http-method url-http-response-status
)
571 (setq url-http-method
"GET"
574 ;; The response to the request can be found under a different
575 ;; URI and SHOULD be retrieved using a GET method on that
577 (setq url-http-method
"GET"
580 ;; The 304 response MUST NOT contain a message-body.
581 (url-http-debug "Extracting document from cache... (%s)"
582 (url-cache-create-filename (url-view-url t
)))
583 (url-cache-extract (url-cache-create-filename (url-view-url t
)))
584 (setq redirect-uri nil
587 ;; The requested resource MUST be accessed through the
588 ;; proxy given by the Location field. The Location field
589 ;; gives the URI of the proxy. The recipient is expected
590 ;; to repeat this single request via the proxy. 305
591 ;; responses MUST only be generated by origin servers.
592 (error "Redirection thru a proxy server not supported: %s"
595 ;; Treat everything like '300'
598 ;; Clean off any whitespace and/or <...> cruft.
599 (if (string-match "\\([^ \t]+\\)[ \t]" redirect-uri
)
600 (setq redirect-uri
(match-string 1 redirect-uri
)))
601 (if (string-match "^<\\(.*\\)>$" redirect-uri
)
602 (setq redirect-uri
(match-string 1 redirect-uri
)))
604 ;; Some stupid sites (like sourceforge) send a
605 ;; non-fully-qualified URL (ie: /), which royally confuses
607 (if (not (string-match url-nonrelative-link redirect-uri
))
608 ;; Be careful to use the real target URL, otherwise we may
609 ;; compute the redirection relative to the URL of the proxy.
611 (url-expand-file-name redirect-uri url-http-target-url
)))
612 (let ((url-request-method url-http-method
)
613 (url-request-data url-http-data
)
614 (url-request-extra-headers url-http-extra-headers
))
615 ;; Check existing number of redirects
616 (if (or (< url-max-redirections
0)
617 (and (> url-max-redirections
0)
618 (let ((events (car url-callback-arguments
))
621 (if (eq (car events
) :redirect
)
622 (setq old-redirects
(1+ old-redirects
)))
623 (and (setq events
(cdr events
))
624 (setq events
(cdr events
))))
625 (< old-redirects url-max-redirections
))))
626 ;; url-max-redirections hasn't been reached, so go
627 ;; ahead and redirect.
629 ;; Remember that the request was redirected.
630 (setf (car url-callback-arguments
)
631 (nconc (list :redirect redirect-uri
)
632 (car url-callback-arguments
)))
633 ;; Put in the current buffer a forwarding pointer to the new
634 ;; destination buffer.
635 ;; FIXME: This is a hack to fix url-retrieve-synchronously
636 ;; without changing the API. Instead url-retrieve should
637 ;; either simply not return the "destination" buffer, or it
638 ;; should take an optional `dest-buf' argument.
639 (set (make-local-variable 'url-redirect-buffer
)
640 (url-retrieve-internal
641 redirect-uri url-callback-function
642 url-callback-arguments
))
643 (url-mark-buffer-as-dead buffer
))
644 ;; We hit url-max-redirections, so issue an error and
646 (url-http-debug "Maximum redirections reached")
647 (setf (car url-callback-arguments
)
648 (nconc (list :error
(list 'error
'http-redirect-limit
650 (car url-callback-arguments
)))
651 (setq success t
))))))
655 ;; 402 Payment required
658 ;; 405 Method not allowed
659 ;; 406 Not acceptable
660 ;; 407 Proxy authentication required
661 ;; 408 Request time-out
664 ;; 411 Length required
665 ;; 412 Precondition failed
666 ;; 413 Request entity too large
667 ;; 414 Request-URI too large
668 ;; 415 Unsupported media type
669 ;; 416 Requested range not satisfiable
670 ;; 417 Expectation failed
671 ;; 422 Unprocessable Entity (Added by DAV)
673 ;; 424 Failed Dependency
676 ;; The request requires user authentication. The response
677 ;; MUST include a WWW-Authenticate header field containing a
678 ;; challenge applicable to the requested resource. The
679 ;; client MAY repeat the request with a suitable
680 ;; Authorization header field.
681 (url-http-handle-authentication nil
))
682 (payment-required ; 402
683 ;; This code is reserved for future use
684 (url-mark-buffer-as-dead buffer
)
685 (error "Somebody wants you to give them money"))
687 ;; The server understood the request, but is refusing to
688 ;; fulfill it. Authorization will not help and the request
689 ;; SHOULD NOT be repeated.
694 (method-not-allowed ; 405
695 ;; The method specified in the Request-Line is not allowed
696 ;; for the resource identified by the Request-URI. The
697 ;; response MUST include an Allow header containing a list of
698 ;; valid methods for the requested resource.
700 (not-acceptable ; 406
701 ;; The resource identified by the request is only capable of
702 ;; generating response entities which have content
703 ;; characteristics nota cceptable according to the accept
704 ;; headers sent in the request.
706 (proxy-authentication-required ; 407
707 ;; This code is similar to 401 (Unauthorized), but indicates
708 ;; that the client must first authenticate itself with the
709 ;; proxy. The proxy MUST return a Proxy-Authenticate header
710 ;; field containing a challenge applicable to the proxy for
711 ;; the requested resource.
712 (url-http-handle-authentication t
))
713 (request-timeout ; 408
714 ;; The client did not produce a request within the time that
715 ;; the server was prepared to wait. The client MAY repeat
716 ;; the request without modifications at any later time.
719 ;; The request could not be completed due to a conflict with
720 ;; the current state of the resource. This code is only
721 ;; allowed in situations where it is expected that the user
722 ;; mioght be able to resolve the conflict and resubmit the
723 ;; request. The response body SHOULD include enough
724 ;; information for the user to recognize the source of the
728 ;; The requested resource is no longer available at the
729 ;; server and no forwarding address is known.
731 (length-required ; 411
732 ;; The server refuses to accept the request without a defined
733 ;; Content-Length. The client MAY repeat the request if it
734 ;; adds a valid Content-Length header field containing the
735 ;; length of the message-body in the request message.
737 ;; NOTE - this will never happen because
738 ;; `url-http-create-request' automatically calculates the
741 (precondition-failed ; 412
742 ;; The precondition given in one or more of the
743 ;; request-header fields evaluated to false when it was
744 ;; tested on the server.
746 ((request-entity-too-large request-uri-too-large
) ; 413 414
747 ;; The server is refusing to process a request because the
748 ;; request entity|URI is larger than the server is willing or
751 (unsupported-media-type ; 415
752 ;; The server is refusing to service the request because the
753 ;; entity of the request is in a format not supported by the
754 ;; requested resource for the requested method.
756 (requested-range-not-satisfiable ; 416
757 ;; A server SHOULD return a response with this status code if
758 ;; a request included a Range request-header field, and none
759 ;; of the range-specifier values in this field overlap the
760 ;; current extent of the selected resource, and the request
761 ;; did not include an If-Range request-header field.
763 (expectation-failed ; 417
764 ;; The expectation given in an Expect request-header field
765 ;; could not be met by this server, or, if the server is a
766 ;; proxy, the server has unambiguous evidence that the
767 ;; request could not be met by the next-hop server.
770 ;; The request could not be understood by the server due to
771 ;; malformed syntax. The client SHOULD NOT repeat the
772 ;; request without modifications.
774 ;; Tell the callback that an error occurred, and what the
777 (setf (car url-callback-arguments
)
778 (nconc (list :error
(list 'error
'http url-http-response-status
))
779 (car url-callback-arguments
)))))
781 ;; 500 Internal server error
782 ;; 501 Not implemented
784 ;; 503 Service unavailable
785 ;; 504 Gateway time-out
786 ;; 505 HTTP version not supported
787 ;; 507 Insufficient storage
789 (case url-http-response-status
790 (not-implemented ; 501
791 ;; The server does not support the functionality required to
792 ;; fulfill the request.
795 ;; The server, while acting as a gateway or proxy, received
796 ;; an invalid response from the upstream server it accessed
797 ;; in attempting to fulfill the request.
799 (service-unavailable ; 503
800 ;; The server is currently unable to handle the request due
801 ;; to a temporary overloading or maintenance of the server.
802 ;; The implication is that this is a temporary condition
803 ;; which will be alleviated after some delay. If known, the
804 ;; length of the delay MAY be indicated in a Retry-After
805 ;; header. If no Retry-After is given, the client SHOULD
806 ;; handle the response as it would for a 500 response.
808 (gateway-timeout ; 504
809 ;; The server, while acting as a gateway or proxy, did not
810 ;; receive a timely response from the upstream server
811 ;; specified by the URI (e.g. HTTP, FTP, LDAP) or some other
812 ;; auxiliary server (e.g. DNS) it needed to access in
813 ;; attempting to complete the request.
815 (http-version-not-supported ; 505
816 ;; The server does not support, or refuses to support, the
817 ;; HTTP protocol version that was used in the request
820 (insufficient-storage ; 507 (DAV)
821 ;; The method could not be performed on the resource
822 ;; because the server is unable to store the representation
823 ;; needed to successfully complete the request. This
824 ;; condition is considered to be temporary. If the request
825 ;; which received this status code was the result of a user
826 ;; action, the request MUST NOT be repeated until it is
827 ;; requested by a separate user action.
829 ;; Tell the callback that an error occurred, and what the
832 (setf (car url-callback-arguments
)
833 (nconc (list :error
(list 'error
'http url-http-response-status
))
834 (car url-callback-arguments
)))))
836 (error "Unknown class of HTTP response code: %d (%d)"
837 class url-http-response-status
)))
839 (url-mark-buffer-as-dead buffer
))
840 (url-http-debug "Finished parsing HTTP headers: %S" success
)
845 (defun url-http-activate-callback ()
846 "Activate callback specified when this buffer was created."
847 (declare (special url-http-process
848 url-callback-function
849 url-callback-arguments
))
850 (url-http-mark-connection-as-free (url-host url-current-object
)
851 (url-port url-current-object
)
853 (url-http-debug "Activating callback in buffer (%s)" (buffer-name))
854 (apply url-callback-function url-callback-arguments
))
858 ;; These unfortunately cannot be macros... please ignore them!
859 (defun url-http-idle-sentinel (proc why
)
860 "Remove (now defunct) process PROC from the list of open connections."
861 (maphash (lambda (key val
)
863 (puthash key
(delq proc val
) url-http-open-connections
)))
864 url-http-open-connections
))
866 (defun url-http-end-of-document-sentinel (proc why
)
867 ;; Sentinel used for old HTTP/0.9 or connections we know are going
868 ;; to die as the 'end of document' notifier.
869 (url-http-debug "url-http-end-of-document-sentinel in buffer (%s)"
870 (process-buffer proc
))
871 (url-http-idle-sentinel proc why
)
872 (with-current-buffer (process-buffer proc
)
873 (goto-char (point-min))
874 (if (not (looking-at "HTTP/"))
875 ;; HTTP/0.9 just gets passed back no matter what
876 (url-http-activate-callback)
877 (if (url-http-parse-headers)
878 (url-http-activate-callback)))))
880 (defun url-http-simple-after-change-function (st nd length
)
881 ;; Function used when we do NOT know how long the document is going to be
882 ;; Just _very_ simple 'downloaded %d' type of info.
883 (declare (special url-http-end-of-headers
))
884 (url-lazy-message "Reading %s..." (url-pretty-length nd
)))
886 (defun url-http-content-length-after-change-function (st nd length
)
887 "Function used when we DO know how long the document is going to be.
888 More sophisticated percentage downloaded, etc.
889 Also does minimal parsing of HTTP headers and will actually cause
890 the callback to be triggered."
891 (declare (special url-current-object
892 url-http-end-of-headers
893 url-http-content-length
894 url-http-content-type
896 (if url-http-content-type
897 (url-display-percentage
898 "Reading [%s]... %s of %s (%d%%)"
899 (url-percentage (- nd url-http-end-of-headers
)
900 url-http-content-length
)
901 url-http-content-type
902 (url-pretty-length (- nd url-http-end-of-headers
))
903 (url-pretty-length url-http-content-length
)
904 (url-percentage (- nd url-http-end-of-headers
)
905 url-http-content-length
))
906 (url-display-percentage
907 "Reading... %s of %s (%d%%)"
908 (url-percentage (- nd url-http-end-of-headers
)
909 url-http-content-length
)
910 (url-pretty-length (- nd url-http-end-of-headers
))
911 (url-pretty-length url-http-content-length
)
912 (url-percentage (- nd url-http-end-of-headers
)
913 url-http-content-length
)))
915 (if (> (- nd url-http-end-of-headers
) url-http-content-length
)
917 ;; Found the end of the document! Wheee!
918 (url-display-percentage nil nil
)
919 (url-lazy-message "Reading... done.")
920 (if (url-http-parse-headers)
921 (url-http-activate-callback)))))
923 (defun url-http-chunked-encoding-after-change-function (st nd length
)
924 "Function used when dealing with 'chunked' encoding.
925 Cannot give a sophisticated percentage, but we need a different
926 function to look for the special 0-length chunk that signifies
927 the end of the document."
928 (declare (special url-current-object
929 url-http-end-of-headers
930 url-http-content-type
931 url-http-chunked-length
932 url-http-chunked-counter
933 url-http-process url-http-chunked-start
))
936 (let ((read-next-chunk t
)
939 (no-initial-crlf nil
))
940 ;; We need to loop thru looking for more chunks even within
941 ;; one after-change-function call.
942 (while read-next-chunk
943 (setq no-initial-crlf
(= 0 url-http-chunked-counter
))
944 (if url-http-content-type
945 (url-display-percentage nil
946 "Reading [%s]... chunk #%d"
947 url-http-content-type url-http-chunked-counter
)
948 (url-display-percentage nil
949 "Reading... chunk #%d"
950 url-http-chunked-counter
))
951 (url-http-debug "Reading chunk %d (%d %d %d)"
952 url-http-chunked-counter st nd length
)
953 (setq regexp
(if no-initial-crlf
954 "\\([0-9a-z]+\\).*\r?\n"
955 "\r?\n\\([0-9a-z]+\\).*\r?\n"))
957 (if url-http-chunked-start
958 ;; We know how long the chunk is supposed to be, skip over
959 ;; leading crap if possible.
960 (if (> nd
(+ url-http-chunked-start url-http-chunked-length
))
962 (url-http-debug "Got to the end of chunk #%d!"
963 url-http-chunked-counter
)
964 (goto-char (+ url-http-chunked-start
965 url-http-chunked-length
)))
966 (url-http-debug "Still need %d bytes to hit end of chunk"
967 (- (+ url-http-chunked-start
968 url-http-chunked-length
)
970 (setq read-next-chunk nil
)))
971 (if (not read-next-chunk
)
972 (url-http-debug "Still spinning for next chunk...")
973 (if no-initial-crlf
(skip-chars-forward "\r\n"))
974 (if (not (looking-at regexp
))
976 ;; Must not have received the entirety of the chunk header,
977 ;; need to spin some more.
978 (url-http-debug "Did not see start of chunk @ %d!" (point))
979 (setq read-next-chunk nil
))
980 (add-text-properties (match-beginning 0) (match-end 0)
986 (setq url-http-chunked-length
(string-to-number (buffer-substring
990 url-http-chunked-counter
(1+ url-http-chunked-counter
)
991 url-http-chunked-start
(set-marker
992 (or url-http-chunked-start
995 ; (if (not url-http-debug)
996 (delete-region (match-beginning 0) (match-end 0));)
997 (url-http-debug "Saw start of chunk %d (length=%d, start=%d"
998 url-http-chunked-counter url-http-chunked-length
999 (marker-position url-http-chunked-start
))
1000 (if (= 0 url-http-chunked-length
)
1002 ;; Found the end of the document! Wheee!
1003 (url-http-debug "Saw end of stream chunk!")
1004 (setq read-next-chunk nil
)
1005 (url-display-percentage nil nil
)
1006 ;; Every chunk, even the last 0-length one, is
1007 ;; terminated by CRLF. Skip it.
1008 (when (looking-at "\r?\n")
1009 (url-http-debug "Removing terminator of last chunk")
1010 (delete-region (match-beginning 0) (match-end 0)))
1011 (if (re-search-forward "^\r*$" nil t
)
1012 (url-http-debug "Saw end of trailers..."))
1013 (if (url-http-parse-headers)
1014 (url-http-activate-callback))))))))))
1016 (defun url-http-wait-for-headers-change-function (st nd length
)
1017 ;; This will wait for the headers to arrive and then splice in the
1018 ;; next appropriate after-change-function, etc.
1019 (declare (special url-current-object
1020 url-http-end-of-headers
1021 url-http-content-type
1022 url-http-content-length
1023 url-http-transfer-encoding
1024 url-callback-function
1025 url-callback-arguments
1028 url-http-after-change-function
1029 url-http-response-status
))
1030 (url-http-debug "url-http-wait-for-headers-change-function (%s)"
1033 (let ((end-of-headers nil
)
1035 (content-length nil
))
1036 (goto-char (point-min))
1037 (if (and (looking-at ".*\n") ; have one line at least
1038 (not (looking-at "^HTTP/[1-9]\\.[0-9]")))
1039 ;; Not HTTP/x.y data, must be 0.9
1040 ;; God, I wish this could die.
1041 (setq end-of-headers t
1042 url-http-end-of-headers
0
1044 (when (re-search-forward "^\r*$" nil t
)
1045 ;; Saw the end of the headers
1046 (url-http-debug "Saw end of headers... (%s)" (buffer-name))
1047 (setq url-http-end-of-headers
(set-marker (make-marker)
1050 (url-http-clean-headers)))
1052 (if (not end-of-headers
)
1053 ;; Haven't seen the end of the headers yet, need to wait
1054 ;; for more data to arrive.
1057 (message "HTTP/0.9 How I hate thee!")
1059 (url-http-parse-response)
1060 (mail-narrow-to-head)
1061 ;;(narrow-to-region (point-min) url-http-end-of-headers)
1062 (setq url-http-transfer-encoding
(mail-fetch-field
1063 "transfer-encoding")
1064 url-http-content-type
(mail-fetch-field "content-type"))
1065 (if (mail-fetch-field "content-length")
1066 (setq url-http-content-length
1067 (string-to-number (mail-fetch-field "content-length"))))
1069 (when url-http-transfer-encoding
1070 (setq url-http-transfer-encoding
1071 (downcase url-http-transfer-encoding
)))
1074 ((or (= url-http-response-status
204)
1075 (= url-http-response-status
205))
1076 (url-http-debug "%d response must have headers only (%s)."
1077 url-http-response-status
(buffer-name))
1078 (when (url-http-parse-headers)
1079 (url-http-activate-callback)))
1080 ((string= "HEAD" url-http-method
)
1081 ;; A HEAD request is _ALWAYS_ terminated by the header
1082 ;; information, regardless of any entity headers,
1083 ;; according to section 4.4 of the HTTP/1.1 draft.
1084 (url-http-debug "HEAD request must have headers only (%s)."
1086 (when (url-http-parse-headers)
1087 (url-http-activate-callback)))
1088 ((string= "CONNECT" url-http-method
)
1089 ;; A CONNECT request is finished, but we cannot stick this
1090 ;; back on the free connectin list
1091 (url-http-debug "CONNECT request must have headers only.")
1092 (when (url-http-parse-headers)
1093 (url-http-activate-callback)))
1094 ((equal url-http-response-status
304)
1095 ;; Only allowed to have a header section. We have to handle
1096 ;; this here instead of in url-http-parse-headers because if
1097 ;; you have a cached copy of something without a known
1098 ;; content-length, and try to retrieve it from the cache, we'd
1099 ;; fall into the 'being dumb' section and wait for the
1100 ;; connection to terminate, which means we'd wait for 10
1101 ;; seconds for the keep-alives to time out on some servers.
1102 (when (url-http-parse-headers)
1103 (url-http-activate-callback)))
1105 ;; HTTP/0.9 always signaled end-of-connection by closing the
1108 "Saw HTTP/0.9 response, connection closed means end of document.")
1109 (setq url-http-after-change-function
1110 'url-http-simple-after-change-function
))
1111 ((equal url-http-transfer-encoding
"chunked")
1112 (url-http-debug "Saw chunked encoding.")
1113 (setq url-http-after-change-function
1114 'url-http-chunked-encoding-after-change-function
)
1115 (when (> nd url-http-end-of-headers
)
1117 "Calling initial chunked-encoding for extra data at end of headers")
1118 (url-http-chunked-encoding-after-change-function
1119 (marker-position url-http-end-of-headers
) nd
1120 (- nd url-http-end-of-headers
))))
1121 ((integerp url-http-content-length
)
1123 "Got a content-length, being smart about document end.")
1124 (setq url-http-after-change-function
1125 'url-http-content-length-after-change-function
)
1127 ((= 0 url-http-content-length
)
1128 ;; We got a NULL body! Activate the callback
1131 "Got 0-length content-length, activating callback immediately.")
1132 (when (url-http-parse-headers)
1133 (url-http-activate-callback)))
1134 ((> nd url-http-end-of-headers
)
1135 ;; Have some leftover data
1136 (url-http-debug "Calling initial content-length for extra data at end of headers")
1137 (url-http-content-length-after-change-function
1138 (marker-position url-http-end-of-headers
)
1140 (- nd url-http-end-of-headers
)))
1144 (url-http-debug "No content-length, being dumb.")
1145 (setq url-http-after-change-function
1146 'url-http-simple-after-change-function
)))))
1147 ;; We are still at the beginning of the buffer... must just be
1148 ;; waiting for a response.
1149 (url-http-debug "Spinning waiting for headers..."))
1150 (goto-char (point-max)))
1153 (defun url-http (url callback cbargs
)
1154 "Retrieve URL via HTTP asynchronously.
1155 URL must be a parsed URL. See `url-generic-parse-url' for details.
1156 When retrieval is completed, the function CALLBACK is executed with
1157 CBARGS as the arguments."
1158 (check-type url vector
"Need a pre-parsed URL.")
1159 (declare (special url-current-object
1160 url-http-end-of-headers
1161 url-http-content-type
1162 url-http-content-length
1163 url-http-transfer-encoding
1164 url-http-after-change-function
1165 url-callback-function
1166 url-callback-arguments
1168 url-http-extra-headers
1170 url-http-chunked-length
1171 url-http-chunked-start
1172 url-http-chunked-counter
1174 (let* ((host (url-host (or url-using-proxy url
)))
1175 (port (url-port (or url-using-proxy url
)))
1176 (connection (url-http-find-free-connection host port
))
1177 (buffer (generate-new-buffer (format " *http %s:%d*" host port
))))
1178 (if (not connection
)
1179 ;; Failed to open the connection for some reason
1181 (kill-buffer buffer
)
1183 (error "Could not create connection to %s:%d" host port
))
1184 (with-current-buffer buffer
1185 (mm-disable-multibyte)
1186 (setq url-current-object url
1187 mode-line-format
"%b [%s]")
1189 (dolist (var '(url-http-end-of-headers
1190 url-http-content-type
1191 url-http-content-length
1192 url-http-transfer-encoding
1193 url-http-after-change-function
1194 url-http-response-version
1195 url-http-response-status
1196 url-http-chunked-length
1197 url-http-chunked-counter
1198 url-http-chunked-start
1199 url-callback-function
1200 url-callback-arguments
1203 url-http-extra-headers
1206 url-http-connection-opened
1208 (set (make-local-variable var
) nil
))
1210 (setq url-http-method
(or url-request-method
"GET")
1211 url-http-extra-headers url-request-extra-headers
1212 url-http-data url-request-data
1213 url-http-process connection
1214 url-http-chunked-length nil
1215 url-http-chunked-start nil
1216 url-http-chunked-counter
0
1217 url-callback-function callback
1218 url-callback-arguments cbargs
1219 url-http-after-change-function
'url-http-wait-for-headers-change-function
1220 url-http-target-url url-current-object
1221 url-http-connection-opened nil
1222 url-http-proxy url-using-proxy
)
1224 (set-process-buffer connection buffer
)
1225 (set-process-filter connection
'url-http-generic-filter
)
1226 (let ((status (process-status connection
)))
1228 ((eq status
'connect
)
1229 ;; Asynchronous connection
1230 (set-process-sentinel connection
'url-http-async-sentinel
))
1231 ((eq status
'failed
)
1232 ;; Asynchronous connection failed
1233 (error "Could not create connection to %s:%d" host port
))
1235 (set-process-sentinel connection
'url-http-end-of-document-sentinel
)
1236 (process-send-string connection
(url-http-create-request)))))))
1239 (defun url-http-async-sentinel (proc why
)
1240 (declare (special url-callback-arguments
))
1241 ;; We are performing an asynchronous connection, and a status change
1243 (with-current-buffer (process-buffer proc
)
1245 (url-http-connection-opened
1246 (url-http-end-of-document-sentinel proc why
))
1247 ((string= (substring why
0 4) "open")
1248 (setq url-http-connection-opened t
)
1249 (process-send-string proc
(url-http-create-request)))
1251 (setf (car url-callback-arguments
)
1252 (nconc (list :error
(list 'error
'connection-failed why
1253 :host
(url-host (or url-http-proxy url-current-object
))
1254 :service
(url-port (or url-http-proxy url-current-object
))))
1255 (car url-callback-arguments
)))
1256 (url-http-activate-callback)))))
1258 ;; Since Emacs 19/20 does not allow you to change the
1259 ;; `after-change-functions' hook in the midst of running them, we fake
1260 ;; an after change by hooking into the process filter and inserting
1261 ;; the data ourselves. This is slightly less efficient, but there
1262 ;; were tons of weird ways the after-change code was biting us in the
1264 (defun url-http-generic-filter (proc data
)
1265 ;; Sometimes we get a zero-length data chunk after the process has
1266 ;; been changed to 'free', which means it has no buffer associated
1267 ;; with it. Do nothing if there is no buffer, or 0 length data.
1268 (declare (special url-http-after-change-function
))
1269 (and (process-buffer proc
)
1270 (/= (length data
) 0)
1271 (with-current-buffer (process-buffer proc
)
1272 (url-http-debug "Calling after change function `%s' for `%S'" url-http-after-change-function proc
)
1273 (funcall url-http-after-change-function
1276 (goto-char (point-max))
1281 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1282 ;;; file-name-handler stuff from here on out
1283 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1284 (defalias 'url-http-symbol-value-in-buffer
1285 (if (fboundp 'symbol-value-in-buffer
)
1286 'symbol-value-in-buffer
1287 (lambda (symbol buffer
&optional unbound-value
)
1288 "Return the value of SYMBOL in BUFFER, or UNBOUND-VALUE if it is unbound."
1289 (with-current-buffer buffer
1290 (if (not (boundp symbol
))
1292 (symbol-value symbol
))))))
1294 (defun url-http-head (url)
1295 (let ((url-request-method "HEAD")
1296 (url-request-data nil
))
1297 (url-retrieve-synchronously url
)))
1300 (defun url-http-file-exists-p (url)
1303 (buffer (url-http-head url
)))
1306 (setq status
(url-http-symbol-value-in-buffer 'url-http-response-status
1308 exists
(and (integerp status
)
1309 (>= status
200) (< status
300)))
1310 (kill-buffer buffer
))
1314 (defalias 'url-http-file-readable-p
'url-http-file-exists-p
)
1316 (defun url-http-head-file-attributes (url &optional id-format
)
1317 (let ((buffer (url-http-head url
)))
1321 nil
;dir / link / normal file
1322 1 ;number of links to file.
1324 nil nil nil
;atime ; mtime ; ctime
1325 (url-http-symbol-value-in-buffer 'url-http-content-length
1327 (eval-when-compile (make-string 10 ?-
))
1328 nil nil nil
) ;whether gid would change ; inode ; device.
1329 (kill-buffer buffer
)))))
1331 (declare-function url-dav-file-attributes
"url-dav" (url &optional id-format
))
1334 (defun url-http-file-attributes (url &optional id-format
)
1335 (if (url-dav-supported-p url
)
1336 (url-dav-file-attributes url id-format
)
1337 (url-http-head-file-attributes url id-format
)))
1340 (defun url-http-options (url)
1341 "Return a property list describing options available for URL.
1342 This list is retrieved using the `OPTIONS' HTTP method.
1344 Property list members:
1347 A list of symbols specifying what HTTP methods the resource
1351 A list of numbers specifying what DAV protocol/schema versions are
1355 A list of supported DASL search types supported (string form)
1358 A list of the units available for use in partial document fetches.
1361 The `Platform For Privacy Protection' description for the resource.
1362 Currently this is just the raw header contents. This is likely to
1363 change once P3P is formally supported by the URL package or
1365 (let* ((url-request-method "OPTIONS")
1366 (url-request-data nil
)
1367 (buffer (url-retrieve-synchronously url
))
1370 (when (and buffer
(= 2 (/ (url-http-symbol-value-in-buffer
1371 'url-http-response-status buffer
0) 100)))
1372 ;; Only parse the options if we got a 2xx response code!
1373 (with-current-buffer buffer
1376 (mail-narrow-to-head)
1378 ;; Figure out what methods are supported.
1379 (when (setq header
(mail-fetch-field "allow"))
1380 (setq options
(plist-put
1382 (mapcar 'intern
(split-string header
"[ ,]+")))))
1385 (when (setq header
(mail-fetch-field "dav"))
1386 (setq options
(plist-put
1389 (mapcar 'string-to-number
1390 (split-string header
"[, ]+"))))))
1393 (when (setq header
(mail-fetch-field "dasl"))
1394 (setq options
(plist-put
1396 (split-string header
"[, ]+"))))
1398 ;; P3P - should get more detailed here. FIXME
1399 (when (setq header
(mail-fetch-field "p3p"))
1400 (setq options
(plist-put options
'p3p header
)))
1402 ;; Check for whether they accept byte-range requests.
1403 (when (setq header
(mail-fetch-field "accept-ranges"))
1404 (setq options
(plist-put
1408 (split-string header
"[, ]+"))))))
1410 (if buffer
(kill-buffer buffer
))
1413 ;; HTTPS. This used to be in url-https.el, but that file collides
1414 ;; with url-http.el on systems with 8-character file names.
1418 (defconst url-https-default-port
443 "Default HTTPS port.")
1420 (defconst url-https-asynchronous-p t
"HTTPS retrievals are asynchronous.")
1422 ;; FIXME what is the point of this alias being an autoload?
1423 ;; Trying to use it will not cause url-http to be loaded,
1424 ;; since the full alias just gets dumped into loaddefs.el.
1426 ;;;###autoload (autoload 'url-default-expander "url-expand")
1428 (defalias 'url-https-expand-file-name
'url-default-expander
)
1430 (defmacro url-https-create-secure-wrapper
(method args
)
1431 `(defun ,(intern (format (if method
"url-https-%s" "url-https") method
)) ,args
1432 ,(format "HTTPS wrapper around `%s' call." (or method
"url-http"))
1433 (let ((url-gateway-method 'tls
))
1434 (,(intern (format (if method
"url-http-%s" "url-http") method
))
1435 ,@(remove '&rest
(remove '&optional args
))))))
1437 ;;;###autoload (autoload 'url-https "url-http")
1438 (url-https-create-secure-wrapper nil
(url callback cbargs
))
1439 ;;;###autoload (autoload 'url-https-file-exists-p "url-http")
1440 (url-https-create-secure-wrapper file-exists-p
(url))
1441 ;;;###autoload (autoload 'url-https-file-readable-p "url-http")
1442 (url-https-create-secure-wrapper file-readable-p
(url))
1443 ;;;###autoload (autoload 'url-https-file-attributes "url-http")
1444 (url-https-create-secure-wrapper file-attributes
(url &optional id-format
))
1448 ;; arch-tag: ba7c59ae-c0f4-4a31-9617-d85f221732ee
1449 ;;; url-http.el ends here