1 ;;; url-util.el --- Miscellaneous helper routines for URL library
3 ;; Copyright (C) 1996-1999, 2001, 2004-2015 Free Software Foundation,
6 ;; Author: Bill Perry <wmperry@gnu.org>
7 ;; Maintainer: emacs-devel@gnu.org
8 ;; Keywords: comm, data, processes
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
31 (autoload 'timezone-parse-date
"timezone")
32 (autoload 'timezone-make-date-arpa-standard
"timezone")
33 (autoload 'mail-header-extract
"mailheader")
35 (defvar url-parse-args-syntax-table
36 (copy-syntax-table emacs-lisp-mode-syntax-table
)
37 "A syntax table for parsing sgml attributes.")
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
)
42 (modify-syntax-entry ?
} ")" url-parse-args-syntax-table
)
45 (defcustom url-debug nil
46 "What types of debug messages from the URL library to show.
47 Debug messages are logged to the *URL-DEBUG* buffer.
49 If t, all messages will be logged.
50 If a number, all messages will be logged, as well shown via `message'.
51 If a list, it is a list of the types of messages to be logged."
52 :type
'(choice (const :tag
"none" nil
)
54 (checklist :tag
"custom"
55 (const :tag
"HTTP" :value http
)
56 (const :tag
"DAV" :value dav
)
57 (const :tag
"General" :value retrieval
)
58 (const :tag
"Filename handlers" :value handlers
)
59 (symbol :tag
"Other")))
63 (defun url-debug (tag &rest args
)
65 (error "Interrupted!"))
66 (if (or (eq url-debug t
)
68 (and (listp url-debug
) (memq tag url-debug
)))
69 (with-current-buffer (get-buffer-create "*URL-DEBUG*")
70 (goto-char (point-max))
71 (insert (symbol-name tag
) " -> " (apply 'format args
) "\n")
72 (if (numberp url-debug
)
73 (apply 'message args
)))))
76 (defun url-parse-args (str &optional nodowncase
)
77 ;; Return an assoc list of attribute/value pairs from an RFC822-type string
81 results
; Assoc list of results
82 name-pos
; Start of XXXX= position
83 val-pos
; Start of value position
89 (set-buffer (get-buffer-create " *urlparse-temp*"))
90 (set-syntax-table url-parse-args-syntax-table
)
95 (set-syntax-table url-parse-args-syntax-table
)
96 (narrow-to-region st nd
)
97 (goto-char (point-min))
99 (skip-chars-forward "; \n\t")
100 (setq name-pos
(point))
101 (skip-chars-forward "^ \n\t=;")
103 (downcase-region name-pos
(point)))
104 (setq name
(buffer-substring name-pos
(point)))
105 (skip-chars-forward " \t\n")
106 (if (/= (or (char-after (point)) 0) ?
=) ; There is no value
108 (skip-chars-forward " \t\n=")
109 (setq val-pos
(point)
112 ((or (= (or (char-after val-pos
) 0) ?
\")
113 (= (or (char-after val-pos
) 0) ?
'))
114 (buffer-substring (1+ val-pos
)
119 (skip-chars-forward "\""))
121 (skip-chars-forward "^ \t\n")
124 (buffer-substring val-pos
126 (skip-chars-forward "^;")
127 (skip-chars-backward " \t")
129 (setq results
(cons (cons name value
) results
))
130 (skip-chars-forward "; \n\t"))
134 (defun url-insert-entities-in-string (string)
135 "Convert HTML markup-start characters to entity references in STRING.
136 Also replaces the \" character, so that the result may be safely used as
137 an attribute value in a tag. Returns a new string with the result of the
138 conversion. Replaces these characters as follows:
143 (if (string-match "[&<>\"]" string
)
144 (with-current-buffer (get-buffer-create " *entity*")
146 (buffer-disable-undo (current-buffer))
148 (goto-char (point-min))
150 (skip-chars-forward "^&<>\"")
152 (insert (cdr (assq (char-after (point))
162 (defun url-normalize-url (url)
163 "Return a 'normalized' version of URL.
164 Strips out default port numbers, etc."
165 (let (type data retval
)
166 (setq data
(url-generic-parse-url url
)
167 type
(url-type data
))
168 (if (member type
'("www" "about" "mailto" "info"))
170 ;; FIXME all this does, and all this function seems to do in
171 ;; most cases, is remove any trailing "#anchor" part of a url.
172 (setf (url-target data
) nil
)
173 (setq retval
(url-recreate-url data
)))
177 (defun url-lazy-message (&rest args
)
178 "Just like `message', but is a no-op if called more than once a second.
179 Will not do anything if `url-show-status' is nil."
180 (if (or (and url-current-object
181 (url-silent url-current-object
))
182 (null url-show-status
)
183 (active-minibuffer-window)
184 (= url-lazy-message-time
185 (setq url-lazy-message-time
(nth 1 (current-time)))))
187 (apply 'message args
)))
190 (defun url-get-normalized-date (&optional specified-time
)
191 "Return a 'real' date string that most HTTP servers can understand."
192 (let ((system-time-locale "C"))
193 (format-time-string "%a, %d %b %Y %T GMT" specified-time t
)))
196 (defun url-eat-trailing-space (x)
197 "Remove spaces/tabs at the end of a string."
198 (let ((y (1- (length x
)))
199 (skip-chars (list ? ?
\t ?
\n)))
200 (while (and (>= y
0) (memq (aref x y
) skip-chars
))
202 (substring x
0 (1+ y
))))
205 (defun url-strip-leading-spaces (x)
206 "Remove spaces at the front of a string."
207 (let ((y (1- (length x
)))
209 (skip-chars (list ? ?
\t ?
\n)))
210 (while (and (<= z y
) (memq (aref x z
) skip-chars
))
212 (substring x z nil
)))
215 (define-obsolete-function-alias 'url-pretty-length
216 'file-size-human-readable
"24.4")
219 (defun url-display-percentage (fmt perc
&rest args
)
220 (when (and url-show-status
221 (or (null url-current-object
)
222 (not (url-silent url-current-object
))))
224 (if (fboundp 'clear-progress-display
)
225 (clear-progress-display))
226 (if (and (fboundp 'progress-display
) perc
)
227 (apply 'progress-display fmt perc args
)
228 (apply 'message fmt args
)))))
231 (defun url-percentage (x y
)
233 (round (* 100 (/ x
(float y
))))
237 (defalias 'url-basepath
'url-file-directory
)
240 (defun url-file-directory (file)
241 "Return the directory part of FILE, for a URL."
244 ((string-match "\\?" file
)
245 (url-file-directory (substring file
0 (match-beginning 0))))
246 ((string-match "\\(.*\\(/\\|%2[fF]\\)\\)" file
)
247 (match-string 1 file
))))
250 (defun url-file-nondirectory (file)
251 "Return the nondirectory part of FILE, for a URL."
254 ((string-match "\\?" file
)
255 (url-file-nondirectory (substring file
0 (match-beginning 0))))
256 ((string-match ".*\\(?:/\\|%2[fF]\\)\\(.*\\)" file
)
257 (match-string 1 file
))
261 (defun url-parse-query-string (query &optional downcase allow-newlines
)
262 (let (retval pairs cur key val
)
263 (setq pairs
(split-string query
"[;&]"))
265 (setq cur
(car pairs
)
267 (unless (string-match "=" cur
)
268 (setq cur
(concat cur
"=")))
270 (when (string-match "=" cur
)
271 (setq key
(url-unhex-string (substring cur
0 (match-beginning 0))
273 (setq val
(url-unhex-string (substring cur
(match-end 0) nil
)
276 (setq key
(downcase key
)))
277 (setq cur
(assoc key retval
))
279 (setcdr cur
(cons val
(cdr cur
)))
280 (setq retval
(cons (list key val
) retval
)))))
284 (defun url-build-query-string (query &optional semicolons keep-empty
)
285 "Build a query-string.
287 Given a QUERY in the form:
294 \(This is the same format as produced by `url-parse-query-string')
296 This will return a string
297 \"key1=val1&key2=val2&key3=val1&key3=val2&key4&key5\". Keys may
298 be strings or symbols; if they are symbols, the symbol name will
301 When SEMICOLONS is given, the separator will be \";\".
303 When KEEP-EMPTY is given, empty values will show as \"key=\"
304 instead of just \"key\" as in the example above."
308 (mapcar (lambda (sym)
309 (url-hexify-string (format "%s" sym
))) key-vals
)))
310 (mapconcat (lambda (val)
311 (let ((vprint (format "%s" val
))
312 (eprint (format "%s" (car escaped
))))
315 (and val
(not (zerop (length vprint
)))))
319 (or (cdr escaped
) '("")) (if semicolons
";" "&"))))
320 query
(if semicolons
";" "&")))
329 ;; Fixme: Is this definition better, and does it ever matter?
331 ;; (defun url-unhex-string (str &optional allow-newlines)
332 ;; "Remove %XX, embedded spaces, etc in a url.
333 ;; If optional second argument ALLOW-NEWLINES is non-nil, then allow the
334 ;; decoding of carriage returns and line feeds in the string, which is normally
335 ;; forbidden in URL encoding."
336 ;; (setq str (or str ""))
337 ;; (setq str (replace-regexp-in-string "%[[:xdigit:]]\\{2\\}"
339 ;; (string (string-to-number
340 ;; (substring match 1) 16)))
342 ;; (if allow-newlines
343 ;; (replace-regexp-in-string "[\n\r]" (lambda (match)
344 ;; (format "%%%.2X" (aref match 0)))
349 (defun url-unhex-string (str &optional allow-newlines
)
350 "Remove %XX embedded spaces, etc in a URL.
351 If optional second argument ALLOW-NEWLINES is non-nil, then allow the
352 decoding of carriage returns and line feeds in the string, which is normally
353 forbidden in URL encoding."
354 (setq str
(or str
""))
356 (case-fold-search t
))
357 (while (string-match "%[0-9a-f][0-9a-f]" str
)
358 (let* ((start (match-beginning 0))
359 (ch1 (url-unhex (elt str
(+ start
1))))
361 (url-unhex (elt str
(+ start
2))))))
363 tmp
(substring str
0 start
)
366 (byte-to-string code
))
367 ((or (= code ?
\n) (= code ?
\r))
369 (t (byte-to-string code
))))
370 str
(substring str
(match-end 0)))))
373 (defconst url-unreserved-chars
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 ?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
376 ?
0 ?
1 ?
2 ?
3 ?
4 ?
5 ?
6 ?
7 ?
8 ?
9
378 "List of characters that are unreserved in the URL spec.
379 This is taken from RFC 3986 (section 2.3).")
381 (defconst url-encoding-table
382 (let ((vec (make-vector 256 nil
)))
384 ;; RFC 3986 (Section 2.1): For consistency, URI producers and
385 ;; normalizers should use uppercase hexadecimal digits for all
386 ;; percent-encodings.
387 (aset vec byte
(format "%%%02X" byte
)))
389 "Vector translating bytes to URI-encoded %-sequences.")
391 (defun url--allowed-chars (char-list)
392 "Return an \"allowed character\" mask (a 256-slot vector).
393 The Nth element is non-nil if character N is in CHAR-LIST. The
394 result can be passed as the second arg to `url-hexify-string'."
395 (let ((vec (make-vector 256 nil
)))
396 (dolist (byte char-list
)
397 (ignore-errors (aset vec byte t
)))
401 (defun url-hexify-string (string &optional allowed-chars
)
402 "URI-encode STRING and return the result.
403 If STRING is multibyte, it is first converted to a utf-8 byte
404 string. Each byte corresponding to an allowed character is left
405 as-is, while all other bytes are converted to a three-character
406 string: \"%\" followed by two upper-case hex digits.
408 The allowed characters are specified by ALLOWED-CHARS. If this
409 argument is nil, the list `url-unreserved-chars' determines the
410 allowed characters. Otherwise, ALLOWED-CHARS should be a vector
411 whose Nth element is non-nil if character N is allowed."
412 (unless allowed-chars
413 (setq allowed-chars
(url--allowed-chars url-unreserved-chars
)))
414 (mapconcat (lambda (byte)
415 (if (aref allowed-chars byte
)
416 (char-to-string byte
)
417 (aref url-encoding-table byte
)))
418 (if (multibyte-string-p string
)
419 (encode-coding-string string
'utf-8
)
423 (defconst url-host-allowed-chars
424 ;; Allow % to avoid re-encoding %-encoded sequences.
425 (url--allowed-chars (append '(?% ?
! ?$ ?
& ?
' ?\
( ?\
) ?
* ?
+ ?
, ?\
; ?=)
426 url-unreserved-chars
))
427 "Allowed-character byte mask for the host segment of a URI.
428 These characters are specified in RFC 3986, Appendix A.")
430 (defconst url-path-allowed-chars
431 (let ((vec (copy-sequence url-host-allowed-chars
)))
436 "Allowed-character byte mask for the path segment of a URI.
437 These characters are specified in RFC 3986, Appendix A.")
439 (defconst url-query-allowed-chars
440 (let ((vec (copy-sequence url-path-allowed-chars
)))
443 "Allowed-character byte mask for the query segment of a URI.
444 These characters are specified in RFC 3986, Appendix A.")
447 (defun url-encode-url (url)
448 "Return a properly URI-encoded version of URL.
449 This function also performs URI normalization, e.g. converting
450 the scheme to lowercase if it is uppercase. Apart from
451 normalization, if URL is already URI-encoded, this function
452 should return it unchanged."
453 (if (multibyte-string-p url
)
454 (setq url
(encode-coding-string url
'utf-8
)))
455 (let* ((obj (url-generic-parse-url url
))
456 (user (url-user obj
))
457 (pass (url-password obj
))
458 (host (url-host obj
))
459 (path-and-query (url-path-and-query obj
))
460 (path (car path-and-query
))
461 (query (cdr path-and-query
))
462 (frag (url-target obj
)))
464 (setf (url-user obj
) (url-hexify-string user
)))
466 (setf (url-password obj
) (url-hexify-string pass
)))
467 ;; No special encoding for IPv6 literals.
469 (not (string-match "\\`\\[.*\\]\\'" host
))
471 (url-hexify-string host url-host-allowed-chars
)))
474 (setq path
(url-hexify-string path url-path-allowed-chars
)))
476 (setq query
(url-hexify-string query url-query-allowed-chars
)))
477 (setf (url-filename obj
) (if query
(concat path
"?" query
) path
))
480 (setf (url-target obj
)
481 (url-hexify-string frag url-query-allowed-chars
)))
482 (url-recreate-url obj
)))
485 (defun url-file-extension (fname &optional x
)
486 "Return the filename extension of FNAME.
487 If optional argument X is t, then return the basename
488 of the file with the extension stripped off."
490 (setq fname
(url-file-nondirectory fname
))
491 (string-match "\\.[^./]+$" fname
))
492 (if x
(substring fname
0 (match-beginning 0))
493 (substring fname
(match-beginning 0) nil
))
495 ;; If fname has no extension, and x then return fname itself instead of
496 ;; nothing. When caching it allows the correct .hdr file to be produced
497 ;; for filenames without extension.
504 (defun url-truncate-url-for-viewing (url &optional width
)
505 "Return a shortened version of URL that is WIDTH characters wide or less.
506 WIDTH defaults to the current frame width."
507 (let* ((fr-width (or width
(frame-width)))
508 (str-width (length url
))
512 ;; The first thing that can go are the search strings
513 (if (and (>= str-width fr-width
)
514 (string-match "?" url
))
515 (setq url
(concat (substring url
0 (match-beginning 0)) "?...")
516 str-width
(length url
)))
517 (if (< str-width fr-width
)
518 nil
; Hey, we are done!
519 (setq urlobj
(url-generic-parse-url url
)
520 fname
(url-filename urlobj
)
521 fr-width
(- fr-width
4))
522 (while (and (>= str-width fr-width
)
523 (string-match "/" fname
))
524 (setq fname
(substring fname
(match-end 0) nil
)
525 modified
(1+ modified
))
526 (setf (url-filename urlobj
) fname
)
527 (setq url
(url-recreate-url urlobj
)
528 str-width
(length url
)))
530 (setq fname
(concat "/.../" fname
))
531 (setq fname
(concat "/" fname
)))
532 (setf (url-filename urlobj
) fname
)
533 (setq url
(url-recreate-url urlobj
)))
537 (defun url-view-url (&optional no-show
)
538 "View the current document's URL.
539 Optional argument NO-SHOW means just return the URL, don't show it in
542 This uses `url-current-object', set locally to the buffer."
544 (if (not url-current-object
)
547 (url-recreate-url url-current-object
)
548 (message "%s" (url-recreate-url url-current-object
)))))
550 (defvar url-get-url-filename-chars
"-%.?@a-zA-Z0-9()_/:~=&"
551 "Valid characters in a URL.")
553 (defun url-get-url-at-point (&optional pt
)
554 "Get the URL closest to point, but don't change position.
555 Has a preference for looking backward when not directly on a symbol."
556 ;; Not at all perfect - point must be right in the name.
558 (if pt
(goto-char pt
))
561 ;; first see if you're just past a filename
563 (if (looking-at "[] \t\n[{}()]") ; whitespace or some parens
565 (skip-chars-backward " \n\t\r({[]})")
567 (backward-char 1)))))
568 (if (and (char-after (point))
569 (string-match (concat "[" url-get-url-filename-chars
"]")
570 (char-to-string (char-after (point)))))
572 (skip-chars-backward url-get-url-filename-chars
)
574 (skip-chars-forward url-get-url-filename-chars
))
575 (setq start
(point)))
576 (setq url
(buffer-substring-no-properties start
(point))))
577 (if (and url
(string-match "^(.*)\\.?$" url
))
578 (setq url
(match-string 1 url
)))
579 (if (and url
(string-match "^URL:" url
))
580 (setq url
(substring url
4 nil
)))
581 (if (and url
(string-match "\\.$" url
))
582 (setq url
(substring url
0 -
1)))
583 (if (and url
(string-match "^www\\." url
))
584 (setq url
(concat "http://" url
)))
585 (if (and url
(not (string-match url-nonrelative-link url
)))
589 (defun url-generate-unique-filename (&optional fmt
)
590 "Generate a unique filename in `url-temporary-directory'."
591 (declare (obsolete make-temp-file
"23.1"))
592 ;; This variable is obsolete, but so is this function.
593 (let ((tempdir (with-no-warnings url-temporary-directory
)))
595 (let ((base (format "url-tmp.%d" (user-real-uid)))
598 (setq fname
(format "%s%d" base x
))
599 (while (file-exists-p
600 (expand-file-name fname tempdir
))
602 fname
(concat base
(int-to-string x
))))
603 (expand-file-name fname tempdir
))
604 (let ((base (concat "url" (int-to-string (user-real-uid))))
607 (setq fname
(format fmt
(concat base
(int-to-string x
))))
608 (while (file-exists-p
609 (expand-file-name fname tempdir
))
611 fname
(format fmt
(concat base
(int-to-string x
)))))
612 (expand-file-name fname tempdir
)))))
614 (defun url-extract-mime-headers ()
615 "Set `url-current-mime-headers' in current buffer."
617 (goto-char (point-min))
618 (unless url-current-mime-headers
619 (set (make-local-variable 'url-current-mime-headers
)
620 (mail-header-extract)))))
622 (defun url-make-private-file (file)
623 "Make FILE only readable and writable by the current user.
624 Creates FILE and its parent directories if they do not exist."
625 (let ((dir (file-name-directory file
)))
627 ;; For historical reasons.
628 (make-directory dir t
)))
629 ;; Based on doc-view-make-safe-dir.
631 (with-file-modes #o0600
633 (write-region (point-min) (point-max) file nil
'silent nil
'excl
)))
635 (if (file-symlink-p file
)
636 (error "Danger: `%s' is a symbolic link" file
))
637 (set-file-modes file
#o0600
))))
641 ;;; url-util.el ends here