Mercurial > emacs
annotate lisp/url/url-cookie.el @ 87902:2080d155f7aa
** Make longlines-mode wrap lines based on screen position instead
of character position, so that variable-width fonts can be handled
properly.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Tue, 22 Jan 2008 15:44:14 +0000 |
parents | 107ccd98fa12 |
children | 8259d0d8e107 |
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, |
79720 | 4 ;; 2005, 2006, 2007, 2008 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 |
78222
8932997d0b62
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
76859
diff
changeset
|
12 ;; the Free Software Foundation; either version 3, or (at your option) |
54794
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 (defgroup url-cookie nil | |
63986
8d2417e75fe5
(url-cookie): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63801
diff
changeset
|
38 "URL cookies." |
54695 | 39 :prefix "url-" |
40 :prefix "url-cookie-" | |
41 :group 'url) | |
42 | |
81328
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
43 ;; 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
|
44 ;; [ 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
|
45 |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
46 (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
|
47 (: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
|
48 (: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
|
49 ;; 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
|
50 ;; 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
|
51 ;; 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
|
52 ;; 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
|
53 (: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
|
54 (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
|
55 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
|
56 |
54695 | 57 (defvar url-cookie-storage nil "Where cookies are stored.") |
58 (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
|
59 (defcustom url-cookie-file nil |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
60 "File where cookies are stored on disk." |
54695 | 61 :type '(choice (const :tag "Default" :value nil) file) |
62 :group 'url-file | |
63 :group 'url-cookie) | |
64 | |
65 (defcustom url-cookie-confirmation nil | |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
66 "If non-nil, confirmation by the user is required to accept HTTP cookies." |
54695 | 67 :type 'boolean |
68 :group 'url-cookie) | |
69 | |
70 (defcustom url-cookie-multiple-line nil | |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
71 "If nil, HTTP requests put all cookies for the server on one line. |
54695 | 72 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
|
73 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
|
74 telling Microsoft that." |
b2ba3b366582
(url-cookie-multiple-line): Specify group and type in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
62400
diff
changeset
|
75 :type 'boolean |
b2ba3b366582
(url-cookie-multiple-line): Specify group and type in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
62400
diff
changeset
|
76 :group 'url-cookie) |
54695 | 77 |
78 (defvar url-cookies-changed-since-last-save nil | |
79 "Whether the cookies list has changed since the last save operation.") | |
80 | |
81 (defun url-cookie-parse-file (&optional fname) | |
82 (setq fname (or fname url-cookie-file)) | |
83 (condition-case () | |
84 (load fname nil t) | |
68055
63366306c117
(url-cookie-parse-file): Don't complain of missing file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67723
diff
changeset
|
85 (error |
63366306c117
(url-cookie-parse-file): Don't complain of missing file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67723
diff
changeset
|
86 ;; It's completely normal for the cookies file not to exist yet. |
63366306c117
(url-cookie-parse-file): Don't complain of missing file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67723
diff
changeset
|
87 ;; (message "Could not load cookie file %s" fname) |
63366306c117
(url-cookie-parse-file): Don't complain of missing file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
67723
diff
changeset
|
88 ))) |
54695 | 89 |
86848
9bdd5616eaa8
(url-cookie-p): Declare as a function.
Glenn Morris <rgm@gnu.org>
parents:
86486
diff
changeset
|
90 (declare-function url-cookie-p "url-cookie" t t) ; defstruct |
86486 | 91 |
54695 | 92 (defun url-cookie-clean-up (&optional secure) |
93 (let* ( | |
94 (var (if secure 'url-cookie-secure-storage 'url-cookie-storage)) | |
95 (val (symbol-value var)) | |
96 (cur nil) | |
97 (new nil) | |
98 (cookies nil) | |
99 (cur-cookie nil) | |
100 (new-cookies nil) | |
101 ) | |
102 (while val | |
103 (setq cur (car val) | |
104 val (cdr val) | |
105 new-cookies nil | |
106 cookies (cdr cur)) | |
107 (while cookies | |
108 (setq cur-cookie (car cookies) | |
109 cookies (cdr cookies)) | |
110 (if (or (not (url-cookie-p cur-cookie)) | |
111 (url-cookie-expired-p cur-cookie) | |
112 (null (url-cookie-expires cur-cookie))) | |
113 nil | |
114 (setq new-cookies (cons cur-cookie new-cookies)))) | |
115 (if (not new-cookies) | |
116 nil | |
117 (setcdr cur new-cookies) | |
118 (setq new (cons cur new)))) | |
119 (set var new))) | |
120 | |
121 (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
|
122 (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
|
123 (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
|
124 (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
|
125 (progn |
239cccb702f6
(url-cookie-write-file): Use url-make-private-file and with-temp-buffer.
Glenn Morris <rgm@gnu.org>
parents:
78222
diff
changeset
|
126 (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
|
127 nil) |
239cccb702f6
(url-cookie-write-file): Use url-make-private-file and with-temp-buffer.
Glenn Morris <rgm@gnu.org>
parents:
78222
diff
changeset
|
128 (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
|
129 (message "Error accessing cookie file `%s'" fname) |
54695 | 130 (url-cookie-clean-up) |
131 (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
|
132 (with-temp-buffer |
54695 | 133 (insert ";; Emacs-W3 HTTP cookies file\n" |
134 ";; Automatically generated file!!! DO NOT EDIT!!!\n\n" | |
135 "(setq url-cookie-storage\n '") | |
136 (pp url-cookie-storage (current-buffer)) | |
137 (insert ")\n(setq url-cookie-secure-storage\n '") | |
138 (pp url-cookie-secure-storage (current-buffer)) | |
139 (insert ")\n") | |
72573
fd926d483a42
(url-cookie-write-file): Really don't use versioned backups.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71788
diff
changeset
|
140 (insert "\n;; Local Variables:\n" |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
141 ";; version-control: never\n" |
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
142 ";; no-byte-compile: t\n" |
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
143 ";; End:\n") |
72573
fd926d483a42
(url-cookie-write-file): Really don't use versioned backups.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
71788
diff
changeset
|
144 (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
|
145 (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
|
146 (setq url-cookies-changed-since-last-save nil)))) |
54695 | 147 |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
148 (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
|
149 "Store a netscape-style cookie." |
54695 | 150 (let* ((storage (if secure url-cookie-secure-storage url-cookie-storage)) |
151 (tmp storage) | |
152 (cur nil) | |
153 (found-domain nil)) | |
154 | |
155 ;; First, look for a matching domain | |
156 (setq found-domain (assoc domain storage)) | |
157 | |
158 (if found-domain | |
159 ;; Need to either stick the new cookie in existing domain storage | |
160 ;; or possibly replace an existing cookie if the names match. | |
161 (progn | |
162 (setq storage (cdr found-domain) | |
163 tmp nil) | |
164 (while storage | |
165 (setq cur (car storage) | |
166 storage (cdr storage)) | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
167 (if (and (equal localpart (url-cookie-localpart cur)) |
54695 | 168 (equal name (url-cookie-name cur))) |
169 (progn | |
81328
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
170 (setf (url-cookie-expires cur) expires) |
99942c448a6f
(url-cookie-name, url-cookie-value, url-cookie-expires, url-cookie-localpart)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
76859
diff
changeset
|
171 (setf (url-cookie-value cur) value) |
54695 | 172 (setq tmp t)))) |
173 (if (not tmp) | |
174 ;; New cookie | |
175 (setcdr found-domain (cons | |
176 (url-cookie-create :name name | |
177 :value value | |
178 :expires expires | |
179 :domain domain | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
180 :localpart localpart |
54695 | 181 :secure secure) |
182 (cdr found-domain))))) | |
183 ;; Need to add a new top-level domain | |
184 (setq tmp (url-cookie-create :name name | |
185 :value value | |
186 :expires expires | |
187 :domain domain | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
188 :localpart localpart |
54695 | 189 :secure secure)) |
190 (cond | |
191 (storage | |
192 (setcdr storage (cons (list domain tmp) (cdr storage)))) | |
193 (secure | |
194 (setq url-cookie-secure-storage (list (list domain tmp)))) | |
195 (t | |
196 (setq url-cookie-storage (list (list domain tmp)))))))) | |
197 | |
198 (defun url-cookie-expired-p (cookie) | |
199 (let* ( | |
200 (exp (url-cookie-expires cookie)) | |
201 (cur-date (and exp (timezone-parse-date (current-time-string)))) | |
202 (exp-date (and exp (timezone-parse-date exp))) | |
203 (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
|
204 (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
|
205 (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
|
206 (string-to-number (aref cur-date 0))))) |
54695 | 207 (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
|
208 (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
|
209 (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
|
210 (string-to-number (aref exp-date 0))))) |
54695 | 211 (diff-in-days (and exp (- cur-greg exp-greg))) |
212 ) | |
213 (cond | |
214 ((not exp) nil) ; No expiry == expires at browser quit | |
215 ((< diff-in-days 0) nil) ; Expires sometime after today | |
216 ((> diff-in-days 0) t) ; Expired before today | |
217 (t ; Expires sometime today, check times | |
218 (let* ((cur-time (timezone-parse-time (aref cur-date 3))) | |
219 (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
|
220 (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
|
221 (* 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
|
222 (* 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
|
223 (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
|
224 (* 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
|
225 (* 1 (string-to-number (aref exp-time 0)))))) |
54695 | 226 (> (- cur-norm exp-norm) 1)))))) |
227 | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
228 (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
|
229 "Retrieve all the netscape-style cookies for a specified HOST and LOCALPART." |
54695 | 230 (let ((storage (if secure |
231 (append url-cookie-secure-storage url-cookie-storage) | |
232 url-cookie-storage)) | |
233 (case-fold-search t) | |
234 (cookies nil) | |
235 (cur nil) | |
236 (retval nil) | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
237 (localpart-regexp nil)) |
54695 | 238 (while storage |
239 (setq cur (car storage) | |
240 storage (cdr storage) | |
241 cookies (cdr cur)) | |
242 (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
|
243 (string-match |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
244 (concat "^.*" |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
245 (regexp-quote |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
246 ;; 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
|
247 ;; before matching. |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
248 (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
|
249 (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
|
250 (car cur))) |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
251 "$") host)) |
54695 | 252 ;; The domains match - a possible hit! |
253 (while cookies | |
254 (setq cur (car cookies) | |
255 cookies (cdr cookies) | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
256 localpart-regexp (concat "^" (regexp-quote |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
257 (url-cookie-localpart cur)))) |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
258 (if (and (string-match localpart-regexp localpart) |
54695 | 259 (not (url-cookie-expired-p cur))) |
260 (setq retval (cons cur retval)))))) | |
261 retval)) | |
262 | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
263 (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
|
264 (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
|
265 (retval nil) |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
266 (cur nil) |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
267 (chunk nil)) |
54695 | 268 ;; Have to sort this for sending most specific cookies first |
269 (setq cookies (and cookies | |
270 (sort cookies | |
271 (function | |
272 (lambda (x y) | |
63801
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
273 (> (length (url-cookie-localpart x)) |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
274 (length (url-cookie-localpart y)))))))) |
54695 | 275 (while cookies |
276 (setq cur (car cookies) | |
277 cookies (cdr cookies) | |
278 chunk (format "%s=%s" (url-cookie-name cur) (url-cookie-value cur)) | |
279 retval (if (and url-cookie-multiple-line | |
280 (< 80 (+ (length retval) (length chunk) 4))) | |
281 (concat retval "\r\nCookie: " chunk) | |
282 (if retval | |
283 (concat retval "; " chunk) | |
284 (concat "Cookie: " chunk))))) | |
285 (if retval | |
286 (concat retval "\r\n") | |
287 ""))) | |
288 | |
289 (defvar url-cookie-two-dot-domains | |
290 (concat "\\.\\(" | |
291 (mapconcat 'identity (list "com" "edu" "net" "org" "gov" "mil" "int") | |
292 "\\|") | |
293 "\\)$") | |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
294 "A regexp of top level domains that only require two matching |
54695 | 295 '.'s in the domain name in order to set a cookie.") |
296 | |
297 (defcustom url-cookie-trusted-urls nil | |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
298 "A list of regular expressions matching URLs to always accept cookies from." |
54695 | 299 :type '(repeat regexp) |
300 :group 'url-cookie) | |
301 | |
302 (defcustom url-cookie-untrusted-urls nil | |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
303 "A list of regular expressions matching URLs to never accept cookies from." |
54695 | 304 :type '(repeat regexp) |
305 :group 'url-cookie) | |
306 | |
307 (defun url-cookie-host-can-set-p (host domain) | |
308 (let ((numdots 0) | |
309 (last nil) | |
310 (case-fold-search t) | |
311 (mindots 3)) | |
312 (while (setq last (string-match "\\." domain last)) | |
313 (setq numdots (1+ numdots) | |
314 last (1+ last))) | |
315 (if (string-match url-cookie-two-dot-domains domain) | |
316 (setq mindots 2)) | |
317 (cond | |
318 ((string= host domain) ; Apparently netscape lets you do this | |
319 t) | |
320 ((>= numdots mindots) ; We have enough dots in domain name | |
321 ;; Need to check and make sure the host is actually _in_ the | |
322 ;; 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
|
323 (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
|
324 ;; 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
|
325 ;; before matching. |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
326 (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
|
327 (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
|
328 domain)) |
8fca90acf555
(url-cookie-retrieve, url-cookie-host-can-set-p): Deal with wildcard
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
329 "$") host)) |
54695 | 330 (t |
331 nil)))) | |
332 | |
333 (defun url-cookie-handle-set-cookie (str) | |
334 (setq url-cookies-changed-since-last-save t) | |
335 (let* ((args (url-parse-args str t)) | |
336 (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
|
337 (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
|
338 (domain (or (cdr-safe (assoc-string "domain" args t)) |
54695 | 339 (url-host url-current-object))) |
340 (current-url (url-view-url t)) | |
341 (trusted url-cookie-trusted-urls) | |
342 (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
|
343 (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
|
344 (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
|
345 (file-name-directory |
c234ee23e519
(url-cookie-store): Rename arg PATH to LOCALPART.
Richard M. Stallman <rms@gnu.org>
parents:
63718
diff
changeset
|
346 (url-filename url-current-object)))) |
54695 | 347 (rest nil)) |
348 (while args | |
349 (if (not (member (downcase (car (car args))) | |
350 '("secure" "domain" "expires" "path"))) | |
351 (setq rest (cons (car args) rest))) | |
352 (setq args (cdr args))) | |
353 | |
354 ;; Sometimes we get dates that the timezone package cannot handle very | |
355 ;; gracefully - take care of this here, instead of in url-cookie-expired-p | |
356 ;; to speed things up. | |
357 (if (and expires | |
358 (string-match | |
359 (concat "^[^,]+, +\\(..\\)-\\(...\\)-\\(..\\) +" | |
360 "\\(..:..:..\\) +\\[*\\([^\]]+\\)\\]*$") | |
361 expires)) | |
362 (setq expires (concat (match-string 1 expires) " " | |
363 (match-string 2 expires) " " | |
364 (match-string 3 expires) " " | |
365 (match-string 4 expires) " [" | |
366 (match-string 5 expires) "]"))) | |
367 | |
368 ;; This one is for older Emacs/XEmacs variants that don't | |
369 ;; understand this format without tenths of a second in it. | |
370 ;; Wednesday, 30-Dec-2037 16:00:00 GMT | |
371 ;; - vs - | |
372 ;; Wednesday, 30-Dec-2037 16:00:00.00 GMT | |
373 (if (and expires | |
374 (string-match | |
375 "\\([0-9]+\\)-\\([A-Za-z]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)\\(\\.[0-9]+\\)*[ \t]+\\([-+a-zA-Z0-9]+\\)" | |
376 expires)) | |
377 (setq expires (concat (match-string 1 expires) "-" ; day | |
378 (match-string 2 expires) "-" ; month | |
379 (match-string 3 expires) " " ; year | |
380 (match-string 4 expires) ".00 " ; hour:minutes:seconds | |
381 (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
|
382 |
54695 | 383 (while (consp trusted) |
384 (if (string-match (car trusted) current-url) | |
385 (setq trusted (- (match-end 0) (match-beginning 0))) | |
386 (pop trusted))) | |
387 (while (consp untrusted) | |
388 (if (string-match (car untrusted) current-url) | |
389 (setq untrusted (- (match-end 0) (match-beginning 0))) | |
390 (pop untrusted))) | |
391 (if (and trusted untrusted) | |
392 ;; Choose the more specific match | |
393 (if (> trusted untrusted) | |
394 (setq untrusted nil) | |
395 (setq trusted nil))) | |
396 (cond | |
397 (untrusted | |
398 ;; The site was explicity marked as untrusted by the user | |
399 nil) | |
400 ((or (eq url-privacy-level 'paranoid) | |
401 (and (listp url-privacy-level) (memq 'cookies url-privacy-level))) | |
402 ;; user never wants cookies | |
403 nil) | |
404 ((and url-cookie-confirmation | |
405 (not trusted) | |
406 (save-window-excursion | |
407 (with-output-to-temp-buffer "*Cookie Warning*" | |
408 (mapcar | |
409 (function | |
410 (lambda (x) | |
411 (princ (format "%s - %s" (car x) (cdr x))))) rest)) | |
412 (prog1 | |
413 (not (funcall url-confirmation-func | |
414 (format "Allow %s to set these cookies? " | |
415 (url-host url-current-object)))) | |
416 (if (get-buffer "*Cookie Warning*") | |
417 (kill-buffer "*Cookie Warning*"))))) | |
418 ;; user wants to be asked, and declined. | |
419 nil) | |
420 ((url-cookie-host-can-set-p (url-host url-current-object) domain) | |
421 ;; Cookie is accepted by the user, and passes our security checks | |
422 (let ((cur nil)) | |
423 (while rest | |
424 (setq cur (pop rest)) | |
425 (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
|
426 expires domain localpart secure)))) |
54695 | 427 (t |
428 (message "%s tried to set a cookie for domain %s - rejected." | |
429 (url-host url-current-object) domain))))) | |
430 | |
431 (defvar url-cookie-timer nil) | |
432 | |
433 (defcustom url-cookie-save-interval 3600 | |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
434 "The number of seconds between automatic saves of cookies. |
54695 | 435 Default is 1 hour. Note that if you change this variable outside of |
436 the `customize' interface after `url-do-setup' has been run, you need | |
437 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
|
438 :set #'(lambda (var val) |
5c87802be570
(url-cookie-save-interval): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
439 (set-default var val) |
5c87802be570
(url-cookie-save-interval): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
440 (if (bound-and-true-p url-setup-done) |
5c87802be570
(url-cookie-save-interval): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
441 (url-cookie-setup-save-timer))) |
54695 | 442 :type 'integer |
71788
c4527316e616
Remove spurious * in docstrings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68055
diff
changeset
|
443 :group 'url-cookie) |
54695 | 444 |
445 (defun url-cookie-setup-save-timer () | |
446 "Reset the cookie saver timer." | |
447 (interactive) | |
67368
5c87802be570
(url-cookie-save-interval): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
448 (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
|
449 (setq url-cookie-timer nil) |
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
450 (if url-cookie-save-interval |
67368
5c87802be570
(url-cookie-save-interval): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
451 (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
|
452 url-cookie-save-interval |
5c87802be570
(url-cookie-save-interval): Simplify.
Richard M. Stallman <rms@gnu.org>
parents:
64748
diff
changeset
|
453 #'url-cookie-write-file)))) |
54695 | 454 |
455 (provide 'url-cookie) | |
456 | |
54794
9978b1e48c24
(url-cookie-setup-save-timer): Avoid warnings.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54770
diff
changeset
|
457 ;; 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
|
458 ;;; url-cookie.el ends here |