1 ;;; url-util.el --- Miscellaneous helper routines for URL library
3 ;; Copyright (C) 1996-1999, 2001, 2004-2011 Free Software Foundation, Inc.
5 ;; Author: Bill Perry <wmperry@gnu.org>
6 ;; Keywords: comm, data, processes
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/>.
29 (eval-when-compile (require 'cl
))
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
)
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
)
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")))
62 (defun url-debug (tag &rest args
)
64 (error "Interrupted!"))
65 (if (or (eq url-debug t
)
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
)))))
75 (defun url-parse-args (str &optional nodowncase
)
76 ;; Return an assoc list of attribute/value pairs from an RFC822-type string
80 results
; Assoc list of results
81 name-pos
; Start of XXXX= position
82 val-pos
; Start of value position
88 (set-buffer (get-buffer-create " *urlparse-temp*"))
89 (set-syntax-table url-parse-args-syntax-table
)
94 (set-syntax-table url-parse-args-syntax-table
)
95 (narrow-to-region st nd
)
96 (goto-char (point-min))
98 (skip-chars-forward "; \n\t")
99 (setq name-pos
(point))
100 (skip-chars-forward "^ \n\t=;")
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
107 (skip-chars-forward " \t\n=")
108 (setq val-pos
(point)
111 ((or (= (or (char-after val-pos
) 0) ?
\")
112 (= (or (char-after val-pos
) 0) ?
'))
113 (buffer-substring (1+ val-pos
)
118 (skip-chars-forward "\""))
120 (skip-chars-forward "^ \t\n")
123 (buffer-substring val-pos
125 (skip-chars-forward "^;")
126 (skip-chars-backward " \t")
128 (setq results
(cons (cons name value
) results
))
129 (skip-chars-forward "; \n\t"))
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:
142 (if (string-match "[&<>\"]" string
)
143 (with-current-buffer (get-buffer-create " *entity*")
145 (buffer-disable-undo (current-buffer))
147 (goto-char (point-min))
149 (skip-chars-forward "^&<>\"")
151 (insert (cdr (assq (char-after (point))
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"))
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
)))
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
)))
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"
193 (or specified-time
(current-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 (defun url-pretty-length (n)
218 (format "%d bytes" n
))
220 (format "%dk" (/ n
1024.0)))
222 (format "%2.2fM" (/ n
(* 1024 1024.0))))))
225 (defun url-display-percentage (fmt perc
&rest args
)
226 (when (and url-show-status
227 (or (null url-current-object
)
228 (not (url-silent url-current-object
))))
230 (if (fboundp 'clear-progress-display
)
231 (clear-progress-display))
232 (if (and (fboundp 'progress-display
) perc
)
233 (apply 'progress-display fmt perc args
)
234 (apply 'message fmt args
)))))
237 (defun url-percentage (x y
)
239 (round (* 100 (/ x
(float y
))))
243 (defalias 'url-basepath
'url-file-directory
)
246 (defun url-file-directory (file)
247 "Return the directory part of FILE, for a URL."
250 ((string-match "\\?" file
)
251 (file-name-directory (substring file
0 (match-beginning 0))))
252 (t (file-name-directory file
))))
255 (defun url-file-nondirectory (file)
256 "Return the nondirectory part of FILE, for a URL."
259 ((string-match "\\?" file
)
260 (file-name-nondirectory (substring file
0 (match-beginning 0))))
261 (t (file-name-nondirectory file
))))
264 (defun url-parse-query-string (query &optional downcase allow-newlines
)
265 (let (retval pairs cur key val
)
266 (setq pairs
(split-string query
"&"))
268 (setq cur
(car pairs
)
270 (if (not (string-match "=" cur
))
272 (setq key
(url-unhex-string (substring cur
0 (match-beginning 0))
274 (setq val
(url-unhex-string (substring cur
(match-end 0) nil
)
277 (setq key
(downcase key
)))
278 (setq cur
(assoc key retval
))
280 (setcdr cur
(cons val
(cdr cur
)))
281 (setq retval
(cons (list key val
) retval
)))))
291 ;; Fixme: Is this definition better, and does it ever matter?
293 ;; (defun url-unhex-string (str &optional allow-newlines)
294 ;; "Remove %XX, embedded spaces, etc in a url.
295 ;; If optional second argument ALLOW-NEWLINES is non-nil, then allow the
296 ;; decoding of carriage returns and line feeds in the string, which is normally
297 ;; forbidden in URL encoding."
298 ;; (setq str (or str ""))
299 ;; (setq str (replace-regexp-in-string "%[[:xdigit:]]\\{2\\}"
301 ;; (string (string-to-number
302 ;; (substring match 1) 16)))
304 ;; (if allow-newlines
305 ;; (replace-regexp-in-string "[\n\r]" (lambda (match)
306 ;; (format "%%%.2X" (aref match 0)))
311 (defun url-unhex-string (str &optional allow-newlines
)
312 "Remove %XX embedded spaces, etc in a URL.
313 If optional second argument ALLOW-NEWLINES is non-nil, then allow the
314 decoding of carriage returns and line feeds in the string, which is normally
315 forbidden in URL encoding."
316 (setq str
(or str
""))
318 (case-fold-search t
))
319 (while (string-match "%[0-9a-f][0-9a-f]" str
)
320 (let* ((start (match-beginning 0))
321 (ch1 (url-unhex (elt str
(+ start
1))))
323 (url-unhex (elt str
(+ start
2))))))
325 tmp
(substring str
0 start
)
328 (byte-to-string code
))
329 ((or (= code ?
\n) (= code ?
\r))
331 (t (byte-to-string code
))))
332 str
(substring str
(match-end 0)))))
333 (setq tmp
(concat tmp str
))
336 (defconst url-unreserved-chars
338 ?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
339 ?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
340 ?
0 ?
1 ?
2 ?
3 ?
4 ?
5 ?
6 ?
7 ?
8 ?
9
341 ?- ?_ ?. ?
! ?~ ?
* ?
' ?\
( ?\
))
342 "A list of characters that are _NOT_ reserved in the URL spec.
343 This is taken from RFC 2396.")
346 (defun url-hexify-string (string)
347 "Return a new string that is STRING URI-encoded.
348 First, STRING is converted to utf-8, if necessary. Then, for each
349 character in the utf-8 string, those found in `url-unreserved-chars'
350 are left as-is, all others are represented as a three-character
351 string: \"%\" followed by two lowercase hex digits."
352 ;; To go faster and avoid a lot of consing, we could do:
354 ;; (defconst url-hexify-table
355 ;; (let ((map (make-vector 256 nil)))
356 ;; (dotimes (byte 256) (aset map byte
357 ;; (if (memq byte url-unreserved-chars)
358 ;; (char-to-string byte)
359 ;; (format "%%%02x" byte))))
362 ;; (mapconcat (curry 'aref url-hexify-table) ...)
363 (mapconcat (lambda (byte)
364 (if (memq byte url-unreserved-chars
)
365 (char-to-string byte
)
366 (format "%%%02x" byte
)))
367 (if (multibyte-string-p string
)
368 (encode-coding-string string
'utf-8
)
373 (defun url-file-extension (fname &optional x
)
374 "Return the filename extension of FNAME.
375 If optional argument X is t, then return the basename
376 of the file with the extension stripped off."
378 (setq fname
(url-file-nondirectory fname
))
379 (string-match "\\.[^./]+$" fname
))
380 (if x
(substring fname
0 (match-beginning 0))
381 (substring fname
(match-beginning 0) nil
))
383 ;; If fname has no extension, and x then return fname itself instead of
384 ;; nothing. When caching it allows the correct .hdr file to be produced
385 ;; for filenames without extension.
392 (defun url-truncate-url-for-viewing (url &optional width
)
393 "Return a shortened version of URL that is WIDTH characters wide or less.
394 WIDTH defaults to the current frame width."
395 (let* ((fr-width (or width
(frame-width)))
396 (str-width (length url
))
400 ;; The first thing that can go are the search strings
401 (if (and (>= str-width fr-width
)
402 (string-match "?" url
))
403 (setq url
(concat (substring url
0 (match-beginning 0)) "?...")
404 str-width
(length url
)))
405 (if (< str-width fr-width
)
406 nil
; Hey, we are done!
407 (setq urlobj
(url-generic-parse-url url
)
408 fname
(url-filename urlobj
)
409 fr-width
(- fr-width
4))
410 (while (and (>= str-width fr-width
)
411 (string-match "/" fname
))
412 (setq fname
(substring fname
(match-end 0) nil
)
413 modified
(1+ modified
))
414 (setf (url-filename urlobj
) fname
)
415 (setq url
(url-recreate-url urlobj
)
416 str-width
(length url
)))
418 (setq fname
(concat "/.../" fname
))
419 (setq fname
(concat "/" fname
)))
420 (setf (url-filename urlobj
) fname
)
421 (setq url
(url-recreate-url urlobj
)))
425 (defun url-view-url (&optional no-show
)
426 "View the current document's URL.
427 Optional argument NO-SHOW means just return the URL, don't show it in
430 This uses `url-current-object', set locally to the buffer."
432 (if (not url-current-object
)
435 (url-recreate-url url-current-object
)
436 (message "%s" (url-recreate-url url-current-object
)))))
438 (defvar url-get-url-filename-chars
"-%.?@a-zA-Z0-9()_/:~=&"
439 "Valid characters in a URL.")
441 (defun url-get-url-at-point (&optional pt
)
442 "Get the URL closest to point, but don't change position.
443 Has a preference for looking backward when not directly on a symbol."
444 ;; Not at all perfect - point must be right in the name.
446 (if pt
(goto-char pt
))
449 ;; first see if you're just past a filename
451 (if (looking-at "[] \t\n[{}()]") ; whitespace or some parens
453 (skip-chars-backward " \n\t\r({[]})")
455 (backward-char 1)))))
456 (if (and (char-after (point))
457 (string-match (concat "[" url-get-url-filename-chars
"]")
458 (char-to-string (char-after (point)))))
460 (skip-chars-backward url-get-url-filename-chars
)
462 (skip-chars-forward url-get-url-filename-chars
))
463 (setq start
(point)))
464 (setq url
(buffer-substring-no-properties start
(point))))
465 (if (and url
(string-match "^(.*)\\.?$" url
))
466 (setq url
(match-string 1 url
)))
467 (if (and url
(string-match "^URL:" url
))
468 (setq url
(substring url
4 nil
)))
469 (if (and url
(string-match "\\.$" url
))
470 (setq url
(substring url
0 -
1)))
471 (if (and url
(string-match "^www\\." url
))
472 (setq url
(concat "http://" url
)))
473 (if (and url
(not (string-match url-nonrelative-link url
)))
477 (defun url-generate-unique-filename (&optional fmt
)
478 "Generate a unique filename in `url-temporary-directory'."
479 ;; This variable is obsolete, but so is this function.
480 (let ((tempdir (with-no-warnings url-temporary-directory
)))
482 (let ((base (format "url-tmp.%d" (user-real-uid)))
485 (setq fname
(format "%s%d" base x
))
486 (while (file-exists-p
487 (expand-file-name fname tempdir
))
489 fname
(concat base
(int-to-string x
))))
490 (expand-file-name fname tempdir
))
491 (let ((base (concat "url" (int-to-string (user-real-uid))))
494 (setq fname
(format fmt
(concat base
(int-to-string x
))))
495 (while (file-exists-p
496 (expand-file-name fname tempdir
))
498 fname
(format fmt
(concat base
(int-to-string x
)))))
499 (expand-file-name fname tempdir
)))))
500 (make-obsolete 'url-generate-unique-filename
'make-temp-file
"23.1")
502 (defun url-extract-mime-headers ()
503 "Set `url-current-mime-headers' in current buffer."
505 (goto-char (point-min))
506 (unless url-current-mime-headers
507 (set (make-local-variable 'url-current-mime-headers
)
508 (mail-header-extract)))))
510 (defun url-make-private-file (file)
511 "Make FILE only readable and writable by the current user.
512 Creates FILE and its parent directories if they do not exist."
513 (let ((dir (file-name-directory file
)))
515 ;; For historical reasons.
516 (make-directory dir t
)))
517 ;; Based on doc-view-make-safe-dir.
519 (let ((umask (default-file-modes)))
522 (set-default-file-modes #o0600
)
524 (write-region (point-min) (point-max)
525 file nil
'silent nil
'excl
)))
526 (set-default-file-modes umask
)))
528 (if (file-symlink-p file
)
529 (error "Danger: `%s' is a symbolic link" file
))
530 (set-file-modes file
#o0600
))))
534 ;;; url-util.el ends here