Mercurial > emacs
annotate lisp/url/url-cookie.el @ 65165:2a21167e759e
*** empty log message ***
author | John Wiegley <johnw@newartisans.com> |
---|---|
date | Fri, 26 Aug 2005 22:37:16 +0000 |
parents | 875dcc490074 |
children | 5c87802be570 532e0a9335a9 |
rev | line source |
---|---|
54695 | 1 ;;; url-cookie.el --- Netscape Cookie support |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
2 |
64748
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, |
875dcc490074
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
4 ;; 2005 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 ;; |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
10 ;; GNU Emacs is free software; you can redistribute it and/or modify |
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 |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
13 ;; any later version. |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
14 ;; |
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. |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
19 ;; |
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 |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64084 | 22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02110-1301, USA. | |
54794
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 ;;; Commentary: |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
26 |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
27 ;;; Code: |
54695 | 28 |
29 (require 'timezone) | |
30 (require 'url-util) | |
31 (require 'url-parse) | |
32 (eval-when-compile (require 'cl)) | |
33 | |
34 ;; See http://home.netscape.com/newsref/std/cookie_spec.html for the | |
35 ;; 'open standard' defining this crap. | |
36 ;; | |
37 ;; A cookie is stored internally as a vector of 7 slots | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
38 ;; [ cookie NAME VALUE EXPIRES LOCALPART DOMAIN SECURE ] |
54695 | 39 |
40 (defsubst url-cookie-name (cookie) (aref cookie 1)) | |
41 (defsubst url-cookie-value (cookie) (aref cookie 2)) | |
42 (defsubst url-cookie-expires (cookie) (aref cookie 3)) | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
43 (defsubst url-cookie-localpart (cookie) (aref cookie 4)) |
54695 | 44 (defsubst url-cookie-domain (cookie) (aref cookie 5)) |
45 (defsubst url-cookie-secure (cookie) (aref cookie 6)) | |
46 | |
47 (defsubst url-cookie-set-name (cookie val) (aset cookie 1 val)) | |
48 (defsubst url-cookie-set-value (cookie val) (aset cookie 2 val)) | |
49 (defsubst url-cookie-set-expires (cookie val) (aset cookie 3 val)) | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
50 (defsubst url-cookie-set-localpart (cookie val) (aset cookie 4 val)) |
54695 | 51 (defsubst url-cookie-set-domain (cookie val) (aset cookie 5 val)) |
52 (defsubst url-cookie-set-secure (cookie val) (aset cookie 6 val)) | |
53 (defsubst url-cookie-retrieve-arg (key args) (nth 1 (memq key args))) | |
54 | |
55 (defsubst url-cookie-create (&rest args) | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
56 "Create a cookie vector object from keyword-value pairs ARGS. |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
57 The keywords allowed are |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
58 :name NAME |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
59 :value VALUE |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
60 :expires TIME |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
61 :localpart LOCALPAR |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
62 :domain DOMAIN |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
63 :secure ??? |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
64 Could someone fill in more information?" |
54695 | 65 (let ((retval (make-vector 7 nil))) |
66 (aset retval 0 'cookie) | |
67 (url-cookie-set-name retval (url-cookie-retrieve-arg :name args)) | |
68 (url-cookie-set-value retval (url-cookie-retrieve-arg :value args)) | |
69 (url-cookie-set-expires retval (url-cookie-retrieve-arg :expires args)) | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
70 (url-cookie-set-localpart retval (url-cookie-retrieve-arg :localpart args)) |
54695 | 71 (url-cookie-set-domain retval (url-cookie-retrieve-arg :domain args)) |
72 (url-cookie-set-secure retval (url-cookie-retrieve-arg :secure args)) | |
73 retval)) | |
74 | |
75 (defun url-cookie-p (obj) | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
76 "Return non-nil if OBJ is a cookie vector object. |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
77 These objects represent cookies in the URL package. |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
78 A cookie vector object is a vector of 7 slots: |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
79 [cookie NAME VALUE EXPIRES LOCALPART DOMAIN SECURE]." |
54695 | 80 (and (vectorp obj) (= (length obj) 7) (eq (aref obj 0) 'cookie))) |
81 | |
82 (defgroup url-cookie nil | |
63986
8d2417e75fe5
(url-cookie): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63801
diff
changeset
|
83 "URL cookies." |
54695 | 84 :prefix "url-" |
85 :prefix "url-cookie-" | |
86 :group 'url) | |
87 | |
88 (defvar url-cookie-storage nil "Where cookies are stored.") | |
89 (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
|
90 (defcustom url-cookie-file nil |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
91 "*File where cookies are stored on disk." |
54695 | 92 :type '(choice (const :tag "Default" :value nil) file) |
93 :group 'url-file | |
94 :group 'url-cookie) | |
95 | |
96 (defcustom url-cookie-confirmation nil | |
97 "*If non-nil, confirmation by the user is required to accept HTTP cookies." | |
98 :type 'boolean | |
99 :group 'url-cookie) | |
100 | |
101 (defcustom url-cookie-multiple-line nil | |
102 "*If nil, HTTP requests put all cookies for the server on one line. | |
103 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
|
104 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
|
105 telling Microsoft that." |
b2ba3b366582
(url-cookie-multiple-line): Specify group and type in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
62400
diff
changeset
|
106 :type 'boolean |
b2ba3b366582
(url-cookie-multiple-line): Specify group and type in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
62400
diff
changeset
|
107 :group 'url-cookie) |
54695 | 108 |
109 (defvar url-cookies-changed-since-last-save nil | |
110 "Whether the cookies list has changed since the last save operation.") | |
111 | |
112 ;;;###autoload | |
113 (defun url-cookie-parse-file (&optional fname) | |
114 (setq fname (or fname url-cookie-file)) | |
115 (condition-case () | |
116 (load fname nil t) | |
117 (error (message "Could not load cookie file %s" fname)))) | |
118 | |
119 (defun url-cookie-clean-up (&optional secure) | |
120 (let* ( | |
121 (var (if secure 'url-cookie-secure-storage 'url-cookie-storage)) | |
122 (val (symbol-value var)) | |
123 (cur nil) | |
124 (new nil) | |
125 (cookies nil) | |
126 (cur-cookie nil) | |
127 (new-cookies nil) | |
128 ) | |
129 (while val | |
130 (setq cur (car val) | |
131 val (cdr val) | |
132 new-cookies nil | |
133 cookies (cdr cur)) | |
134 (while cookies | |
135 (setq cur-cookie (car cookies) | |
136 cookies (cdr cookies)) | |
137 (if (or (not (url-cookie-p cur-cookie)) | |
138 (url-cookie-expired-p cur-cookie) | |
139 (null (url-cookie-expires cur-cookie))) | |
140 nil | |
141 (setq new-cookies (cons cur-cookie new-cookies)))) | |
142 (if (not new-cookies) | |
143 nil | |
144 (setcdr cur new-cookies) | |
145 (setq new (cons cur new)))) | |
146 (set var new))) | |
147 | |
148 ;;;###autoload | |
149 (defun url-cookie-write-file (&optional fname) | |
150 (setq fname (or fname url-cookie-file)) | |
151 (cond | |
152 ((not url-cookies-changed-since-last-save) nil) | |
153 ((not (file-writable-p fname)) | |
154 (message "Cookies file %s (see variable `url-cookie-file') is unwritable." fname)) | |
155 (t | |
156 (url-cookie-clean-up) | |
157 (url-cookie-clean-up t) | |
158 (save-excursion | |
159 (set-buffer (get-buffer-create " *cookies*")) | |
160 (erase-buffer) | |
161 (fundamental-mode) | |
162 (insert ";; Emacs-W3 HTTP cookies file\n" | |
163 ";; Automatically generated file!!! DO NOT EDIT!!!\n\n" | |
164 "(setq url-cookie-storage\n '") | |
165 (pp url-cookie-storage (current-buffer)) | |
166 (insert ")\n(setq url-cookie-secure-storage\n '") | |
167 (pp url-cookie-secure-storage (current-buffer)) | |
168 (insert ")\n") | |
169 (write-file fname) | |
170 (kill-buffer (current-buffer)))))) | |
171 | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
172 (defun url-cookie-store (name value &optional expires domain localpart secure) |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
173 "Store a netscape-style cookie." |
54695 | 174 (let* ((storage (if secure url-cookie-secure-storage url-cookie-storage)) |
175 (tmp storage) | |
176 (cur nil) | |
177 (found-domain nil)) | |
178 | |
179 ;; First, look for a matching domain | |
180 (setq found-domain (assoc domain storage)) | |
181 | |
182 (if found-domain | |
183 ;; Need to either stick the new cookie in existing domain storage | |
184 ;; or possibly replace an existing cookie if the names match. | |
185 (progn | |
186 (setq storage (cdr found-domain) | |
187 tmp nil) | |
188 (while storage | |
189 (setq cur (car storage) | |
190 storage (cdr storage)) | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
191 (if (and (equal localpart (url-cookie-localpart cur)) |
54695 | 192 (equal name (url-cookie-name cur))) |
193 (progn | |
194 (url-cookie-set-expires cur expires) | |
195 (url-cookie-set-value cur value) | |
196 (setq tmp t)))) | |
197 (if (not tmp) | |
198 ;; New cookie | |
199 (setcdr found-domain (cons | |
200 (url-cookie-create :name name | |
201 :value value | |
202 :expires expires | |
203 :domain domain | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
204 :localpart localpart |
54695 | 205 :secure secure) |
206 (cdr found-domain))))) | |
207 ;; Need to add a new top-level domain | |
208 (setq tmp (url-cookie-create :name name | |
209 :value value | |
210 :expires expires | |
211 :domain domain | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
212 :localpart localpart |
54695 | 213 :secure secure)) |
214 (cond | |
215 (storage | |
216 (setcdr storage (cons (list domain tmp) (cdr storage)))) | |
217 (secure | |
218 (setq url-cookie-secure-storage (list (list domain tmp)))) | |
219 (t | |
220 (setq url-cookie-storage (list (list domain tmp)))))))) | |
221 | |
222 (defun url-cookie-expired-p (cookie) | |
223 (let* ( | |
224 (exp (url-cookie-expires cookie)) | |
225 (cur-date (and exp (timezone-parse-date (current-time-string)))) | |
226 (exp-date (and exp (timezone-parse-date exp))) | |
227 (cur-greg (and cur-date (timezone-absolute-from-gregorian | |
62400
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
57427
diff
changeset
|
228 (string-to-number (aref cur-date 1)) |
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
57427
diff
changeset
|
229 (string-to-number (aref cur-date 2)) |
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
57427
diff
changeset
|
230 (string-to-number (aref cur-date 0))))) |
54695 | 231 (exp-greg (and exp (timezone-absolute-from-gregorian |
62400
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
57427
diff
changeset
|
232 (string-to-number (aref exp-date 1)) |
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
57427
diff
changeset
|
233 (string-to-number (aref exp-date 2)) |
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
57427
diff
changeset
|
234 (string-to-number (aref exp-date 0))))) |
54695 | 235 (diff-in-days (and exp (- cur-greg exp-greg))) |
236 ) | |
237 (cond | |
238 ((not exp) nil) ; No expiry == expires at browser quit | |
239 ((< diff-in-days 0) nil) ; Expires sometime after today | |
240 ((> diff-in-days 0) t) ; Expired before today | |
241 (t ; Expires sometime today, check times | |
242 (let* ((cur-time (timezone-parse-time (aref cur-date 3))) | |
243 (exp-time (timezone-parse-time (aref exp-date 3))) | |
62400
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
57427
diff
changeset
|
244 (cur-norm (+ (* 360 (string-to-number (aref cur-time 2))) |
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
57427
diff
changeset
|
245 (* 60 (string-to-number (aref cur-time 1))) |
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
57427
diff
changeset
|
246 (* 1 (string-to-number (aref cur-time 0))))) |
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
57427
diff
changeset
|
247 (exp-norm (+ (* 360 (string-to-number (aref exp-time 2))) |
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
57427
diff
changeset
|
248 (* 60 (string-to-number (aref exp-time 1))) |
e30c08177a3b
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
57427
diff
changeset
|
249 (* 1 (string-to-number (aref exp-time 0)))))) |
54695 | 250 (> (- cur-norm exp-norm) 1)))))) |
251 | |
252 ;;;###autoload | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
253 (defun url-cookie-retrieve (host localpart &optional secure) |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
254 "Retrieve all the netscape-style cookies for a specified HOST and LOCALPART." |
54695 | 255 (let ((storage (if secure |
256 (append url-cookie-secure-storage url-cookie-storage) | |
257 url-cookie-storage)) | |
258 (case-fold-search t) | |
259 (cookies nil) | |
260 (cur nil) | |
261 (retval nil) | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
262 (localpart-regexp nil)) |
54695 | 263 (while storage |
264 (setq cur (car storage) | |
265 storage (cdr storage) | |
266 cookies (cdr cur)) | |
267 (if (and (car cur) | |
268 (string-match (concat "^.*" (regexp-quote (car cur)) "$") host)) | |
269 ;; The domains match - a possible hit! | |
270 (while cookies | |
271 (setq cur (car cookies) | |
272 cookies (cdr cookies) | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
273 localpart-regexp (concat "^" (regexp-quote |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
274 (url-cookie-localpart cur)))) |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
275 (if (and (string-match localpart-regexp localpart) |
54695 | 276 (not (url-cookie-expired-p cur))) |
277 (setq retval (cons cur retval)))))) | |
278 retval)) | |
279 | |
63718
47f9bb41d144
(url-cookie-generate-header-lines): Fix autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
63248
diff
changeset
|
280 ;;;###autoload |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
281 (defun url-cookie-generate-header-lines (host localpart secure) |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
282 (let* ((cookies (url-cookie-retrieve host localpart secure)) |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
283 (retval nil) |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
284 (cur nil) |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
285 (chunk nil)) |
54695 | 286 ;; Have to sort this for sending most specific cookies first |
287 (setq cookies (and cookies | |
288 (sort cookies | |
289 (function | |
290 (lambda (x y) | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
291 (> (length (url-cookie-localpart x)) |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
292 (length (url-cookie-localpart y)))))))) |
54695 | 293 (while cookies |
294 (setq cur (car cookies) | |
295 cookies (cdr cookies) | |
296 chunk (format "%s=%s" (url-cookie-name cur) (url-cookie-value cur)) | |
297 retval (if (and url-cookie-multiple-line | |
298 (< 80 (+ (length retval) (length chunk) 4))) | |
299 (concat retval "\r\nCookie: " chunk) | |
300 (if retval | |
301 (concat retval "; " chunk) | |
302 (concat "Cookie: " chunk))))) | |
303 (if retval | |
304 (concat retval "\r\n") | |
305 ""))) | |
306 | |
307 (defvar url-cookie-two-dot-domains | |
308 (concat "\\.\\(" | |
309 (mapconcat 'identity (list "com" "edu" "net" "org" "gov" "mil" "int") | |
310 "\\|") | |
311 "\\)$") | |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
312 "A regexp of top level domains that only require two matching |
54695 | 313 '.'s in the domain name in order to set a cookie.") |
314 | |
315 (defcustom url-cookie-trusted-urls nil | |
316 "*A list of regular expressions matching URLs to always accept cookies from." | |
317 :type '(repeat regexp) | |
318 :group 'url-cookie) | |
319 | |
320 (defcustom url-cookie-untrusted-urls nil | |
321 "*A list of regular expressions matching URLs to never accept cookies from." | |
322 :type '(repeat regexp) | |
323 :group 'url-cookie) | |
324 | |
325 (defun url-cookie-host-can-set-p (host domain) | |
326 (let ((numdots 0) | |
327 (tmp domain) | |
328 (last nil) | |
329 (case-fold-search t) | |
330 (mindots 3)) | |
331 (while (setq last (string-match "\\." domain last)) | |
332 (setq numdots (1+ numdots) | |
333 last (1+ last))) | |
334 (if (string-match url-cookie-two-dot-domains domain) | |
335 (setq mindots 2)) | |
336 (cond | |
337 ((string= host domain) ; Apparently netscape lets you do this | |
338 t) | |
339 ((>= numdots mindots) ; We have enough dots in domain name | |
340 ;; Need to check and make sure the host is actually _in_ the | |
341 ;; domain it wants to set a cookie for though. | |
342 (string-match (concat (regexp-quote domain) "$") host)) | |
343 (t | |
344 nil)))) | |
345 | |
346 ;;;###autoload | |
347 (defun url-cookie-handle-set-cookie (str) | |
348 (setq url-cookies-changed-since-last-save t) | |
349 (let* ((args (url-parse-args str t)) | |
350 (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
|
351 (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
|
352 (domain (or (cdr-safe (assoc-string "domain" args t)) |
54695 | 353 (url-host url-current-object))) |
354 (current-url (url-view-url t)) | |
355 (trusted url-cookie-trusted-urls) | |
356 (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
|
357 (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
|
358 (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
|
359 (file-name-directory |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
360 (url-filename url-current-object)))) |
54695 | 361 (rest nil)) |
362 (while args | |
363 (if (not (member (downcase (car (car args))) | |
364 '("secure" "domain" "expires" "path"))) | |
365 (setq rest (cons (car args) rest))) | |
366 (setq args (cdr args))) | |
367 | |
368 ;; Sometimes we get dates that the timezone package cannot handle very | |
369 ;; gracefully - take care of this here, instead of in url-cookie-expired-p | |
370 ;; to speed things up. | |
371 (if (and expires | |
372 (string-match | |
373 (concat "^[^,]+, +\\(..\\)-\\(...\\)-\\(..\\) +" | |
374 "\\(..:..:..\\) +\\[*\\([^\]]+\\)\\]*$") | |
375 expires)) | |
376 (setq expires (concat (match-string 1 expires) " " | |
377 (match-string 2 expires) " " | |
378 (match-string 3 expires) " " | |
379 (match-string 4 expires) " [" | |
380 (match-string 5 expires) "]"))) | |
381 | |
382 ;; This one is for older Emacs/XEmacs variants that don't | |
383 ;; understand this format without tenths of a second in it. | |
384 ;; Wednesday, 30-Dec-2037 16:00:00 GMT | |
385 ;; - vs - | |
386 ;; Wednesday, 30-Dec-2037 16:00:00.00 GMT | |
387 (if (and expires | |
388 (string-match | |
389 "\\([0-9]+\\)-\\([A-Za-z]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)\\(\\.[0-9]+\\)*[ \t]+\\([-+a-zA-Z0-9]+\\)" | |
390 expires)) | |
391 (setq expires (concat (match-string 1 expires) "-" ; day | |
392 (match-string 2 expires) "-" ; month | |
393 (match-string 3 expires) " " ; year | |
394 (match-string 4 expires) ".00 " ; hour:minutes:seconds | |
395 (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
|
396 |
54695 | 397 (while (consp trusted) |
398 (if (string-match (car trusted) current-url) | |
399 (setq trusted (- (match-end 0) (match-beginning 0))) | |
400 (pop trusted))) | |
401 (while (consp untrusted) | |
402 (if (string-match (car untrusted) current-url) | |
403 (setq untrusted (- (match-end 0) (match-beginning 0))) | |
404 (pop untrusted))) | |
405 (if (and trusted untrusted) | |
406 ;; Choose the more specific match | |
407 (if (> trusted untrusted) | |
408 (setq untrusted nil) | |
409 (setq trusted nil))) | |
410 (cond | |
411 (untrusted | |
412 ;; The site was explicity marked as untrusted by the user | |
413 nil) | |
414 ((or (eq url-privacy-level 'paranoid) | |
415 (and (listp url-privacy-level) (memq 'cookies url-privacy-level))) | |
416 ;; user never wants cookies | |
417 nil) | |
418 ((and url-cookie-confirmation | |
419 (not trusted) | |
420 (save-window-excursion | |
421 (with-output-to-temp-buffer "*Cookie Warning*" | |
422 (mapcar | |
423 (function | |
424 (lambda (x) | |
425 (princ (format "%s - %s" (car x) (cdr x))))) rest)) | |
426 (prog1 | |
427 (not (funcall url-confirmation-func | |
428 (format "Allow %s to set these cookies? " | |
429 (url-host url-current-object)))) | |
430 (if (get-buffer "*Cookie Warning*") | |
431 (kill-buffer "*Cookie Warning*"))))) | |
432 ;; user wants to be asked, and declined. | |
433 nil) | |
434 ((url-cookie-host-can-set-p (url-host url-current-object) domain) | |
435 ;; Cookie is accepted by the user, and passes our security checks | |
436 (let ((cur nil)) | |
437 (while rest | |
438 (setq cur (pop rest)) | |
439 (url-cookie-store (car cur) (cdr cur) | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
440 expires domain localpart secure)))) |
54695 | 441 (t |
442 (message "%s tried to set a cookie for domain %s - rejected." | |
443 (url-host url-current-object) domain))))) | |
444 | |
445 (defvar url-cookie-timer nil) | |
446 | |
447 (defcustom url-cookie-save-interval 3600 | |
448 "*The number of seconds between automatic saves of cookies. | |
449 Default is 1 hour. Note that if you change this variable outside of | |
450 the `customize' interface after `url-do-setup' has been run, you need | |
451 to run the `url-cookie-setup-save-timer' function manually." | |
452 :set (function (lambda (var val) | |
453 (set-default var val) | |
454 (and (featurep 'url) | |
455 (fboundp 'url-cookie-setup-save-timer) | |
456 (url-cookie-setup-save-timer)))) | |
457 :type 'integer | |
458 :group 'url) | |
459 | |
460 ;;;###autoload | |
461 (defun url-cookie-setup-save-timer () | |
462 "Reset the cookie saver timer." | |
463 (interactive) | |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
464 (ignore-errors |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
465 (cond ((fboundp 'cancel-timer) (cancel-timer url-cookie-timer)) |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
466 ((fboundp 'delete-itimer) (delete-itimer url-cookie-timer)))) |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
467 (setq url-cookie-timer nil) |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
468 (if url-cookie-save-interval |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
469 (setq url-cookie-timer |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
470 (cond |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
471 ((fboundp 'run-at-time) |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
472 (run-at-time url-cookie-save-interval |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
473 url-cookie-save-interval |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
474 'url-cookie-write-file)) |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
475 ((fboundp 'start-itimer) |
54695 | 476 (start-itimer "url-cookie-saver" 'url-cookie-write-file |
477 url-cookie-save-interval | |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
478 url-cookie-save-interval)))))) |
54695 | 479 |
480 (provide 'url-cookie) | |
481 | |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
482 ;; arch-tag: 2568751b-6452-4398-aa2d-303edadb54d7 |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
483 ;;; url-cookie.el ends here |