annotate lisp/url/url-http.el @ 112412:647e164c1f3e

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