Mercurial > emacs
annotate lisp/url/url-cookie.el @ 112453:06719a229a46 default tip
* calc/calc.el (calc-default-power-reference-level)
(calc-default-field-reference-level): New variables.
* calc/calc-units.el (math-standard-units): Add dB and Np.
(math-logunits): New variable.
(math-extract-logunits, math-logcombine, calcFunc-luplus)
(calcFunc-luminus, calc-luplus, calc-luminus, math-logunit-level)
(calcFunc-fieldlevel, calcFunc-powerlevel, calc-level): New
functions.
(math-find-base-units-rec): Add entry for ln(10).
* calc/calc-help.el (calc-u-prefix-help): Add logarithmic help.
(calc-ul-prefix-help): New function.
* calc/calc-ext.el (calc-init-extensions): Autoload new units
functions. Add keybindings for new units functions.
author | Jay Belanger <jay.p.belanger@gmail.com> |
---|---|
date | Sun, 23 Jan 2011 23:08:04 -0600 |
parents | 417b1e4d63cd |
children |
rev | line source |
---|---|
111955 | 1 ;;; url-cookie.el --- URL cookie support |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
2 |
110341
827513405247
* lisp/url/url-cookie.el (url-cookie-expired-p): Tweak previous change.
Glenn Morris <rgm@gnu.org>
parents:
110340
diff
changeset
|
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, 2005, 2006, 2007, 2008, |
112218
376148b31b5e
Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents:
111902
diff
changeset
|
4 ;; 2009, 2010, 2011 Free Software Foundation, Inc. |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
5 |
54695 | 6 ;; Keywords: comm, data, processes, hypermedia |
7 | |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
9 ;; |
94668
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
11 ;; 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:
87649
diff
changeset
|
12 ;; 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:
87649
diff
changeset
|
13 ;; (at your option) any later version. |
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
14 |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
15 ;; GNU Emacs is distributed in the hope that it will be useful, |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
18 ;; GNU General Public License for more details. |
94668
8259d0d8e107
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
19 |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
20 ;; 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:
87649
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
22 |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
23 ;;; Commentary: |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
24 |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
25 ;;; Code: |
54695 | 26 |
27 (require 'url-util) | |
28 (require 'url-parse) | |
29 | |
111978
a427dc2ad38f
url-cookie.el: Require 'cl when compiling
Miles Bader <miles@gnu.org>
parents:
111955
diff
changeset
|
30 (eval-when-compile (require 'cl)) ; defstruct |
54695 | 31 |
32 (defgroup url-cookie nil | |
63986
8d2417e75fe5
(url-cookie): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63801
diff
changeset
|
33 "URL cookies." |
54695 | 34 :prefix "url-" |
35 :prefix "url-cookie-" | |
36 :group 'url) | |
37 | |
81328
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
38 ;; A cookie is stored internally as a vector of 7 slots |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
39 ;; [ cookie NAME VALUE EXPIRES LOCALPART DOMAIN SECURE ] |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
40 |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
41 (defstruct (url-cookie |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
42 (:constructor url-cookie-create) |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
43 (:copier nil) |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
44 ;; For compatibility with a previous version which did not use |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
45 ;; defstruct, and also in order to make sure that the printed |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
46 ;; representation does not depend on CL internals, we use an |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
47 ;; explicitly managed tag. |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
48 (:type vector)) |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
49 (tag 'cookie :read-only t) |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
50 name value expires localpart domain secure) |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
51 |
54695 | 52 (defvar url-cookie-storage nil "Where cookies are stored.") |
53 (defvar url-cookie-secure-storage nil "Where secure cookies are stored.") | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
54 (defcustom url-cookie-file nil |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
55 "File where cookies are stored on disk." |
54695 | 56 :type '(choice (const :tag "Default" :value nil) file) |
57 :group 'url-file | |
58 :group 'url-cookie) | |
59 | |
60 (defcustom url-cookie-confirmation nil | |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
61 "If non-nil, confirmation by the user is required to accept HTTP cookies." |
54695 | 62 :type 'boolean |
63 :group 'url-cookie) | |
64 | |
65 (defcustom url-cookie-multiple-line nil | |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
66 "If nil, HTTP requests put all cookies for the server on one line. |
54695 | 67 Some web servers, such as http://www.hotmail.com/, only accept cookies |
63248
457f83187ef5
(url-cookie-multiple-line): Fix spelling in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
62529
diff
changeset
|
68 when they are on one line. This is broken behavior, but just try |
62529
b2ba3b366582
(url-cookie-multiple-line): Specify group and type in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
62400
diff
changeset
|
69 telling Microsoft that." |
b2ba3b366582
(url-cookie-multiple-line): Specify group and type in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
62400
diff
changeset
|
70 :type 'boolean |
b2ba3b366582
(url-cookie-multiple-line): Specify group and type in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
62400
diff
changeset
|
71 :group 'url-cookie) |
54695 | 72 |
73 (defvar url-cookies-changed-since-last-save nil | |
74 "Whether the cookies list has changed since the last save operation.") | |
75 | |
76 (defun url-cookie-parse-file (&optional fname) | |
111955 | 77 "Load FNAME, default `url-cookie-file'." |
78 ;; It's completely normal for the cookies file not to exist yet. | |
79 (load (or fname url-cookie-file) t t)) | |
54695 | 80 |
86848
9bdd5616eaa8
(url-cookie-p): Declare as a function.
Glenn Morris <rgm@gnu.org>
parents:
86486
diff
changeset
|
81 (declare-function url-cookie-p "url-cookie" t t) ; defstruct |
86486 | 82 |
54695 | 83 (defun url-cookie-clean-up (&optional secure) |
111955 | 84 (let ((var (if secure 'url-cookie-secure-storage 'url-cookie-storage)) |
85 new new-cookies) | |
86 (dolist (cur (symbol-value var)) | |
87 (setq new-cookies nil) | |
88 (dolist (cur-cookie (cdr cur)) | |
89 (or (not (url-cookie-p cur-cookie)) | |
90 (url-cookie-expired-p cur-cookie) | |
91 (null (url-cookie-expires cur-cookie)) | |
92 (setq new-cookies (cons cur-cookie new-cookies)))) | |
93 (when new-cookies | |
54695 | 94 (setcdr cur new-cookies) |
95 (setq new (cons cur new)))) | |
96 (set var new))) | |
97 | |
98 (defun url-cookie-write-file (&optional fname) | |
79556
239cccb702f6
(url-cookie-write-file): Use url-make-private-file and with-temp-buffer.
Glenn Morris <rgm@gnu.org>
parents:
78222
diff
changeset
|
99 (when url-cookies-changed-since-last-save |
239cccb702f6
(url-cookie-write-file): Use url-make-private-file and with-temp-buffer.
Glenn Morris <rgm@gnu.org>
parents:
78222
diff
changeset
|
100 (or fname (setq fname (expand-file-name url-cookie-file))) |
239cccb702f6
(url-cookie-write-file): Use url-make-private-file and with-temp-buffer.
Glenn Morris <rgm@gnu.org>
parents:
78222
diff
changeset
|
101 (if (condition-case nil |
239cccb702f6
(url-cookie-write-file): Use url-make-private-file and with-temp-buffer.
Glenn Morris <rgm@gnu.org>
parents:
78222
diff
changeset
|
102 (progn |
239cccb702f6
(url-cookie-write-file): Use url-make-private-file and with-temp-buffer.
Glenn Morris <rgm@gnu.org>
parents:
78222
diff
changeset
|
103 (url-make-private-file fname) |
239cccb702f6
(url-cookie-write-file): Use url-make-private-file and with-temp-buffer.
Glenn Morris <rgm@gnu.org>
parents:
78222
diff
changeset
|
104 nil) |
239cccb702f6
(url-cookie-write-file): Use url-make-private-file and with-temp-buffer.
Glenn Morris <rgm@gnu.org>
parents:
78222
diff
changeset
|
105 (error t)) |
239cccb702f6
(url-cookie-write-file): Use url-make-private-file and with-temp-buffer.
Glenn Morris <rgm@gnu.org>
parents:
78222
diff
changeset
|
106 (message "Error accessing cookie file `%s'" fname) |
54695 | 107 (url-cookie-clean-up) |
108 (url-cookie-clean-up t) | |
87257
63d3464511b4
(url-cookie-write-file): Use url-make-private-file and with-temp-buffer.
Glenn Morris <rgm@gnu.org>
parents:
86848
diff
changeset
|
109 (with-temp-buffer |
54695 | 110 (insert ";; Emacs-W3 HTTP cookies file\n" |
111 ";; Automatically generated file!!! DO NOT EDIT!!!\n\n" | |
112 "(setq url-cookie-storage\n '") | |
113 (pp url-cookie-storage (current-buffer)) | |
114 (insert ")\n(setq url-cookie-secure-storage\n '") | |
115 (pp url-cookie-secure-storage (current-buffer)) | |
116 (insert ")\n") | |
72573
fd926d483a42
(url-cookie-write-file): Really don't use versioned backups.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71788
diff
changeset
|
117 (insert "\n;; Local Variables:\n" |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
118 ";; version-control: never\n" |
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
119 ";; no-byte-compile: t\n" |
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
120 ";; End:\n") |
72573
fd926d483a42
(url-cookie-write-file): Really don't use versioned backups.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71788
diff
changeset
|
121 (set (make-local-variable 'version-control) 'never) |
87257
63d3464511b4
(url-cookie-write-file): Use url-make-private-file and with-temp-buffer.
Glenn Morris <rgm@gnu.org>
parents:
86848
diff
changeset
|
122 (write-file fname)) |
63d3464511b4
(url-cookie-write-file): Use url-make-private-file and with-temp-buffer.
Glenn Morris <rgm@gnu.org>
parents:
86848
diff
changeset
|
123 (setq url-cookies-changed-since-last-save nil)))) |
54695 | 124 |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
125 (defun url-cookie-store (name value &optional expires domain localpart secure) |
111955 | 126 "Store a cookie." |
127 (let ((storage (if secure url-cookie-secure-storage url-cookie-storage)) | |
128 tmp found-domain) | |
129 ;; First, look for a matching domain. | |
130 (if (setq found-domain (assoc domain storage)) | |
54695 | 131 ;; Need to either stick the new cookie in existing domain storage |
132 ;; or possibly replace an existing cookie if the names match. | |
111955 | 133 (unless (dolist (cur (setq storage (cdr found-domain)) tmp) |
134 (and (equal localpart (url-cookie-localpart cur)) | |
135 (equal name (url-cookie-name cur)) | |
136 (progn | |
137 (setf (url-cookie-expires cur) expires) | |
138 (setf (url-cookie-value cur) value) | |
139 (setq tmp t)))) | |
140 ;; New cookie. | |
141 (setcdr found-domain (cons | |
142 (url-cookie-create :name name | |
143 :value value | |
144 :expires expires | |
145 :domain domain | |
146 :localpart localpart | |
147 :secure secure) | |
148 (cdr found-domain)))) | |
149 ;; Need to add a new top-level domain. | |
54695 | 150 (setq tmp (url-cookie-create :name name |
151 :value value | |
152 :expires expires | |
153 :domain domain | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
154 :localpart localpart |
54695 | 155 :secure secure)) |
111955 | 156 (cond (storage |
157 (setcdr storage (cons (list domain tmp) (cdr storage)))) | |
158 (secure | |
159 (setq url-cookie-secure-storage (list (list domain tmp)))) | |
160 (t | |
161 (setq url-cookie-storage (list (list domain tmp)))))))) | |
54695 | 162 |
163 (defun url-cookie-expired-p (cookie) | |
110341
827513405247
* lisp/url/url-cookie.el (url-cookie-expired-p): Tweak previous change.
Glenn Morris <rgm@gnu.org>
parents:
110340
diff
changeset
|
164 "Return non-nil if COOKIE is expired." |
827513405247
* lisp/url/url-cookie.el (url-cookie-expired-p): Tweak previous change.
Glenn Morris <rgm@gnu.org>
parents:
110340
diff
changeset
|
165 (let ((exp (url-cookie-expires cookie))) |
827513405247
* lisp/url/url-cookie.el (url-cookie-expired-p): Tweak previous change.
Glenn Morris <rgm@gnu.org>
parents:
110340
diff
changeset
|
166 (and exp (> (float-time) (float-time (date-to-time exp)))))) |
54695 | 167 |
101179
84cbdd182a6d
(url-cookie-retrieve): Handle null localpart.
Chong Yidong <cyd@stupidchicken.com>
parents:
100908
diff
changeset
|
168 (defun url-cookie-retrieve (host &optional localpart secure) |
111902
3d34c0b303ff
* url-cookie.el (url-cookie-retrieve): Handle null LOCALPART (Bug#7543).
Chong Yidong <cyd@stupidchicken.com>
parents:
110341
diff
changeset
|
169 "Retrieve all cookies for a specified HOST and LOCALPART." |
54695 | 170 (let ((storage (if secure |
171 (append url-cookie-secure-storage url-cookie-storage) | |
172 url-cookie-storage)) | |
173 (case-fold-search t) | |
111955 | 174 cookies retval localpart-match) |
175 (dolist (cur storage) | |
176 (setq cookies (cdr cur)) | |
54695 | 177 (if (and (car cur) |
76859
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
178 (string-match |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
179 (concat "^.*" |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
180 (regexp-quote |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
181 ;; Remove the dot from wildcard domains |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
182 ;; before matching. |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
183 (if (eq ?. (aref (car cur) 0)) |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
184 (substring (car cur) 1) |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
185 (car cur))) |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
186 "$") host)) |
54695 | 187 ;; The domains match - a possible hit! |
111955 | 188 (dolist (cur cookies) |
189 (and (if (and (stringp | |
190 (setq localpart-match (url-cookie-localpart cur))) | |
191 (stringp localpart)) | |
192 (string-match (concat "^" (regexp-quote localpart-match)) | |
193 localpart) | |
194 (equal localpart localpart-match)) | |
195 (not (url-cookie-expired-p cur)) | |
196 (setq retval (cons cur retval)))))) | |
54695 | 197 retval)) |
198 | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
199 (defun url-cookie-generate-header-lines (host localpart secure) |
111955 | 200 (let ((cookies (url-cookie-retrieve host localpart secure)) |
201 retval chunk) | |
202 ;; Have to sort this for sending most specific cookies first. | |
54695 | 203 (setq cookies (and cookies |
204 (sort cookies | |
111955 | 205 (lambda (x y) |
206 (> (length (url-cookie-localpart x)) | |
207 (length (url-cookie-localpart y))))))) | |
208 (dolist (cur cookies) | |
209 (setq chunk (format "%s=%s" (url-cookie-name cur) (url-cookie-value cur)) | |
54695 | 210 retval (if (and url-cookie-multiple-line |
211 (< 80 (+ (length retval) (length chunk) 4))) | |
212 (concat retval "\r\nCookie: " chunk) | |
213 (if retval | |
214 (concat retval "; " chunk) | |
215 (concat "Cookie: " chunk))))) | |
216 (if retval | |
217 (concat retval "\r\n") | |
218 ""))) | |
219 | |
220 (defvar url-cookie-two-dot-domains | |
221 (concat "\\.\\(" | |
222 (mapconcat 'identity (list "com" "edu" "net" "org" "gov" "mil" "int") | |
223 "\\|") | |
224 "\\)$") | |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
225 "A regexp of top level domains that only require two matching |
54695 | 226 '.'s in the domain name in order to set a cookie.") |
227 | |
228 (defcustom url-cookie-trusted-urls nil | |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
229 "A list of regular expressions matching URLs to always accept cookies from." |
54695 | 230 :type '(repeat regexp) |
231 :group 'url-cookie) | |
232 | |
233 (defcustom url-cookie-untrusted-urls nil | |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
234 "A list of regular expressions matching URLs to never accept cookies from." |
54695 | 235 :type '(repeat regexp) |
236 :group 'url-cookie) | |
237 | |
238 (defun url-cookie-host-can-set-p (host domain) | |
239 (let ((numdots 0) | |
240 (last nil) | |
241 (case-fold-search t) | |
242 (mindots 3)) | |
243 (while (setq last (string-match "\\." domain last)) | |
244 (setq numdots (1+ numdots) | |
245 last (1+ last))) | |
246 (if (string-match url-cookie-two-dot-domains domain) | |
247 (setq mindots 2)) | |
248 (cond | |
249 ((string= host domain) ; Apparently netscape lets you do this | |
250 t) | |
251 ((>= numdots mindots) ; We have enough dots in domain name | |
252 ;; Need to check and make sure the host is actually _in_ the | |
253 ;; domain it wants to set a cookie for though. | |
76859
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
254 (string-match (concat (regexp-quote |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
255 ;; Remove the dot from wildcard domains |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
256 ;; before matching. |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
257 (if (eq ?. (aref domain 0)) |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
258 (substring domain 1) |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
259 domain)) |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
260 "$") host)) |
54695 | 261 (t |
262 nil)))) | |
263 | |
264 (defun url-cookie-handle-set-cookie (str) | |
265 (setq url-cookies-changed-since-last-save t) | |
266 (let* ((args (url-parse-args str t)) | |
267 (case-fold-search t) | |
54817
daf716c39a7f
(url-cookie-handle-set-cookie): Replace calls to obsolete
John Paul Wallington <jpw@pobox.com>
parents:
54794
diff
changeset
|
268 (secure (and (assoc-string "secure" args t) t)) |
daf716c39a7f
(url-cookie-handle-set-cookie): Replace calls to obsolete
John Paul Wallington <jpw@pobox.com>
parents:
54794
diff
changeset
|
269 (domain (or (cdr-safe (assoc-string "domain" args t)) |
54695 | 270 (url-host url-current-object))) |
271 (current-url (url-view-url t)) | |
272 (trusted url-cookie-trusted-urls) | |
273 (untrusted url-cookie-untrusted-urls) | |
54817
daf716c39a7f
(url-cookie-handle-set-cookie): Replace calls to obsolete
John Paul Wallington <jpw@pobox.com>
parents:
54794
diff
changeset
|
274 (expires (cdr-safe (assoc-string "expires" args t))) |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
275 (localpart (or (cdr-safe (assoc-string "path" args t)) |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
276 (file-name-directory |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
277 (url-filename url-current-object)))) |
54695 | 278 (rest nil)) |
111955 | 279 (dolist (this args) |
280 (or (member (downcase (car this)) '("secure" "domain" "expires" "path")) | |
281 (setq rest (cons this rest)))) | |
54695 | 282 |
283 ;; Sometimes we get dates that the timezone package cannot handle very | |
284 ;; gracefully - take care of this here, instead of in url-cookie-expired-p | |
285 ;; to speed things up. | |
111955 | 286 (and expires |
287 (string-match | |
288 (concat "^[^,]+, +\\(..\\)-\\(...\\)-\\(..\\) +" | |
289 "\\(..:..:..\\) +\\[*\\([^\]]+\\)\\]*$") | |
290 expires) | |
291 (setq expires (concat (match-string 1 expires) " " | |
292 (match-string 2 expires) " " | |
293 (match-string 3 expires) " " | |
294 (match-string 4 expires) " [" | |
295 (match-string 5 expires) "]"))) | |
54695 | 296 |
297 ;; This one is for older Emacs/XEmacs variants that don't | |
298 ;; understand this format without tenths of a second in it. | |
299 ;; Wednesday, 30-Dec-2037 16:00:00 GMT | |
300 ;; - vs - | |
301 ;; Wednesday, 30-Dec-2037 16:00:00.00 GMT | |
111955 | 302 (and expires |
303 (string-match | |
304 "\\([0-9]+\\)-\\([A-Za-z]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)\\(\\.[0-9]+\\)*[ \t]+\\([-+a-zA-Z0-9]+\\)" | |
305 expires) | |
306 (setq expires (concat (match-string 1 expires) "-" ; day | |
307 (match-string 2 expires) "-" ; month | |
308 (match-string 3 expires) " " ; year | |
309 (match-string 4 expires) ".00 " ; hour:minutes:seconds | |
310 (match-string 6 expires)))) ":" ; timezone | |
54817
daf716c39a7f
(url-cookie-handle-set-cookie): Replace calls to obsolete
John Paul Wallington <jpw@pobox.com>
parents:
54794
diff
changeset
|
311 |
54695 | 312 (while (consp trusted) |
313 (if (string-match (car trusted) current-url) | |
314 (setq trusted (- (match-end 0) (match-beginning 0))) | |
315 (pop trusted))) | |
316 (while (consp untrusted) | |
317 (if (string-match (car untrusted) current-url) | |
318 (setq untrusted (- (match-end 0) (match-beginning 0))) | |
319 (pop untrusted))) | |
111955 | 320 (and trusted untrusted |
321 ;; Choose the more specific match. | |
322 (set (if (> trusted untrusted) 'untrusted 'trusted) nil)) | |
54695 | 323 (cond |
324 (untrusted | |
111955 | 325 ;; The site was explicity marked as untrusted by the user. |
54695 | 326 nil) |
327 ((or (eq url-privacy-level 'paranoid) | |
328 (and (listp url-privacy-level) (memq 'cookies url-privacy-level))) | |
111955 | 329 ;; User never wants cookies. |
54695 | 330 nil) |
331 ((and url-cookie-confirmation | |
332 (not trusted) | |
333 (save-window-excursion | |
334 (with-output-to-temp-buffer "*Cookie Warning*" | |
335 (mapcar | |
111955 | 336 (lambda (x) |
337 (princ (format "%s - %s" (car x) (cdr x)))) rest)) | |
54695 | 338 (prog1 |
339 (not (funcall url-confirmation-func | |
340 (format "Allow %s to set these cookies? " | |
341 (url-host url-current-object)))) | |
342 (if (get-buffer "*Cookie Warning*") | |
343 (kill-buffer "*Cookie Warning*"))))) | |
111955 | 344 ;; User wants to be asked, and declined. |
54695 | 345 nil) |
346 ((url-cookie-host-can-set-p (url-host url-current-object) domain) | |
111955 | 347 ;; Cookie is accepted by the user, and passes our security checks. |
348 (dolist (cur rest) | |
349 (url-cookie-store (car cur) (cdr cur) expires domain localpart secure))) | |
54695 | 350 (t |
110685
1d1ed3e3e171
Use url-lazy-message for warnings about ignored cookies.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
110341
diff
changeset
|
351 (url-lazy-message "%s tried to set a cookie for domain %s - rejected." |
1d1ed3e3e171
Use url-lazy-message for warnings about ignored cookies.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
110341
diff
changeset
|
352 (url-host url-current-object) domain))))) |
54695 | 353 |
354 (defvar url-cookie-timer nil) | |
355 | |
356 (defcustom url-cookie-save-interval 3600 | |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
357 "The number of seconds between automatic saves of cookies. |
54695 | 358 Default is 1 hour. Note that if you change this variable outside of |
359 the `customize' interface after `url-do-setup' has been run, you need | |
360 to run the `url-cookie-setup-save-timer' function manually." | |
67368
5c87802be570
(url-cookie-save-interval): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
361 :set #'(lambda (var val) |
5c87802be570
(url-cookie-save-interval): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
362 (set-default var val) |
5c87802be570
(url-cookie-save-interval): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
363 (if (bound-and-true-p url-setup-done) |
5c87802be570
(url-cookie-save-interval): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
364 (url-cookie-setup-save-timer))) |
54695 | 365 :type 'integer |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
366 :group 'url-cookie) |
54695 | 367 |
368 (defun url-cookie-setup-save-timer () | |
369 "Reset the cookie saver timer." | |
370 (interactive) | |
67368
5c87802be570
(url-cookie-save-interval): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
371 (ignore-errors (cancel-timer url-cookie-timer)) |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
372 (setq url-cookie-timer nil) |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
373 (if url-cookie-save-interval |
67368
5c87802be570
(url-cookie-save-interval): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
374 (setq url-cookie-timer (run-at-time url-cookie-save-interval |
5c87802be570
(url-cookie-save-interval): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
375 url-cookie-save-interval |
5c87802be570
(url-cookie-save-interval): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
376 #'url-cookie-write-file)))) |
54695 | 377 |
378 (provide 'url-cookie) | |
379 | |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
380 ;;; url-cookie.el ends here |