1 ;;; url-domsuf.el --- Say what domain names can have cookies set.
3 ;; Copyright (C) 2012-2018 Free Software Foundation, Inc.
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: comm, data, processes, hypermedia
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
26 ;; The rules for what domains can have cookies set is defined here:
27 ;; http://publicsuffix.org/list/
31 (defvar url-domsuf-domains nil
)
33 (defun url-domsuf-parse-file ()
35 (with-auto-compression-mode
37 (let* ((suffixfile (expand-file-name "publicsuffix.txt" data-directory
))
38 (compressed-file (concat suffixfile
".gz")))
39 (or (and (file-readable-p compressed-file
) compressed-file
)
44 (when (not (looking-at "[/\n\t ]"))
45 ;; !pref.aichi.jp means that it's allowed.
46 (if (not (eq (following-char) ?
!))
50 (setq domain
(buffer-substring (point) (line-end-position)))
52 ((string-match "\\`\\*\\." domain
)
53 (setq domain
(substring domain
2))
54 (push (cons domain
(1+ (length (split-string domain
"[.]"))))
57 (push (cons domain t
) domains
))
59 (push (cons domain nil
) domains
))))
61 (setq url-domsuf-domains
(nreverse domains
)))))
63 (defun url-domsuf-cookie-allowed-p (domain)
64 (unless url-domsuf-domains
65 (url-domsuf-parse-file))
67 (domain-bits (split-string domain
"[.]"))
68 (length (length domain-bits
))
69 (upper-domain (mapconcat 'identity
(cdr domain-bits
) "."))
71 (dolist (elem url-domsuf-domains
)
72 (setq entry
(car elem
)
77 (string= domain entry
))
79 ;; "!city.yokohama.jp"
81 (string= domain entry
))
84 ((and (numberp modifier
)
86 (string= entry upper-domain
))
87 (setq allowedp nil
))))
92 ;; TODO convert to a proper test.
93 ;; (url-domsuf-cookie-allowed-p "com") => nil
94 ;; (url-domsuf-cookie-allowed-p "foo.bar.bd") => t
95 ;; (url-domsuf-cookie-allowed-p "bar.bd") => nil
96 ;; (url-domsuf-cookie-allowed-p "co.uk") => nil
97 ;; (url-domsuf-cookie-allowed-p "foo.bar.hokkaido.jo") => t
98 ;; (url-domsuf-cookie-allowed-p "bar.yokohama.jp") => nil
99 ;; (url-domsuf-cookie-allowed-p "city.yokohama.jp") => t
101 (provide 'url-domsuf
)
103 ;;; url-domsuf.el ends here