1 ;;; url-methods.el --- Load URL schemes as needed
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Keywords: comm, data, processes, hypermedia
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
30 ;; This loads up some of the small, silly URLs that I really don't
31 ;; want to bother putting in their own separate files.
34 (defvar url-scheme-registry
(make-hash-table :size
7 :test
'equal
))
36 (defconst url-scheme-methods
37 '((default-port . variable
)
38 (asynchronous-p . variable
)
39 (expand-file-name . function
)
40 (file-exists-p . function
)
41 (file-attributes . function
)
42 (parse-url . function
)
43 (file-symlink-p . function
)
44 (file-writable-p . function
)
45 (file-directory-p . function
)
46 (file-executable-p . function
)
47 (directory-files . function
)
48 (file-truename . function
))
49 "Assoc-list of methods that each URL loader can provide.")
51 (defconst url-scheme-default-properties
53 'loader
'url-scheme-default-loader
55 'expand-file-name
'url-identity-expander
56 'parse-url
'url-generic-parse-url
58 'file-directory-p
'ignore
59 'file-truename
(lambda (&rest args
)
60 (url-recreate-url (car args
)))
61 'file-exists-p
'ignore
62 'file-attributes
'ignore
))
64 (defun url-scheme-default-loader (url &optional callback cbargs
)
65 "Signal an error for an unknown URL scheme."
66 (error "Unkown URL scheme: %s" (url-type url
)))
68 (defvar url-scheme--registering-proxy nil
)
70 (defun url-scheme-register-proxy (scheme)
71 "Automatically find a proxy for SCHEME and put it in `url-proxy-services'."
72 (let* ((env-var (concat scheme
"_proxy"))
73 (env-proxy (or (getenv (upcase env-var
))
74 (getenv (downcase env-var
))))
75 (cur-proxy (assoc scheme url-proxy-services
))
77 (url-scheme--registering-proxy t
))
79 ;; If env-proxy is an empty string, treat it as if it were nil
80 (when (and (stringp env-proxy
)
81 (string= env-proxy
""))
84 ;; Store any proxying information - this will not overwrite an old
85 ;; entry, so that people can still set this information in their
88 (cur-proxy nil
) ; Keep their old settings
89 ((null env-proxy
) nil
) ; No proxy setup
90 ;; First check if its something like hostname:port
91 ((string-match "^\\([^:]+\\):\\([0-9]+\\)$" env-proxy
)
92 (setq urlobj
(url-generic-parse-url nil
)) ; Get a blank object
93 (setf (url-type urlobj
) "http")
94 (setf (url-host urlobj
) (match-string 1 env-proxy
))
95 (setf (url-port urlobj
) (string-to-number (match-string 2 env-proxy
))))
96 ;; Then check if its a fully specified URL
97 ((string-match url-nonrelative-link env-proxy
)
98 (setq urlobj
(url-generic-parse-url env-proxy
))
99 (setf (url-type urlobj
) "http")
100 (setf (url-target urlobj
) nil
))
101 ;; Finally, fall back on the assumption that its just a hostname
103 (setq urlobj
(url-generic-parse-url nil
)) ; Get a blank object
104 (setf (url-type urlobj
) "http")
105 (setf (url-host urlobj
) env-proxy
)))
107 (if (and (not cur-proxy
) urlobj
)
109 (setq url-proxy-services
110 (cons (cons scheme
(format "%s:%d" (url-host urlobj
)
113 (message "Using a proxy for %s..." scheme
)))))
115 (defun url-scheme-get-property (scheme property
)
116 "Get PROPERTY of a URL SCHEME.
117 Will automatically try to load a backend from url-SCHEME.el if
118 it has not already been loaded."
119 (setq scheme
(downcase scheme
))
120 (let ((desc (gethash scheme url-scheme-registry
)))
122 (let* ((stub (concat "url-" scheme
))
123 (loader (intern stub
)))
129 ;; Found the module to handle <scheme> URLs
130 (unless url-scheme--registering-proxy
131 (url-scheme-register-proxy scheme
))
132 (setq desc
(list 'name scheme
134 (dolist (cell url-scheme-methods
)
135 (let ((symbol (intern-soft (format "%s-%s" stub
(car cell
))))
140 ;; Store the symbol name of a function
142 (setq desc
(plist-put desc
(car cell
) symbol
))))
144 ;; Store the VALUE of a variable
146 (setq desc
(plist-put desc
(car cell
)
147 (symbol-value symbol
)))))
149 (error "Malformed url-scheme-methods entry: %S"
151 (puthash scheme desc url-scheme-registry
)))))
152 (or (plist-get desc property
)
153 (plist-get url-scheme-default-properties property
))))
155 (provide 'url-methods
)
157 ;; arch-tag: 336863f8-5a07-4906-9be5-b3c6bcebbe67
158 ;;; url-methods.el ends here