Merge from origin/emacs-24
[emacs.git] / lisp / url / url-util.el
blobf7d2d4410d91200ca73a931aeb4d28aa40f1cbc4
1 ;;; url-util.el --- Miscellaneous helper routines for URL library
3 ;; Copyright (C) 1996-1999, 2001, 2004-2014 Free Software Foundation, Inc.
5 ;; Author: Bill Perry <wmperry@gnu.org>
6 ;; Maintainer: emacs-devel@gnu.org
7 ;; Keywords: comm, data, processes
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 <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;;; Code:
28 (require 'url-parse)
29 (require 'url-vars)
30 (autoload 'timezone-parse-date "timezone")
31 (autoload 'timezone-make-date-arpa-standard "timezone")
32 (autoload 'mail-header-extract "mailheader")
34 (defvar url-parse-args-syntax-table
35 (copy-syntax-table emacs-lisp-mode-syntax-table)
36 "A syntax table for parsing sgml attributes.")
38 (modify-syntax-entry ?' "\"" url-parse-args-syntax-table)
39 (modify-syntax-entry ?` "\"" url-parse-args-syntax-table)
40 (modify-syntax-entry ?{ "(" url-parse-args-syntax-table)
41 (modify-syntax-entry ?} ")" url-parse-args-syntax-table)
43 ;;;###autoload
44 (defcustom url-debug nil
45 "What types of debug messages from the URL library to show.
46 Debug messages are logged to the *URL-DEBUG* buffer.
48 If t, all messages will be logged.
49 If a number, all messages will be logged, as well shown via `message'.
50 If a list, it is a list of the types of messages to be logged."
51 :type '(choice (const :tag "none" nil)
52 (const :tag "all" t)
53 (checklist :tag "custom"
54 (const :tag "HTTP" :value http)
55 (const :tag "DAV" :value dav)
56 (const :tag "General" :value retrieval)
57 (const :tag "Filename handlers" :value handlers)
58 (symbol :tag "Other")))
59 :group 'url-hairy)
61 ;;;###autoload
62 (defun url-debug (tag &rest args)
63 (if quit-flag
64 (error "Interrupted!"))
65 (if (or (eq url-debug t)
66 (numberp url-debug)
67 (and (listp url-debug) (memq tag url-debug)))
68 (with-current-buffer (get-buffer-create "*URL-DEBUG*")
69 (goto-char (point-max))
70 (insert (symbol-name tag) " -> " (apply 'format args) "\n")
71 (if (numberp url-debug)
72 (apply 'message args)))))
74 ;;;###autoload
75 (defun url-parse-args (str &optional nodowncase)
76 ;; Return an assoc list of attribute/value pairs from an RFC822-type string
77 (let (
78 name ; From name=
79 value ; its value
80 results ; Assoc list of results
81 name-pos ; Start of XXXX= position
82 val-pos ; Start of value position
86 (save-excursion
87 (save-restriction
88 (set-buffer (get-buffer-create " *urlparse-temp*"))
89 (set-syntax-table url-parse-args-syntax-table)
90 (erase-buffer)
91 (insert str)
92 (setq st (point-min)
93 nd (point-max))
94 (set-syntax-table url-parse-args-syntax-table)
95 (narrow-to-region st nd)
96 (goto-char (point-min))
97 (while (not (eobp))
98 (skip-chars-forward "; \n\t")
99 (setq name-pos (point))
100 (skip-chars-forward "^ \n\t=;")
101 (if (not nodowncase)
102 (downcase-region name-pos (point)))
103 (setq name (buffer-substring name-pos (point)))
104 (skip-chars-forward " \t\n")
105 (if (/= (or (char-after (point)) 0) ?=) ; There is no value
106 (setq value nil)
107 (skip-chars-forward " \t\n=")
108 (setq val-pos (point)
109 value
110 (cond
111 ((or (= (or (char-after val-pos) 0) ?\")
112 (= (or (char-after val-pos) 0) ?'))
113 (buffer-substring (1+ val-pos)
114 (condition-case ()
115 (prog2
116 (forward-sexp 1)
117 (1- (point))
118 (skip-chars-forward "\""))
119 (error
120 (skip-chars-forward "^ \t\n")
121 (point)))))
123 (buffer-substring val-pos
124 (progn
125 (skip-chars-forward "^;")
126 (skip-chars-backward " \t")
127 (point)))))))
128 (setq results (cons (cons name value) results))
129 (skip-chars-forward "; \n\t"))
130 results))))
132 ;;;###autoload
133 (defun url-insert-entities-in-string (string)
134 "Convert HTML markup-start characters to entity references in STRING.
135 Also replaces the \" character, so that the result may be safely used as
136 an attribute value in a tag. Returns a new string with the result of the
137 conversion. Replaces these characters as follows:
138 & ==> &amp;
139 < ==> &lt;
140 > ==> &gt;
141 \" ==> &quot;"
142 (if (string-match "[&<>\"]" string)
143 (with-current-buffer (get-buffer-create " *entity*")
144 (erase-buffer)
145 (buffer-disable-undo (current-buffer))
146 (insert string)
147 (goto-char (point-min))
148 (while (progn
149 (skip-chars-forward "^&<>\"")
150 (not (eobp)))
151 (insert (cdr (assq (char-after (point))
152 '((?\" . "&quot;")
153 (?& . "&amp;")
154 (?< . "&lt;")
155 (?> . "&gt;")))))
156 (delete-char 1))
157 (buffer-string))
158 string))
160 ;;;###autoload
161 (defun url-normalize-url (url)
162 "Return a 'normalized' version of URL.
163 Strips out default port numbers, etc."
164 (let (type data retval)
165 (setq data (url-generic-parse-url url)
166 type (url-type data))
167 (if (member type '("www" "about" "mailto" "info"))
168 (setq retval url)
169 ;; FIXME all this does, and all this function seems to do in
170 ;; most cases, is remove any trailing "#anchor" part of a url.
171 (setf (url-target data) nil)
172 (setq retval (url-recreate-url data)))
173 retval))
175 ;;;###autoload
176 (defun url-lazy-message (&rest args)
177 "Just like `message', but is a no-op if called more than once a second.
178 Will not do anything if `url-show-status' is nil."
179 (if (or (and url-current-object
180 (url-silent url-current-object))
181 (null url-show-status)
182 (active-minibuffer-window)
183 (= url-lazy-message-time
184 (setq url-lazy-message-time (nth 1 (current-time)))))
186 (apply 'message args)))
188 ;;;###autoload
189 (defun url-get-normalized-date (&optional specified-time)
190 "Return a 'real' date string that most HTTP servers can understand."
191 (let ((system-time-locale "C"))
192 (format-time-string "%a, %d %b %Y %T GMT" specified-time t)))
194 ;;;###autoload
195 (defun url-eat-trailing-space (x)
196 "Remove spaces/tabs at the end of a string."
197 (let ((y (1- (length x)))
198 (skip-chars (list ? ?\t ?\n)))
199 (while (and (>= y 0) (memq (aref x y) skip-chars))
200 (setq y (1- y)))
201 (substring x 0 (1+ y))))
203 ;;;###autoload
204 (defun url-strip-leading-spaces (x)
205 "Remove spaces at the front of a string."
206 (let ((y (1- (length x)))
207 (z 0)
208 (skip-chars (list ? ?\t ?\n)))
209 (while (and (<= z y) (memq (aref x z) skip-chars))
210 (setq z (1+ z)))
211 (substring x z nil)))
214 (define-obsolete-function-alias 'url-pretty-length
215 'file-size-human-readable "24.4")
217 ;;;###autoload
218 (defun url-display-percentage (fmt perc &rest args)
219 (when (and url-show-status
220 (or (null url-current-object)
221 (not (url-silent url-current-object))))
222 (if (null fmt)
223 (if (fboundp 'clear-progress-display)
224 (clear-progress-display))
225 (if (and (fboundp 'progress-display) perc)
226 (apply 'progress-display fmt perc args)
227 (apply 'message fmt args)))))
229 ;;;###autoload
230 (defun url-percentage (x y)
231 (if (fboundp 'float)
232 (round (* 100 (/ x (float y))))
233 (/ (* x 100) y)))
235 ;;;###autoload
236 (defalias 'url-basepath 'url-file-directory)
238 ;;;###autoload
239 (defun url-file-directory (file)
240 "Return the directory part of FILE, for a URL."
241 (cond
242 ((null file) "")
243 ((string-match "\\?" file)
244 (url-file-directory (substring file 0 (match-beginning 0))))
245 ((string-match "\\(.*\\(/\\|%2[fF]\\)\\)" file)
246 (match-string 1 file))))
248 ;;;###autoload
249 (defun url-file-nondirectory (file)
250 "Return the nondirectory part of FILE, for a URL."
251 (cond
252 ((null file) "")
253 ((string-match "\\?" file)
254 (url-file-nondirectory (substring file 0 (match-beginning 0))))
255 ((string-match ".*\\(?:/\\|%2[fF]\\)\\(.*\\)" file)
256 (match-string 1 file))
257 (t file)))
259 ;;;###autoload
260 (defun url-parse-query-string (query &optional downcase allow-newlines)
261 (let (retval pairs cur key val)
262 (setq pairs (split-string query "[;&]"))
263 (while pairs
264 (setq cur (car pairs)
265 pairs (cdr pairs))
266 (unless (string-match "=" cur)
267 (setq cur (concat cur "=")))
269 (when (string-match "=" cur)
270 (setq key (url-unhex-string (substring cur 0 (match-beginning 0))
271 allow-newlines))
272 (setq val (url-unhex-string (substring cur (match-end 0) nil)
273 allow-newlines))
274 (if downcase
275 (setq key (downcase key)))
276 (setq cur (assoc key retval))
277 (if cur
278 (setcdr cur (cons val (cdr cur)))
279 (setq retval (cons (list key val) retval)))))
280 retval))
282 ;;;###autoload
283 (defun url-build-query-string (query &optional semicolons keep-empty)
284 "Build a query-string.
286 Given a QUERY in the form:
287 '((key1 val1)
288 (key2 val2)
289 (key3 val1 val2)
290 (key4)
291 (key5 \"\"))
293 \(This is the same format as produced by `url-parse-query-string')
295 This will return a string
296 \"key1=val1&key2=val2&key3=val1&key3=val2&key4&key5\". Keys may
297 be strings or symbols; if they are symbols, the symbol name will
298 be used.
300 When SEMICOLONS is given, the separator will be \";\".
302 When KEEP-EMPTY is given, empty values will show as \"key=\"
303 instead of just \"key\" as in the example above."
304 (mapconcat
305 (lambda (key-vals)
306 (let ((escaped
307 (mapcar (lambda (sym)
308 (url-hexify-string (format "%s" sym))) key-vals)))
309 (mapconcat (lambda (val)
310 (let ((vprint (format "%s" val))
311 (eprint (format "%s" (car escaped))))
312 (concat eprint
313 (if (or keep-empty
314 (and val (not (zerop (length vprint)))))
317 vprint)))
318 (or (cdr escaped) '("")) (if semicolons ";" "&"))))
319 query (if semicolons ";" "&")))
321 (defun url-unhex (x)
322 (if (> x ?9)
323 (if (>= x ?a)
324 (+ 10 (- x ?a))
325 (+ 10 (- x ?A)))
326 (- x ?0)))
328 ;; Fixme: Is this definition better, and does it ever matter?
330 ;; (defun url-unhex-string (str &optional allow-newlines)
331 ;; "Remove %XX, embedded spaces, etc in a url.
332 ;; If optional second argument ALLOW-NEWLINES is non-nil, then allow the
333 ;; decoding of carriage returns and line feeds in the string, which is normally
334 ;; forbidden in URL encoding."
335 ;; (setq str (or str ""))
336 ;; (setq str (replace-regexp-in-string "%[[:xdigit:]]\\{2\\}"
337 ;; (lambda (match)
338 ;; (string (string-to-number
339 ;; (substring match 1) 16)))
340 ;; str t t))
341 ;; (if allow-newlines
342 ;; (replace-regexp-in-string "[\n\r]" (lambda (match)
343 ;; (format "%%%.2X" (aref match 0)))
344 ;; str t t)
345 ;; str))
347 ;;;###autoload
348 (defun url-unhex-string (str &optional allow-newlines)
349 "Remove %XX embedded spaces, etc in a URL.
350 If optional second argument ALLOW-NEWLINES is non-nil, then allow the
351 decoding of carriage returns and line feeds in the string, which is normally
352 forbidden in URL encoding."
353 (setq str (or str ""))
354 (let ((tmp "")
355 (case-fold-search t))
356 (while (string-match "%[0-9a-f][0-9a-f]" str)
357 (let* ((start (match-beginning 0))
358 (ch1 (url-unhex (elt str (+ start 1))))
359 (code (+ (* 16 ch1)
360 (url-unhex (elt str (+ start 2))))))
361 (setq tmp (concat
362 tmp (substring str 0 start)
363 (cond
364 (allow-newlines
365 (byte-to-string code))
366 ((or (= code ?\n) (= code ?\r))
367 " ")
368 (t (byte-to-string code))))
369 str (substring str (match-end 0)))))
370 (concat tmp str)))
372 (defconst url-unreserved-chars
373 '(?a ?b ?c ?d ?e ?f ?g ?h ?i ?j ?k ?l ?m ?n ?o ?p ?q ?r ?s ?t ?u ?v ?w ?x ?y ?z
374 ?A ?B ?C ?D ?E ?F ?G ?H ?I ?J ?K ?L ?M ?N ?O ?P ?Q ?R ?S ?T ?U ?V ?W ?X ?Y ?Z
375 ?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9
376 ?- ?_ ?. ?~)
377 "List of characters that are unreserved in the URL spec.
378 This is taken from RFC 3986 (section 2.3).")
380 (defconst url-encoding-table
381 (let ((vec (make-vector 256 nil)))
382 (dotimes (byte 256)
383 ;; RFC 3986 (Section 2.1): For consistency, URI producers and
384 ;; normalizers should use uppercase hexadecimal digits for all
385 ;; percent-encodings.
386 (aset vec byte (format "%%%02X" byte)))
387 vec)
388 "Vector translating bytes to URI-encoded %-sequences.")
390 (defun url--allowed-chars (char-list)
391 "Return an \"allowed character\" mask (a 256-slot vector).
392 The Nth element is non-nil if character N is in CHAR-LIST. The
393 result can be passed as the second arg to `url-hexify-string'."
394 (let ((vec (make-vector 256 nil)))
395 (dolist (byte char-list)
396 (ignore-errors (aset vec byte t)))
397 vec))
399 ;;;###autoload
400 (defun url-hexify-string (string &optional allowed-chars)
401 "URI-encode STRING and return the result.
402 If STRING is multibyte, it is first converted to a utf-8 byte
403 string. Each byte corresponding to an allowed character is left
404 as-is, while all other bytes are converted to a three-character
405 string: \"%\" followed by two upper-case hex digits.
407 The allowed characters are specified by ALLOWED-CHARS. If this
408 argument is nil, the list `url-unreserved-chars' determines the
409 allowed characters. Otherwise, ALLOWED-CHARS should be a vector
410 whose Nth element is non-nil if character N is allowed."
411 (unless allowed-chars
412 (setq allowed-chars (url--allowed-chars url-unreserved-chars)))
413 (mapconcat (lambda (byte)
414 (if (aref allowed-chars byte)
415 (char-to-string byte)
416 (aref url-encoding-table byte)))
417 (if (multibyte-string-p string)
418 (encode-coding-string string 'utf-8)
419 string)
420 ""))
422 (defconst url-host-allowed-chars
423 ;; Allow % to avoid re-encoding %-encoded sequences.
424 (url--allowed-chars (append '(?% ?! ?$ ?& ?' ?\( ?\) ?* ?+ ?, ?\; ?=)
425 url-unreserved-chars))
426 "Allowed-character byte mask for the host segment of a URI.
427 These characters are specified in RFC 3986, Appendix A.")
429 (defconst url-path-allowed-chars
430 (let ((vec (copy-sequence url-host-allowed-chars)))
431 (aset vec ?/ t)
432 (aset vec ?: t)
433 (aset vec ?@ t)
434 vec)
435 "Allowed-character byte mask for the path segment of a URI.
436 These characters are specified in RFC 3986, Appendix A.")
438 (defconst url-query-allowed-chars
439 (let ((vec (copy-sequence url-path-allowed-chars)))
440 (aset vec ?? t)
441 vec)
442 "Allowed-character byte mask for the query segment of a URI.
443 These characters are specified in RFC 3986, Appendix A.")
445 ;;;###autoload
446 (defun url-encode-url (url)
447 "Return a properly URI-encoded version of URL.
448 This function also performs URI normalization, e.g. converting
449 the scheme to lowercase if it is uppercase. Apart from
450 normalization, if URL is already URI-encoded, this function
451 should return it unchanged."
452 (if (multibyte-string-p url)
453 (setq url (encode-coding-string url 'utf-8)))
454 (let* ((obj (url-generic-parse-url url))
455 (user (url-user obj))
456 (pass (url-password obj))
457 (host (url-host obj))
458 (path-and-query (url-path-and-query obj))
459 (path (car path-and-query))
460 (query (cdr path-and-query))
461 (frag (url-target obj)))
462 (if user
463 (setf (url-user obj) (url-hexify-string user)))
464 (if pass
465 (setf (url-password obj) (url-hexify-string pass)))
466 ;; No special encoding for IPv6 literals.
467 (and host
468 (not (string-match "\\`\\[.*\\]\\'" host))
469 (setf (url-host obj)
470 (url-hexify-string host url-host-allowed-chars)))
472 (if path
473 (setq path (url-hexify-string path url-path-allowed-chars)))
474 (if query
475 (setq query (url-hexify-string query url-query-allowed-chars)))
476 (setf (url-filename obj) (if query (concat path "?" query) path))
478 (if frag
479 (setf (url-target obj)
480 (url-hexify-string frag url-query-allowed-chars)))
481 (url-recreate-url obj)))
483 ;;;###autoload
484 (defun url-file-extension (fname &optional x)
485 "Return the filename extension of FNAME.
486 If optional argument X is t, then return the basename
487 of the file with the extension stripped off."
488 (if (and fname
489 (setq fname (url-file-nondirectory fname))
490 (string-match "\\.[^./]+$" fname))
491 (if x (substring fname 0 (match-beginning 0))
492 (substring fname (match-beginning 0) nil))
494 ;; If fname has no extension, and x then return fname itself instead of
495 ;; nothing. When caching it allows the correct .hdr file to be produced
496 ;; for filenames without extension.
498 (if x
499 fname
500 "")))
502 ;;;###autoload
503 (defun url-truncate-url-for-viewing (url &optional width)
504 "Return a shortened version of URL that is WIDTH characters wide or less.
505 WIDTH defaults to the current frame width."
506 (let* ((fr-width (or width (frame-width)))
507 (str-width (length url))
508 (fname nil)
509 (modified 0)
510 (urlobj nil))
511 ;; The first thing that can go are the search strings
512 (if (and (>= str-width fr-width)
513 (string-match "?" url))
514 (setq url (concat (substring url 0 (match-beginning 0)) "?...")
515 str-width (length url)))
516 (if (< str-width fr-width)
517 nil ; Hey, we are done!
518 (setq urlobj (url-generic-parse-url url)
519 fname (url-filename urlobj)
520 fr-width (- fr-width 4))
521 (while (and (>= str-width fr-width)
522 (string-match "/" fname))
523 (setq fname (substring fname (match-end 0) nil)
524 modified (1+ modified))
525 (setf (url-filename urlobj) fname)
526 (setq url (url-recreate-url urlobj)
527 str-width (length url)))
528 (if (> modified 1)
529 (setq fname (concat "/.../" fname))
530 (setq fname (concat "/" fname)))
531 (setf (url-filename urlobj) fname)
532 (setq url (url-recreate-url urlobj)))
533 url))
535 ;;;###autoload
536 (defun url-view-url (&optional no-show)
537 "View the current document's URL.
538 Optional argument NO-SHOW means just return the URL, don't show it in
539 the minibuffer.
541 This uses `url-current-object', set locally to the buffer."
542 (interactive)
543 (if (not url-current-object)
545 (if no-show
546 (url-recreate-url url-current-object)
547 (message "%s" (url-recreate-url url-current-object)))))
549 (defvar url-get-url-filename-chars "-%.?@a-zA-Z0-9()_/:~=&"
550 "Valid characters in a URL.")
552 (defun url-get-url-at-point (&optional pt)
553 "Get the URL closest to point, but don't change position.
554 Has a preference for looking backward when not directly on a symbol."
555 ;; Not at all perfect - point must be right in the name.
556 (save-excursion
557 (if pt (goto-char pt))
558 (let (start url)
559 (save-excursion
560 ;; first see if you're just past a filename
561 (if (not (eobp))
562 (if (looking-at "[] \t\n[{}()]") ; whitespace or some parens
563 (progn
564 (skip-chars-backward " \n\t\r({[]})")
565 (if (not (bobp))
566 (backward-char 1)))))
567 (if (and (char-after (point))
568 (string-match (concat "[" url-get-url-filename-chars "]")
569 (char-to-string (char-after (point)))))
570 (progn
571 (skip-chars-backward url-get-url-filename-chars)
572 (setq start (point))
573 (skip-chars-forward url-get-url-filename-chars))
574 (setq start (point)))
575 (setq url (buffer-substring-no-properties start (point))))
576 (if (and url (string-match "^(.*)\\.?$" url))
577 (setq url (match-string 1 url)))
578 (if (and url (string-match "^URL:" url))
579 (setq url (substring url 4 nil)))
580 (if (and url (string-match "\\.$" url))
581 (setq url (substring url 0 -1)))
582 (if (and url (string-match "^www\\." url))
583 (setq url (concat "http://" url)))
584 (if (and url (not (string-match url-nonrelative-link url)))
585 (setq url nil))
586 url)))
588 (defun url-generate-unique-filename (&optional fmt)
589 "Generate a unique filename in `url-temporary-directory'."
590 (declare (obsolete make-temp-file "23.1"))
591 ;; This variable is obsolete, but so is this function.
592 (let ((tempdir (with-no-warnings url-temporary-directory)))
593 (if (not fmt)
594 (let ((base (format "url-tmp.%d" (user-real-uid)))
595 (fname "")
596 (x 0))
597 (setq fname (format "%s%d" base x))
598 (while (file-exists-p
599 (expand-file-name fname tempdir))
600 (setq x (1+ x)
601 fname (concat base (int-to-string x))))
602 (expand-file-name fname tempdir))
603 (let ((base (concat "url" (int-to-string (user-real-uid))))
604 (fname "")
605 (x 0))
606 (setq fname (format fmt (concat base (int-to-string x))))
607 (while (file-exists-p
608 (expand-file-name fname tempdir))
609 (setq x (1+ x)
610 fname (format fmt (concat base (int-to-string x)))))
611 (expand-file-name fname tempdir)))))
613 (defun url-extract-mime-headers ()
614 "Set `url-current-mime-headers' in current buffer."
615 (save-excursion
616 (goto-char (point-min))
617 (unless url-current-mime-headers
618 (set (make-local-variable 'url-current-mime-headers)
619 (mail-header-extract)))))
621 (defun url-make-private-file (file)
622 "Make FILE only readable and writable by the current user.
623 Creates FILE and its parent directories if they do not exist."
624 (let ((dir (file-name-directory file)))
625 (when dir
626 ;; For historical reasons.
627 (make-directory dir t)))
628 ;; Based on doc-view-make-safe-dir.
629 (condition-case nil
630 (with-file-modes #o0600
631 (with-temp-buffer
632 (write-region (point-min) (point-max) file nil 'silent nil 'excl)))
633 (file-already-exists
634 (if (file-symlink-p file)
635 (error "Danger: `%s' is a symbolic link" file))
636 (set-file-modes file #o0600))))
638 (provide 'url-util)
640 ;;; url-util.el ends here